@charset "utf-8";
/****************************************
 * style.css
 * 独自スタイル用CSS
 ****************************************/
html {
  overflow-x: hidden;
}
body,
#header {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
body {
  height: auto;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  color: var(--color-text);
  background-color: #fff;
  -webkit-text-size-adjust: 100% !important;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  body {
    overflow: hidden;
  }
}
/* ----- 全国マップ考慮 ----- */
#mapObj,
#mapObj * {
  font-family: recop-mapfonts !important;
}
/* hover設定 */
#container a:hover {
  text-decoration: none !important;
}
/* ----- white-space nowrap ----- */
.no-white-space {
  white-space: nowrap;
}
/* ----- career独自変数 ----- */
:root {
  --bg-color: #EBE8EF;
  --text-color: #000;
  --right-blue-color: #6CCEE7;
}
/* ----- 背景 ----- */
.bg-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: 280px;
}
@media screen and (max-width: 767px) {
  .bg-wrapper {
    height: 150px;
  }
}
.bg-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bg-main-color {
  background-color: var(--main-color);
  color: var(--white-color);
}
.bg-white-color {
  background-color: var(--white-color);
  color: var(--text-color);
}
.bg-color {
  background-color: var(--bg-color);
  color: var(--text-color);
}
.bg-block-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .bg-block-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.bg-block {
  position: relative;
  padding: 50px;
  background-color: transparent !important;
}
@media screen and (min-width: 768px) and (max-width: 1070px) {
  .bg-block {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  .bg-block {
    padding: 26px 20px 30px;
  }
}
.bg-block>* {
  position: relative;
  z-index: 1;
}
.bg-block::before {
  content: "";
  position: absolute;
  display: inline-block;
  clip-path: polygon(30px 0, calc(100% - 30px) 0, 100% 30px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0 calc(100% - 30px), 0 30px);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.bg-block.bg-color::before {
  background-color: var(--bg-color);
}
.bg-block.bg-white-color::before {
  background-color: var(--white-color);
}
@media screen and (max-width: 767px) {
  .bg-block::before {
    clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px), 0 16px);
  }
}
/* 共通高さ固定アコーディオン */
body.is-pointer-locked {
  pointer-events: none;
}
.fixed-height-accordion-content {
  overflow: hidden;
  transition: height .4s ease;
  position: relative;
}
.fixed-height-accordion-content.is-open {
  padding-bottom: 100px !important;
}
.fixed-height-accordion-content .accordion-button-wrapper.opened::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
}
.interview-contents.fixed-height-accordion-content .accordion-button-wrapper.opened::before {
  height: calc(100% + 104px);
  top: -56px;
}
@media screen and (max-width: 767px) {
  .interview-contents.fixed-height-accordion-content .accordion-button-wrapper.opened::before {
    height: calc(100% + 75px);
    top: -33px;
  }
}
.accordion-button-wrapper {
  position: absolute;
  width: 100%;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.gradation-accordion-content .accordion-button-wrapper.opened::before {
  content: "";
  position: absolute;
  bottom: -10px;
  width: calc(100% + 60px);
  left: -30px;
  height: 150px;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 1) 57%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
  background-color: transparent;
  top: auto;
}
.accordion-button-wrapper .accordion-button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 182px;
  width: 100%;
  min-height: 45px;
  font-size: 16px;
  font-size: 16px;
  color: var(--main-color);
  border: solid 1px var(--main-color);
  bottom: 20px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.accordion-button-wrapper .accordion-button span {
  padding-right: 30px;
  position: relative;
}
.accordion-button-wrapper .accordion-button span::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/lp_common/common_img/icon_plus_blue.png);
  aspect-ratio: 1 / 1;
  width: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: -10px;
  top: calc(50% - 15px);
  transition: transform 0.4s ease;
}
.accordion-button-wrapper:not(.opened) .accordion-button span::before {
  transform: rotate(45deg);
}
.accordion-button-wrapper * {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
/* 共通ボタン */
.anchor-link-wrapper {
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .anchor-link-wrapper .sp-br {
    display: block;
  }
}
a.anchor-link {
  background-color: var(--main-color);
  color: var(--white-color) !important;
  border-radius: 50vh;
  min-height: 60px;
  max-width: 460px;
  width: 100%;
  font-size: 18px;
  margin: 40px auto 0;
  font-family: var(--font-serif);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  line-height: 1.4;
}
a.anchor-link .txt-inner {
  position: relative;
  padding-right: 20px;
}
a.anchor-link .txt-inner ::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/career/images/icon_arrow_white.png);
  aspect-ratio: 46 / 30;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
a.anchor-link * {
  font-family: inherit;
}
/* ----- TOPと共通 ----- */
/* --------- 共通 --------- */
.link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  line-height: 1.2;
  transition: .3s;
  position: relative;
}
.btn-blue {
  color: var(--main-color) !important;
  background-color: var(--sub-color);
}
.btn-navy {
  color: var(--white-color) !important;
  background-color: var(--main-color);
}
.link-btn--downArrow::after {
  content: "";
  background-image: url(/lp_common/common_img/icon_arrow_blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 23px;
  aspect-ratio: 23 / 15;
  margin-left: 10px;
}
.link-btn--rightArrow {
  font-weight: bold;
}
.link-btn--rightArrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background-image: url(/lp_common/common_img/circle_arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 38px;
  aspect-ratio: 1 / 1;
}
.btn-plus {
  position: relative;
}
.btn-plus.show::after {
  transform: translateY(-50%) rotate(45deg);
}
.btn-plus::after {
  content: "";
  width: 38px;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
/* 背景白のプラス */
.plus-white::after {
  background-image: url(/lp_common/common_img/icon_plus_white.png);
}
/* 背景水色のプラス */
.plus-lightblue::after {
  background-image: url(/lp_common/common_img/icon_plus_lightblue.png);
}
/* 背景青のプラス */
.plus-blue::after {
  background-image: url(/lp_common/common_img/icon_plus_blue.png);
}
@media (hover: hover) {
  .link-btn:hover {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
  }
  .btn-navy:hover {
    color: var(--main-color) !important;
    background-color: var(--white-color);
  }
  .btn-blue:hover {
    color: var(--white-color) !important;
    background-color: var(--main-color);
  }
  .link-btn--downArrow:hover::after {
    background-image: url(/lp_common/common_img/icon_arrow_white.png);
  }
  .link-btn--rightArrow:hover::after {
    background-image: url(/lp_common/common_img/circle_arrow_blue.png);
  }
  .btn-plus:hover::after {
    background-image: url(/lp_common/common_img/icon_plus_white.png);
  }
}
@media screen and (max-width: 767px) {
  .link-btn {
    flex-direction: column;
  }
  .link-btn--rightArrow::after,
  .btn-plus::after {
    width: 30px;
  }
}
/* ----- 【TOPと共通】sectionタイトルデザイン ----- */
.sec-head {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.sec-enttl img {
  margin: 0 auto;
}
.sec-ttl {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-ttl {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 5px;
  }
}
/* ----- section ----- */
.section {
  width: 100%;
  margin: 0 auto;
  padding: 70px 0 100px;
}
.section-block {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 60px 0 60px;
  }
  .section-block {
    margin-top: 40px;
  }
}
.section-ttl-contents {
  position: relative;
}
.section-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-section-ttl {
  font-size: 20px;
  font-weight: bold;
  color: inherit;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sub-section-ttl {
    font-size: 16px;
  }
}
.cnt-1000 {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
/* ----- ボタン ----- */
a.btn {
  border-radius: 50vh;
  font-size: 18px;
  text-align: center;
}
/* ----- フッター ----- */
.lp #footer {
  position: relative;
}
/* ----- スライダー共通 ----- */
.slick-slide {
  width: 100%;
}
.slick-list {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .accordion-panel--search {
    max-height: 250px;
  }
  .accordion-panel--search>* {
    height: auto;
    max-height: 250px;
    overflow-y: auto;
  }
}
/* ----- KV ----- */
.kv-wrapper {
  background-color: var(--main-color);
  overflow: hidden;
}
.kv-contents {
  display: flex;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.kv-contents::before, .kv-contents::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/career/images/bg_deco_02.png);
  aspect-ratio: 782 / 1109;
  max-width: 365px;
  width: 30%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .15;
  pointer-events: none;
}
.kv-contents::before {
  right: -100px;
  top: -17%;
}
.kv-contents::after {
  left: 46%;
  bottom: -11%;
  transform: translateX(-50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .kv-contents {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .kv-contents::before, .kv-contents::after {
    max-width: 200px;
    width: 63%;
  }
  .kv-contents::before {
    right: auto;
    right: 44%;
    top: 54%;
    transform: translate(-50%, -55%);
    -ms-filter: blur(2px);
    filter: blur(2px);
  }
  .kv-contents::after {
    width: 40%;
    left: auto;
    right: 12%;
    bottom: 8%;
    transform: translate(50%, 55%) rotate(0deg);
    -ms-filter: blur(3px);
    filter: blur(3px);
  }
}
.kv-contents .kv {
  max-width: 802px;
  width: 65%;
  clip-path: polygon(60% 0%, 100% 50%, 60% 100%, 0 100%, 0 0);
  position: relative;
  margin-left: -160px;
}
.kv-contents .kv::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(60% 0, 20% 50%, 60% 100%, 0 100%, 0 0);
  background-color: var(--main-color);
  opacity: .5;
}
@media screen and (max-width: 767px) {
  .kv-contents .kv {
    margin-left: 0;
    width: 100%;
    max-width: none;
    clip-path: polygon(100% 0, 100% 53%, 50% 100%, 0 53%, 0 0);
  }
  .kv-contents .kv::before {
    clip-path: polygon(100% 0, 100% 53%, 50% 7%, 0 53%, 0 0);
  }
}
.catch-copy {
  flex: 1;
  color: var(--white-color);
  padding: 0 20px;
  padding-top: 10vh;
  padding-bottom: 6vh;
  font-size: 47px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7vh;
}
@media screen and (max-width: 767px) {
  .catch-copy {
    padding-top: 10px;
    gap: 27px;
  }
}
.kv-contents a.btn.blank {
  background-color: var(--white-color);
  color: var(--main-color);
  min-height: 70px;
  max-width: 470px;
  padding: 0 40px;
  width: 100%;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kv-contents a.btn.blank {
    font-size: 16px;
    line-height: 1.2;
  }
}
.kv-contents a.btn.blank::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/lp_common/common_img/icon_arrow_blue.png);
  aspect-ratio: 46 / 30;
  width: 23px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 20px;
  top: calc(50% - 6px);
  transform: rotate(-90deg);
}
.catch-text {
  color: var(--white-color);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 2.2;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 38px 20px 65px;
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .catch-text {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .catch-text {
    font-size: 18px;
    padding: 0 20px;
    text-align: left;
  }
}
.catch-text * {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
/* ----- ヘッダー ----- */
@media screen and (min-width: 961px) {
  .header-link {
    display: none;
  }
}
@media screen and (min-width: 861px) {
  header .header-wrap {
    max-width: 1500px;
    width: 100%;
    padding: 0 10px;
    width: 100%;
    margin: 0 auto -60px;
    position: relative;
  }
}
.header-link--jobfind {
  z-index: 0;
}
.header-link--jobfind a.link-jobfind--btn {
  padding-right: 20px;
  position: relative
}
.header-link--jobfind a.link-jobfind--btn::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/lp_common/common_img/icon_arrow_blue.png);
  aspect-ratio: 46 / 30;
  width: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 18px;
  top: calc(50% - 4px);
}
@media screen and (max-width: 767px) {
  .header-link--jobfind {
    width: 127px;
  }
  .header-link--jobfind a.link-jobfind--btn::before {
    right: 12px;
  }
}
.header-contents {
  position: relative;
  z-index: 10;
}
.header-inner {
  max-width: 1500px;
  width: 100%;
  padding: 0 10px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .header-inner {
    flex-wrap: nowrap;
    padding-top: 5px;
    align-items: center;
    min-height: 55px;
    left: 0;
    transform: none;
  }
}
.header-logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 0;
  max-width: 148px;
}
.header-logo-area .logo {
  width: auto;
  width: 100%;
  max-width: none;
  max-height: 20px;
}
@media screen and (max-width: 960px) {
  .header-logo-area {
    padding: 0;
    max-width: 111px;
    width: 100%;
  }
  .header-logo-area .logo {
    max-height: 15px;
  }
}
@media screen and (max-width: 767px) {
  header .header-wrap {
    padding: 10px;
  }
  header .header-wrap img.logo {
    max-width: 111px;
  }
}
.h1-contents {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto 14px;
  padding: 0 10px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .h1-contents {
    margin: 7px auto 6px;
    padding-bottom: 0;
    justify-content: center;
  }
}
@media screen and (min-width: 961px) {
  .header-contact-area {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .header-contact-area {
    margin-left: 10px;
    margin-right: 100px;
  }
}
header .btn-job-search {
  width: 150px;
  min-height: 50px;
  background-color: var(--white-color);
  color: var(--main-color);
  border: solid 1px var(--main-color);
  font-size: 16px;
  border-radius: 50vh;
  padding: 5px 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
header .btn-job-search span {
  position: relative;
  padding-right: 26px;
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  header .btn-job-search {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  header .btn-job-search {
    width: 117px;
  }
}
@media screen and (max-width: 960px) {
  header .btn-job-search {
    position: fixed;
    right: 110px;
    top: 5px;
  }
  header .btn-job-search span::before {
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(/career/images/icon_blank.png);
    aspect-ratio: 36 / 38;
    width: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.nav-inner {
  position: relative;
}
@media screen and (min-width: 961px) {
  .pc-nav-wrapper {
    height: 60px;
    background-color: var(--main-color);
  }
  .gnav-container {
    position: relative;
    height: 60px;
  }
  .nav-inner {
    padding-top: 60px;
  }
}
.gnav-panel {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  gap: 1px;
  font-size: 14px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: var(--white-color);
}
@media screen and (min-width: 961px) {
  .gnav-panel {
    height: 60px;
    display: flex;
  }
  .gnav-panel:not(.is-fixed) {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
  .gnav-panel.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    right: 0;
    z-index: 100;
  }
}
@media screen and (min-width: 961px) {
  .gnav ul {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    min-height: 60px;
    border-radius: 50vh;
  }
}
@media screen and (max-width: 960px) {
  .gnav-panel {
    box-shadow: none;
    border-radius: 0;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 80px 90px 40px;
    background-color: var(--main-color);
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.5s ease;
    pointer-events: none;
  }
  .gnav-panel ul {
    overflow-y: auto;
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  .gnav-panel::before {
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(/lp_common/common_img/logo.png);
    width: 148px;
    height: 20px;
    background-size: cover;
    top: 20px;
    left: 20px;
  }
  .header-link--btn.is-open .gnav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media screen and (max-width: 767px) {
  .gnav-panel {
    padding: 65px 16px 20px;
  }
  .gnav-panel::before {
    width: 111px;
    height: 15px;
    top: 23px;
    left: 10px;
  }
}
.gnav li {
  position: relative;
}
@media screen and (max-width: 960px) {
  .gnav li {
    width: 100%;
  }
}
@media screen and (min-width: 961px) {
  .gnav li:not(:last-of-type)::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 1px;
    height: 30px;
    background-color: var(--accent-color);
    right: 0;
    top: calc(50% - 15px);
  }
}
.gnav li a {
  display: flex;
  height: 100%;
  font-size: 16px;
  color: var(--main-color);
  align-items: center;
  justify-content: center;
  padding: 6px 20px 8px;
  text-align: center;
  line-height: 1.2;
}
.gnav li:last-of-type {
  display: flex;
  align-items: center;
}
.gnav li a.search-link {
  min-width: 158px;
  background-color: var(--main-color);
  color: var(--white-color);
  border-radius: 50vh;
  margin: auto;
  margin-left: 15px;
  max-height: 50px;
  box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.2);
}
.gnav li a .link-text {
  padding-right: 33px;
  position: relative;
}
.gnav li a .link-text::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/career/images/icon_arrow_blue.png);
  aspect-ratio: 46 / 30;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: -3px;
  top: calc(50% - 7px);
}
.gnav li a.search-link .link-text::before {
  background-image: url(/career/images/icon_arrow_white.png);
}
@media screen and (max-width: 960px) {
  .gnav li a {
    color: var(--white-color);
    text-align: left;
    justify-content: flex-end;
    font-size: 20px;
    font-weight: bold;
    padding: 16px 0;
    position: relative;
  }
  .gnav li:last-of-type {
    justify-content: flex-end;
    padding-top: 20px;
  }
  .gnav li a.search-link {
    margin-right: 0;
    color: var(--main-color);
    background-color: var(--white-color);
    padding: 0 15px;
    font-size: 18px;
    min-height: 50px;
    box-shadow: none;
  }
  .gnav li a .link-text {
    text-align: right;
    padding-right: 43px;
  }
  .gnav li a .link-text::before {
    z-index: 1;
    width: 17px;
    top: calc(50% + 1px);
    right: 6px;
    transform: translateY(-50%);
  }
  .gnav li a.search-link .link-text::before {
    background-image: url(/career/images/icon_arrow_blue.png);
  }
  .gnav li a .link-text::after {
    content: "";
    position: absolute;
    display: inline-block;
    background-color: var(--white-color);
    border-radius: 50vh;
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    right: 0;
  }
  .gnav li a.search-link .link-text::after {
    border: solid 1px var(--main-color);
  }
}
/* ----- キャリアコンテンツ ----- */
.second-career {
  padding-top: 80px;
  padding-bottom: 90px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .second-career {
    padding-top: 70px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.career-contents {
  position: relative;
}
@media screen and (max-width: 767px) {
  .career-contents::before {
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(/career/images/bg_deco_03_sp.png);
    aspect-ratio: 352 / 267;
    max-width: 160px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.career-contents .section-title-wrapper {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .career-contents .section-title-wrapper {
    margin-bottom: 35px;
  }
}
.career-contents .section-title {
  position: relative;
  padding: 0 40px;
  font-size: 38px;
  font-family: var(--font-serif);
  font-weight: normal;
  text-align: center;
  display: inline-block;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .career-contents .section-title {
    font-size: 26px;
    padding: 40px 0;
  }
}
@media screen and (max-width: 960px) {
  .career-contents .section-title span {
    display: block;
  }
}
.career-contents .section-title * {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.career-contents .section-title::before, .career-contents .section-title::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/career/images/icon_star_01.png);
  aspect-ratio: 1 / 1;
  max-width: 83px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.career-contents .section-title::after {
  left: auto;
  right: -30px;
}
@media screen and (max-width: 767px) {
  .career-contents .section-title::before, .career-contents .section-title::after {
    max-width: 80px;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
  }
  .career-contents .section-title::after {
    top: auto;
    bottom: -30px;
  }
}
@media screen and (min-width: 768px) {
  .career-contents .intro-text {
    font-size: 18px;
  }
}
.career-contents .career-block {
  text-align: center;
  padding: 30px 50px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .career-path {
    padding-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .career-contents .second-career .career-block {
    padding-top: 40px;
  }
  .second-career .career-block::after, .career-path .career-block::after {
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(/career/images/bg_deco_02.png);
    aspect-ratio: 782 / 1109;
    max-width: 365px;
    width: 30%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    right: -160px;
    bottom: -140px;
    opacity: .15;
  }
  .career-path .career-block::after {
    right: auto;
    left: -160px;
    bottom: -120px;
  }
}
.career-contents .career-path .career-block {
  padding-top: 32px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .career-contents .career-path .career-block {
    padding-top: 26px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 900px) {
  .career-contents .career-block {
    padding: 26px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .career-contents .intro-text {
    text-align: left;
  }
}
.career-contents .career-path .intro-text {
  text-align: left;
}
.career-contents .img-contents-wrapper {
  padding-top: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .career-contents .img-contents-wrapper {
    padding-top: 0;
    margin-top: 20px;
  }
}
.career-contents .career-path .img-contents-wrapper {
  padding-top: 0;
  padding-bottom: 40px;
  margin-top: 40px;
  background-image: url(/lp_common/common_img/bg_texture.jpg);
  background-repeat: repeat;
  background-size: 100% auto;
  background-position: center top;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  overflow: visible; /* PCはアコーディオンなし */
}
@media screen and (max-width: 767px) {
  .career-contents .career-path .img-contents-wrapper {
    padding-bottom: 0;
    margin-top: 36px;
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden; /* SPのみアコーディオンあり */
  }
}
.career-contents .career-path .img-contents-wrapper .ttl {
  font-size: 29px;
  font-family: var(--font-serif);
  color: var(--main-color);
  background-color: var(--right-blue-color);
}
@media screen and (max-width: 767px) {
  .career-contents .career-path .img-contents-wrapper .ttl {
    font-size: 22px;
    padding: 6px 0;
  }
}
.career-contents .career-path .img-contents-wrapper .text {
  text-align: left;
  padding: 0 20px;
}
.career-contents .img-contents {
  position: relative;
}
.career-contents .career-path .img-contents {
  width: calc(100% + 60px);
  padding-bottom: 35px;
  margin-left: -30px;
  margin-top: -40px;
}
@media screen and (max-width: 767px) {
  .career-contents .career-path .img-contents {
    width: 100%;
    margin: 0;
    padding: 14px 10px 30px;
  }
}
.career-contents .img-contents .img {
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .career-contents .img-contents .img {
    width: 20%;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .career-contents .img-contents .img {
    max-width: 160px;
    width: 100%;
    padding-bottom: 0;
  }
}
.career-contents .speech-bubble {
  background-color: var(--right-blue-color);
  border-radius: 50vh;
  display: inline-block;
  position: absolute;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  z-index: 1;
  max-width: 353px;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .career-contents .speech-bubble {
    position: relative;
    width: calc(100% + 20px);
    margin: 0 0 14px;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
}
.career-contents .speech-bubble p {
  padding: 20px 0;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.career-contents .speech-bubble:nth-of-type(1) {
  top: 20px;
  left: -30px;
}
.career-contents .speech-bubble:nth-of-type(1)::before, .career-contents .speech-bubble:nth-of-type(1)::after,
.career-contents .speech-bubble:nth-of-type(1) p::before, .career-contents .speech-bubble:nth-of-type(1) p::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 31px;
  height: 31px;
  border-radius: 50vh;
  background-color: var(--right-blue-color);
  bottom: 13px;
  right: -18px;
}
.career-contents .speech-bubble:nth-of-type(1)::after, .career-contents .speech-bubble:nth-of-type(1) p::after {
  background-color: transparent;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  z-index: 0;
}
.career-contents .speech-bubble:nth-of-type(1) p::before, .career-contents .speech-bubble:nth-of-type(1) p::after {
  width: 20px;
  height: 20px;
  bottom: 0;
  right: -36px;
}
@media screen and (max-width: 900px) {
  .career-contents .speech-bubble:nth-of-type(1)::before, .career-contents .speech-bubble:nth-of-type(1)::after,
  .career-contents .speech-bubble:nth-of-type(1) p::before, .career-contents .speech-bubble:nth-of-type(1) p::after {
    width: 25px;
    height: 25px;
    bottom: -8px;
    right: 12px;
  }
  .career-contents .speech-bubble:nth-of-type(1) p::before, .career-contents .speech-bubble:nth-of-type(1) p::after {
    width: 14px;
    height: 14px;
    bottom: -22px;
    right: 5px;
  }
}
.career-contents .speech-bubble:nth-of-type(2) {
  top: -30px;
  right: -30px;
}
.career-contents .speech-bubble:nth-of-type(2)::before, .career-contents .speech-bubble:nth-of-type(2)::after,
.career-contents .speech-bubble:nth-of-type(2) p::before, .career-contents .speech-bubble:nth-of-type(2) p::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 31px;
  height: 31px;
  border-radius: 50vh;
  background-color: var(--right-blue-color);
  bottom: 13px;
  left: -18px;
}
.career-contents .speech-bubble:nth-of-type(2)::after, .career-contents .speech-bubble:nth-of-type(2) p::after {
  background-color: transparent;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  z-index: 0;
}
.career-contents .speech-bubble:nth-of-type(2) p::before, .career-contents .speech-bubble:nth-of-type(2) p::after {
  width: 20px;
  height: 20px;
  bottom: 0;
  left: -36px;
}
@media screen and (max-width: 900px) {
  .career-contents .speech-bubble:nth-of-type(2)::before, .career-contents .speech-bubble:nth-of-type(2)::after,
  .career-contents .speech-bubble:nth-of-type(2) p::before, .career-contents .speech-bubble:nth-of-type(2) p::after {
    width: 25px;
    height: 25px;
    bottom: -8px;
    left: 12px;
  }
  .career-contents .speech-bubble:nth-of-type(2) p::before, .career-contents .speech-bubble:nth-of-type(2) p::after {
    width: 14px;
    height: 14px;
    bottom: -22px;
    left: 5px;
  }
}
.career-contents .speech-bubble:nth-of-type(3) {
  top: 150px;
  right: -40px;
}
.career-contents .speech-bubble:nth-of-type(3)::before, .career-contents .speech-bubble:nth-of-type(3)::after,
.career-contents .speech-bubble:nth-of-type(3) p::before, .career-contents .speech-bubble:nth-of-type(3) p::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 31px;
  height: 31px;
  border-radius: 50vh;
  background-color: var(--right-blue-color);
  top: 13px;
  left: -18px;
}
.career-contents .speech-bubble:nth-of-type(3)::after, .career-contents .speech-bubble:nth-of-type(3) p::after {
  background-color: transparent;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  z-index: 0;
}
.career-contents .speech-bubble:nth-of-type(3) p::before, .career-contents .speech-bubble:nth-of-type(3) p::after {
  width: 20px;
  height: 20px;
  top: 0;
  left: -36px;
}
@media screen and (max-width: 900px) {
  .career-contents .speech-bubble:nth-of-type(3)::before, .career-contents .speech-bubble:nth-of-type(3)::after,
  .career-contents .speech-bubble:nth-of-type(3) p::before, .career-contents .speech-bubble:nth-of-type(3) p::after {
    width: 25px;
    height: 25px;
    top: auto;
    bottom: -8px;
    left: auto;
    right: 12px;
  }
  .career-contents .speech-bubble:nth-of-type(3) p::before, .career-contents .speech-bubble:nth-of-type(3) p::after {
    width: 14px;
    height: 14px;
    top: auto;
    bottom: -22px;
    left: auto;
    right: 5px;
  }
}
.career-lead-msg {
  max-width: 800px;
  width: 100%;
  padding: 15px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .25));
}
@media screen and (max-width: 900px) {
  .career-lead-msg {
    max-width: none;
    padding: 20px;
    width: calc(100% + 80px);
    margin: -36px -40px 0;
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
  }
}
.career-lead-msg::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: var(--white-color);
  clip-path: polygon(30px 0, calc(100% - 30px) 0, 100% 30px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0 calc(100% - 30px), 0 30px);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.career-lead-msg::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: var(--main-color);
  clip-path: polygon(30px 0, calc(100% - 30px) 0, 100% 30px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0 calc(100% - 30px), 0 30px);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
@media screen and (max-width: 900px) {
  .career-lead-msg::before {
    clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px), 0 15px);
  }
  .career-lead-msg::after {
    clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px), 0 15px);
  }
}
.lead-msg-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  color: var(--main-color);
  font-size: 22px;
  padding: 23px 20px;
  background-image: url(/lp_common/common_img/bg_texture.jpg);
  clip-path: polygon(26px 0, calc(100% - 26px) 0, 100% 26px, 100% calc(100% - 26px), calc(100% - 26px) 100%, 26px 100%, 0 calc(100% - 26px), 0 26px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .lead-msg-text {
    font-size: 18px;
    text-align: left;
    clip-path: none;
    line-height: 2;
    padding: 23px 20px 26px;
  }
}
.lead-msg-text b {
  font-weight: bold;
  font-family: inherit;
}
.flow-list {
  margin-top: 20px;
}
.flow-list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .flow-list ul {
    gap: 20px;
    line-height: 1;
  }
}
.flow-list li {
  background-color: #E4F6FA;
  border: solid 1px var(--main-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50vh;
  font-size: 24px;
  padding: 10px;
  position: relative;
  min-height: 80px;
}
.flow-list li:nth-of-type(2) {
  background-color: #E4F6FA;
  color: var(--main-color);
}
.flow-list li:nth-of-type(3) {
  background-color: var(--right-blue-color);
}
.flow-list li:not(:last-of-type)::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/lp_common/common_img/icon_arrow_blue.png);
  aspect-ratio: 46 / 30;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: -33px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .flow-list li {
    border-radius: 43px;
    padding: 14px 0;
    font-size: 18px;
    min-height: 108px;
    line-height: 1.4;
  }
  .flow-list li:nth-of-type(2) {
    line-height: 1;
    font-size: 16px;
  }
  .flow-list li .small {
    line-height: .8;
  }
  .flow-list li:not(:last-of-type)::before {
    right: -23px;
  }
}
@media screen and (max-width: 767px) {
  .career-path-accordion {
    position: relative;
  }
}
/* ----- インタビュー ----- */
.section.interview {
  position: relative;
}
@media screen and (min-width: 768px) {
  .section.interview {
    padding-top: 100px;
  }
}
.section.interview::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/career/images/bg_interview_01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1500 / 486;
  width: 100%;
  height: 486px;
  top: 0;
  opacity: .4;
}
.section.interview .btn-wrapper {
  max-width: 490px;
  padding: 0 20px;
  width: 100%;
  margin: 80px auto 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section.interview .btn-wrapper {
    margin: 60px auto 0;
  }
}
.section.interview .btn-wrapper .link-btn {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .section.interview::before {
    height: 250px;
  }
}
.section.interview .fixed-height-accordion-content.is-open {
  padding-bottom: 0 !important;
  overflow: visible !important;
}
.interview-contents {
  margin-top: -52px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  max-width: 1000px;
  width: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1040px) {
  .interview-contents {
    left: auto;
    transform: none;
    margin-right: 20px;
    margin-left: 20px;
    width: calc(100% - 40px);
  }
}
.interview-contents .accordion-button-wrapper .accordion-button {
  bottom: 0;
}
.interview-contents .accordion-button-wrapper {
  bottom: 48px;
}
.interview-contents.is-open .accordion-button-wrapper {
  bottom: 80px;
}
@media screen and (max-width: 767px) {
  .interview-contents .accordion-button-wrapper {
    bottom: 40px;
  }
  .interview-contents.is-open .accordion-button-wrapper {
    bottom: 50px;
  }
}
.section.interview .fixed-height-accordion-content:not(.gradation-accordion-content)::before {
  max-width: 900px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
@media screen and (max-width: 940px) {
  .section.interview .fixed-height-accordion-content:not(.gradation-accordion-content)::before {
    max-width: none;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.staff-figure-wrapper {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .25));
}
@media screen and (max-width: 1320px) {
  .staff-figure-wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
}
.staff-figure-wrapper img {
  width: 100%;
  clip-path: polygon(30px 0, calc(100% - 30px) 0, 100% 30px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0 calc(100% - 30px), 0 30px);
}
@media screen and (max-width: 767px) {
  .staff-figure-wrapper img {
    clip-path: polygon(25px 0, calc(100% - 25px) 0, 100% 25px, 100% calc(100% - 25px), calc(100% - 25px) 100%, 25px 100%, 0 calc(100% - 25px), 0 25px);
  }
}
.interview-hero-text-wrapper {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  min-height: 104px;
  width: 100%;
  margin: -52px auto 0;
  position: relative;
  padding: 15px 50px;
  clip-path: polygon(26px 0, calc(100% - 26px) 0, 100% 26px, 100% calc(100% - 26px), calc(100% - 26px) 100%, 26px 100%, 0 calc(100% - 26px), 0 26px);
}
@media screen and (max-width: 920px) {
  .interview-hero-text-wrapper {
    margin: -52px 10px 0;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .interview-hero-text-wrapper {
    padding: 13px 20px 16px;
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  }
}
.interview-hero-text {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .interview-hero-text {
    font-size: 16px;
  }
}
.interview-hero-text .title {
  font-size: 28px;
  font-family: var(--font-serif);
  font-weight: bold;
}
.interview-hero-text .title * {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
@media screen and (max-width: 767px) {
  .interview-hero-text .title {
    font-size: 18px;
  }
}
.interview-detail {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 135px 50px 185px;
  background-color: var(--white-color);
}
@media screen and (max-width: 767px) {
  .interview-detail {
    padding: 100px 30px 130px;
  }
  .interview-detail:focus, .interview-detail:focus-visible {
    outline: none;
  }
}
.interview-item-img {
  max-width: 418px;
  width: 48%;
  float: left;
  margin: 0 32px 10px 0;
  box-sizing: content-box;
}
.interview-item-contents:not(:first-of-type) {
  margin-top: 40px;
}
.interview-item-contents:nth-of-type(2n - 1) .interview-item-img {
  float: right;
  margin: 0 0 10px 32px;
}
@media screen and (max-width: 767px) {
  .interview-item-contents:not(:first-of-type) {
    margin-top: 30px;
  }
  .interview-item-img {
    float: none !important;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 30px !important;
  }
}
.interview-txt {
  font-size: 16px;
  margin-top: 20px;
}
.interview-detail * {
  color: #333;
}
.interview-item-text .interview-heading {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--main-color);
  font-family: var(--font-serif);
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.interview-item-text .interview-heading * {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.interview-item-text .interview-heading span {
  display: inline;
}
.interview-item-text .interview-heading img {
  width: 22px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .interview-item-text .interview-heading {
    margin-bottom: 16px;
    font-size: 18px;
    width: 100%;
  }
  .interview-item-text .interview-heading span {
    display: inline-block;
  }
}
.interview-message {
  max-width: 900px;
  width: 100%;
  margin-top: 60px;
  background-image: url(/lp_common/common_img/bg_texture.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1040px) {
  .interview-message {
    width: calc(100% + 120px);
  }
}
@media screen and (max-width: 980px) {
  .interview-message {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .interview-message {
    width: calc(100% + 90px);
    padding: 25px 30px 30px;
    margin-top: 30px;
  }
}
.interview-message .ttl-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.interview-message .ttl {
  font-size: 18px;
  font-family: var(--font-serif);
  color: var(--main-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.interview-message .ttl * {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.interview-message .ttl::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/career/images/icon_star_02.png);
  aspect-ratio: 129 / 127;
  width: 96px;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: -90px;
  top: 50%;
  transform: translateY(-65%);
  opacity: 0.7;
}
.interview-message .ttl::after, .interview-message .ttl span::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/career/images/icon_star_03.png);
  aspect-ratio: 113 / 130;
  width: 64px;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: -70px;
  top: 50%;
  transform: translateY(-40%) scaleX(-1);
  opacity: 0.7;
}
.interview-message .ttl span::before {
  right: auto;
  width: 55px;
  left: -100px;
  top: 50%;
  transform: translateY(-30%);
}
@media screen and (max-width: 767px) {
  .interview-message .ttl::before {
    width: 70px;
    left: -30px;
    top: -6px;
  }
  .interview-message .ttl::after {
    width: 40px;
    right: -30px;
    transform: translateY(-10%);
  }
  .interview-message .ttl span::before {
    width: 35px;
    left: -30px;
    transform: translateY(-100%);
  }
}
/* ----- ストアインフルエンサー ----- */
.store-influencer {
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 860px) {
  .store-influencer .section-ttl-contents {
    display: inline-flex;
  }
}
@media screen and (min-width: 861px) {
  .store-influencer .section-title img {
    max-height: 55px;
    width: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 860px) {
  .store-influencer .section-title img {
    min-width: 500px;
    width: 100%;
  }
}
.store-influencer .section-block-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 861px) {
  .store-influencer .section-block-ttl img {
    max-height: 160px;
    width: auto;
  }
}
@media screen and (max-width: 860px) {
  .store-influencer .section-block-ttl {
    margin-bottom: 16px;
  }
  .store-influencer .section-block-ttl img {
    max-width: 500px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .store-influencer .bg-block::before {
    clip-path: polygon(30px 0, calc(100% - 30px) 0, 100% 30px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0 calc(100% - 30px), 0 30px);
  }
  .store-influencer .bg-block.bg-color::before {
    clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px), 0 16px);
  }
}
.store-influencer .sub-section-ttl {
  aspect-ratio: 960 / 307;
  width: 100%;
  max-width: 480px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .store-influencer .sub-section-ttl {
    margin-bottom: 26px;
  }
}
.sub-section-ttl .txt {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 860px) {
  .sub-section-ttl {
    font-size: 16px;
  }
}
.sub-section-ttl .txt::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/career/images/bg_deco_01.png);
  aspect-ratio: 960 / 307;
  width: 100%;
  max-width: 480px;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .store-influencer .section-block .intro-text {
    text-align: left;
  }
}
.bg-deco-star {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.bg-deco-star img {
  position: absolute;
}
@media screen and (min-width: 861px) {
  .bg-deco-star img:nth-of-type(1) {
    width: 70px;
    bottom: 0;
    left: -50px;
  }
  .bg-deco-star img:nth-of-type(2) {
    display: none;
  }
  .bg-deco-star img:nth-of-type(3) {
    width: 110px;
    top: 6px;
    left: 100px;
  }
  .bg-deco-star img:nth-of-type(4) {
    width: 110px;
    bottom: -60px;
    left: -30px;
  }
  .bg-deco-star img:nth-of-type(5) {
    width: 110px;
    top: 70px;
    right: -5px;
  }
  .bg-deco-star img:nth-of-type(6) {
    display: none;
  }
}
@media screen and (max-width: 860px) {
  .bg-deco-star img:nth-of-type(1) {
    width: 58px;
    top: 10px;
    right: -28px;
  }
  .bg-deco-star img:nth-of-type(2) {
    width: 58px;
    bottom: -20px;
    left: -28px;
  }
  .bg-deco-star img:nth-of-type(3) {
    width: 90px;
    top: -40px;
    right: -28px;
  }
  .bg-deco-star img:nth-of-type(4) {
    width: 70px;
    top: -15px;
    left: -20px;
  }
  .bg-deco-star img:nth-of-type(5) {
    width: 90px;
    bottom: -58px;
    left: -20px;
  }
  .bg-deco-star img:nth-of-type(6) {
    width: 70px;
    bottom: -38px;
    right: -24px;
  }
}
.store-influencer .intro-block {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .store-influencer .intro-block {
    padding-top: 50px;
  }
}
.store-influencer .intro-block .intro-text {
  max-width: 540px;
  width: 60%;
  min-height: 180px;
  font-size: 16px;
  text-align: left;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .store-influencer .intro-block .intro-text {
    width: 100%;
    max-width: 100%;
    position: relative;
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  .store-influencer .intro-block .img-block {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
    margin-top: 10px;
  }
}
.store-influencer .main-pic-wrapper {
  position: absolute;
  right: -72px;
  bottom: -80px;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .store-influencer .main-pic-wrapper {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    padding: 15px 18px;
  }
}
.store-influencer .smartphone {
  aspect-ratio: 150 / 250;
  border-radius: 15px;
  background-color: var(--white-color);
  border: solid 1px var(--main-color);
  display: flex;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
.store-influencer .smartphone .img-content {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding-top: 13.2%;
  padding-bottom: 14.62%;
}
.store-influencer .smartphone .img-content::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/career/images/img_capture_head.png);
  aspect-ratio: 342 / 45;
  width: 100%;
  top: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.store-influencer .smartphone .img-content::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/career/images/img_capture_foot.png);
  aspect-ratio: 342 / 50;
  width: 100%;
  bottom: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.store-influencer .smartphone .img {
  width: 100%;
  position: relative;
  z-index: 0;
}
.store-influencer .smartphone-inner {
  margin: 12.6% auto auto;
  aspect-ratio: 130 / 196;
  width: 88%;
  border: solid 1px var(--main-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-influencer .smartphone.main-pic {
  max-width: 374px;
  width: 100%;
  transform: rotate(5deg);
  border-radius: 20px;
  position: relative;
  pointer-events: all;
}
@media screen and (min-width: 768px) and (max-width: 1070px) {
  .store-influencer .smartphone.main-pic {
    width: 42%;
  }
}
.store-influencer .smartphone.main-pic .smartphone-inner::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/career/images/icon_kira_blue.png);
  aspect-ratio: 58 / 58;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 54px;
  width: 18%;
  bottom: -12.8%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 861px) {
  .store-influencer .intro-block .main-pic-wrapper::before {
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(/career/images/icon_star_02.png);
    aspect-ratio: 129 / 127;
    width: 110px;
    height: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    bottom: 60px;
    right: -110px;
  }
  .store-influencer .intro-block .main-pic-wrapper::after {
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(/career/images/icon_star_03.png);
    aspect-ratio: 113 / 130;
    width: 70px;
    height: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    bottom: 26px;
    right: -65px;
  }
}
@media screen and (max-width: 767px) {
  .store-influencer .intro-block .main-pic {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
}
.store-influencer .intro-block .sub-pics {
  display: flex;
  max-width: 660px;
  width: 100%;
  gap: 20px;
  position: relative;
  margin: 20px 0 0;
  margin-bottom: -20px;
  left: -70px;
}
@media screen and (min-width: 768px) and (max-width: 1070px) {
  .store-influencer .intro-block .sub-pics {
    left: -40px;
    max-width: 70%
  }
}
.store-influencer .intro-block .sub-pics>* {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .store-influencer .intro-block .sub-pics {
    margin: 0;
    left: auto;
    padding: 0 18px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .store-influencer .intro-block .sub-pics>* {
    flex: calc((100% - 20px) / 2);
    margin: 0;
  }
}
.store-influencer .bg-block-list img {
  margin: 0 auto 20px;
  max-width: 240px;
  width: 100%;
}
.store-influencer .bg-block-list li::after {
  content: "";
  position: absolute;
  display: inline-block;
  aspect-ratio: 55 / 66;
  max-width: 55px;
  width: 100%;
  top: 20px;
  left: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.store-influencer .bg-block-list li:nth-of-type(1)::after {
  background-image: url(/career/images/img_1.png);
}
.store-influencer .bg-block-list li:nth-of-type(2)::after {
  background-image: url(/career/images/img_2.png);
}
.store-influencer .bg-block-list li:nth-of-type(3)::after {
  background-image: url(/career/images/img_3.png);
}
.store-influencer .bg-block-list .bg-block {
  padding: 50px 30px 40px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .store-influencer .bg-block-list .bg-block {
    padding: 40px 30px 30px;
  }
}
.store-influencer .bg-block-list .ttl {
  color: var(--main-color);
  font-weight: bold;
  margin-bottom: 14px;
  font-size: 18px;
  text-align: center;
}
.section-block .intro-text {
  margin-bottom: 30px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .section-block .intro-text {
    font-size: 16px;
  }
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .step-list {
    display: block;
    width: 100%;
  }
}
.step-list .list-item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .step-list .list-item {
    flex-direction: column;
  }
  .step-list .slick-track {
    display: flex;
  }
}
.step-list .txt-contents {
  border-radius: 10px;
  padding: 26px 30px 30px 60px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px 20px;
  width: 80%;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .step-list .txt-contents {
    flex-direction: column;
    width: 100%;
    padding: 45px 20px 30px;
  }
}
.step-list .txt-contents .ttl {
  color: var(--main-color);
  width: 100%;
  font-size: 18px;
  font-weight: bold;
}
.step-list .txt-contents-inner {
  flex: 1;
}
.step-list .txt-contents .img {
  max-width: 270px;
  width: 38%;
  display: flex;
  justify-content: center;
  border: solid 1px var(--main-color);
}
@media screen and (max-width: 767px) {
  .step-list .txt-contents .img {
    width: 100%;
    max-width: 255px;
    margin: auto;
  }
}
.step-list .step {
  aspect-ratio: 1 / 1;
  background-color: var(--white-color);
  width: 136px;
  border: solid 1px var(--main-color);
  border-radius: 50vh;
  display: flex;
  align-items: center;
  margin-right: -40px;
  justify-content: center;
  box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .step-list-wrapper {
    position: relative;
    padding-bottom: 59px;
  }
  .step-list .step {
    margin: 0;
    margin-bottom: -38px;
  }
}
@media screen and (min-width: 768px) {
  .step-list-wrapper .control-btn-wrapper {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .step-bg-block {
    overflow: hidden;
  }
  .step-list-wrapper .control-btn-wrapper {
    z-index: 10000;
  }
  .step-list-wrapper .step-arrows-main {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    top: calc((100% - 59px)/2);
    left: -20px;
    width: calc(100% + 40px);
  }
  .step-arrows-main .slick-arrow {
    width: 70px;
    height: 70px;
    border-radius: 50vh;
    background-color: var(--white-color);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    pointer-events: all;
  }
  .step-arrows-main .slick-arrow.step-prev {
    left: -35px;
  }
  .step-arrows-main .slick-arrow.step-next {
    right: -35px;
  }
  .step-arrows-main .slick-arrow::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 14px;
    height: 14px;
    border-top: 1px solid var(--main-color);
    border-left: 1px solid var(--main-color);
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .step-arrows-main .slick-arrow.step-prev::before {
    left: 72%;
  }
  .step-arrows-main .slick-arrow.step-next::before {
    left: 28%;
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .step-list-wrapper .slide-dots-contents {
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .step-arrows-sub {
    width: 190px;
    height: 38px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
  }
  .step-arrows-sub .slick-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50vh;
    background-color: var(--main-color);
    position: relative;
  }
  .step-arrows-sub .slick-arrow::before {
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(/lp_common/common_img/icon_arrow_white.png);
    aspect-ratio: 46 / 30;
    width: 20px;
    height: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-52%, -50%) rotate(90deg);
  }
  .step-arrows-sub .slick-arrow.step-next::before {
    transform: translate(-48%, -50%) rotate(-90deg);
  }
}
/* ----- searchコンテンツ ----- */
@media screen and (max-width: 767px) {
  .accordion-panel {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  }
  #search-area .accordion-panel {
    box-shadow: none;
  }
}
.section.search .search-worktype {
  margin-bottom: 0;
}
/* ----- ジョブロケ ----- */
.gpsObj .locasma a::after {
  background-image: url(/lp_common/common_img/icon_pin.png);
}
/* ----- フッター ----- */
#footer .content .free {
  background-color: var(--main-color);
  width: 100%;
  max-width: 100%;
}
#footer footer {
  min-height: 100px;
  text-align: center;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#footer footer p {
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
  padding-bottom: 0.3em;
}
#footer footer p:last-of-type {
  padding-bottom: 0;
}
#footer footer p * {
  color: inherit !important;
  font-size: inherit !important;
}
footer span.copy {
  font-family: Verdana, "Droid Sans" !important;
}