@charset "UTF-8";
/* アニメーション中に文字が要素からはみ出さないようにする */
.slide-in {
  display: inline-block;
  width: 0; /* 幅0%から始める */
  white-space: nowrap; /* テキストが折り返されないようにする */
  overflow: hidden; /* 幅が狭い間はテキストが見えないようにする */
  opacity: 0; /* 初期状態で透明 */
  animation: expandWidth 0.8s ease forwards; /* 4秒で幅を広げるアニメーション */
}
.slide-in.delay1 {
  animation-delay: 0.3s;
}
.slide-in.delay2 {
  animation-delay: 0.6s;
}
.slide-in.delay3-5 {
  animation-delay: 0.9s;
}

/* @keyframes を使って幅と透明度を変化させる */
@keyframes expandWidth {
  0% {
    width: 0; /* 最初は幅が0 */
    opacity: 0; /* 最初は透明 */
  }
  50% {
    width: 5%;
    opacity: 0;
  }
  100% {
    width: 100%; /* 最終的に幅が100% */
    opacity: 1; /* 表示されたまま */
  }
}
body {
  letter-spacing: 0.1em;
  background: var(--color-white);
}
body h1, body h2 {
  font-family: var(--regular-family);
}

body {
  overflow-x: hidden;
}

@media (width < 375px) {
  .sp-none {
    display: none;
  }
}

.sp-show {
  display: none;
}
@media (width < 375px) {
  .sp-show {
    display: block;
  }
}

@media (width < 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media (width < 768px) {
  .md-show {
    display: block;
  }
}

@media (width < 1026px) {
  .lg-none {
    display: none;
  }
}

.lg-show {
  display: none;
}
@media (width < 1026px) {
  .lg-show {
    display: block;
  }
}

.child-top {
  position: relative;
}
@media (width < 768px) {
  .child-top__img {
    aspect-ratio: 750/400;
  }
}
.child-top__img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1600/400;
}
@media (width < 768px) {
  .child-top__img img {
    aspect-ratio: 750/400;
  }
}
.child-top__txt {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.child-top .slide-in {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.child-top__text-main {
  font-size: 32px;
  letter-spacing: 0.1em;
  color: var(--color-white);
}
@media (width < 768px) {
  .child-top__text-main {
    font-size: clamp(1.75rem, 0.262rem + 7.44vw, 3.75rem);
    line-height: 1.8333333333;
  }
}
.child-top::after {
  position: absolute;
  white-space: nowrap;
  color: var(--color-white);
  font-size: 192px;
  letter-spacing: 0.07em;
  opacity: 0.1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media (width < 768px) {
  .child-top::after {
    font-size: 100px;
  }
}

.sub-menu {
  width: 100%;
  margin-top: 50px;
}
@media (width < 768px) {
  .sub-menu {
    margin-top: 7.8vw;
  }
}
@media (width < 768px) {
  .sub-menu .lower-inner {
    width: 100%;
  }
}
.sub-menu .sub-menu__items {
  display: flex;
  justify-content: space-between;
}
@media (width < 768px) {
  .sub-menu .sub-menu__items {
    width: 100%;
  }
}
.sub-menu .sub-menu__item {
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding-block: 3px;
  border-right: 1px solid var(--color-black);
}
@media (width < 768px) {
  .sub-menu .sub-menu__item {
    padding-block: 0;
    height: 3.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.sub-menu .sub-menu__item:first-child {
  border-left: 1px solid var(--color-black);
}
@media (width < 768px) {
  .sub-menu .sub-menu__item:first-child {
    border-left: none;
  }
}
@media (width < 768px) {
  .sub-menu .sub-menu__item:last-child {
    border-right: none;
  }
}
.sub-menu .sub-menu__item:hover {
  opacity: 0.7;
}
.sub-menu .sub-menu__link {
  font-size: 14px;
  transition: opacity 0.3s;
  display: block;
}
@media (width < 768px) {
  .sub-menu .sub-menu__link {
    font-size: 2.6666666667vw;
  }
}

.link-tab__button {
  position: fixed;
  z-index: 9000;
  right: 0px;
  top: 226px;
  width: 54px;
  height: 160px;
  cursor: pointer;
  background-color: var(--color-black);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (width < 768px) {
  .link-tab__button {
    display: none;
  }
}
.link-tab__button::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 18px;
  left: 50%;
  translate: -50% 0;
  top: 20px;
  background: url(/recruit/career/cmn/img/search.webp) center center/contain no-repeat;
}
.link-tab__button a {
  display: block;
  color: var(--color-white);
  font-size: 16px;
  writing-mode: vertical-rl;
  width: 100%;
  height: 100%;
}
.link-tab__button p {
  position: absolute;
  top: 68px;
  left: 50%;
  translate: -50% 0;
}

.lower-inner {
  padding-inline: 10px;
  width: calc(70% + 20px);
  max-width: 100%;
  margin-inline: auto;
}
@media (width < 768px) {
  .lower-inner {
    width: 86.6666vw;
    margin-inline: auto;
    padding-inline: 0;
  }
}

.lower-title {
  font-size: 32px;
  line-height: 2.2853571429;
  position: relative;
  letter-spacing: 0.07em;
  padding-left: 44px;
}
@media (width < 768px) {
  .lower-title {
    font-size: 6.4vw;
    padding-left: 1em;
    line-height: 1.3;
  }
}
.lower-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--color-black);
  width: 6px;
  height: 40px;
}
@media (width < 768px) {
  .lower-title::before {
    width: 3px;
    height: 8vw;
  }
}

/*ボタン*/
.btn-area {
  margin-inline: auto;
  display: flex;
  gap: 38px;
  justify-content: center;
}
@media (width < 768px) {
  .btn-area {
    flex-direction: column;
    width: 100%;
    margin: 35px auto 0;
    gap: 8.5333vw;
  }
}
.btn-area .btn {
  margin-inline: auto;
  max-width: 420px;
  width: 50vw;
}
@media (width < 768px) {
  .btn-area .btn {
    width: 85%;
  }
}
@media (width < 768px) {
  .btn-area .btn a {
    height: 70px;
    font-size: 1rem;
  }
}
@media (width < 768px) {
  .btn-area .btn__arrow {
    right: 5vw;
  }
}

.lower-main {
  margin-top: 104px;
}
@media (width < 1026px) {
  .lower-main {
    margin-top: 0;
  }
}

.header__logo-txt {
  color: var(--color-black);
}
.header__item {
  color: var(--color-black);
}
.header__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-black);
  position: absolute;
  bottom: -10px;
  transform: scale(0, 1);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.header__item.current::after {
  transform: scale(1);
}
.header__item:hover::after {
  transform: scale(1);
}

.faq-top::after {
  content: "FAQ";
}

/*==============================================================
faqセクション共通
# 
==============================================================*/
.faq {
  padding-top: 105px;
}
@media (width < 768px) {
  .faq {
    padding-top: 21.5vw;
  }
}

.faq-wrap {
  margin-top: 24px;
}
@media (width < 768px) {
  .faq-wrap {
    margin-top: 8vw;
  }
}

.faq-box:not(:first-child) {
  margin-top: 10px;
}
.faq-box__head {
  padding: 34px 28px;
  position: relative;
  width: 100%;
  display: flex;
  cursor: pointer;
  background: var(--color-platinumgray);
}
@media (width < 768px) {
  .faq-box__head {
    padding: 6vw 0.5vw;
  }
}
.faq-box__head:hover {
  background: var(--color-lightgray);
}
.faq-box__head:hover .faq-box__head-texts {
  transform: translateX(20px);
}
@media (width < 768px) {
  .faq-box__head:hover .faq-box__head-texts {
    transform: translateX(2vw);
  }
}
.faq-box__head:hover .faq-box__head-arrow {
  transform: translateY(-50%) translateX(-20px);
}
@media (width < 768px) {
  .faq-box__head:hover .faq-box__head-arrow {
    transform: translateY(-50%) translateX(-2vw);
  }
}
.faq-box__head.is-open .faq-box__head-arrow-bar:nth-of-type(2) {
  transform: rotate(0deg);
}
.faq-box__head-arrow {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
@media (width < 768px) {
  .faq-box__head-arrow {
    width: 3vw;
    height: 3vw;
  }
}
.faq-box__head-arrow-bars {
  position: relative;
  width: 100%;
  height: 100%;
}
.faq-box__head-arrow-bars span {
  position: absolute;
  background: var(--color-black);
  display: block;
  width: 100%;
  height: 2px;
}
.faq-box__head-arrow-bar:nth-of-type(1) {
  top: 6px;
  left: 0;
}
.faq-box__head-arrow-bar:nth-of-type(2) {
  left: 0;
  top: 6px;
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.faq-box__head-texts {
  display: flex;
  transition: transform 0.3s ease;
}
.faq-box__head-icon {
  font-size: clamp(1rem, 0.769rem + 0.48vw, 1.25rem);
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.faq-box__head-text {
  font-size: clamp(0.875rem, 0.644rem + 0.48vw, 1.125rem);
  line-height: 1.7777777778;
  font-weight: 500;
  margin-left: 36px;
  letter-spacing: 0.1em;
  display: block;
}
@media (width < 768px) {
  .faq-box__head-text {
    font-size: clamp(0.75rem, 4.26vw, 1.875rem);
    margin-left: 6.666vw;
    width: 66.8674vw;
  }
}
.faq-box__body {
  padding-block: 20px 28px;
  display: none;
}
@media (width < 768px) {
  .faq-box__body {
    padding: 3vw 0.5vw 3.5vw 0.5vw;
  }
}
.faq-box__a-text {
  font-size: clamp(0.875rem, 0.76rem + 0.24vw, 1rem);
  line-height: 2;
  letter-spacing: 0.1em;
}
.faq-box__a-text ol {
  counter-reset: number 0;
}
@media (width < 768px) {
  .faq-box__a-text ol li {
    padding-left: 5vw;
    position: relative;
  }
}
.faq-box__a-text ol li::before {
  counter-increment: number 1;
  content: counter(number) "　";
}
@media (width < 768px) {
  .faq-box__a-text ol li::before {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (width < 768px) {
  .faq-box__a-text {
    font-size: clamp(0.75rem, 4.26vw, 1.875rem);
    line-height: 1.75;
  }
}
.faq-box__a-text span {
  -webkit-text-decoration: underline wavy;
          text-decoration: underline wavy;
}

/*==============================================================
# 各セクション
==============================================================*/
.faq-other {
  padding-bottom: 160px;
}
@media (width < 768px) {
  .faq-other {
    padding-bottom: 16.333vw;
  }
}

.faq-btn__area {
  margin-top: 100px;
}
@media (width < 768px) {
  .faq-btn__area {
    margin-top: 21.333vw;
  }
}
@media (width < 768px) {
  .faq-btn__area .btn {
    width: 100%;
  }
}
@media (width < 768px) {
  .faq-btn__area .btn a {
    height: 82px;
  }
}
@media (width < 768px) {
  .faq-btn__area .btn__arrow {
    right: 3.5vw;
  }
}