@charset "UTF-8";

.header__wrapper {
  position: relative;
}

.header__wrapper h2 img {
  width: auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 5.5625rem;
  z-index: 20;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.header.is-scroll {
  background: rgba(251, 251, 251, 0.70);
}


@media (max-width: 540px) {
  .header {
    height: 4.375rem;
  }
}

.header__container {
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 540px) {
  .header__container {
    padding: 0 1rem;
  }
}

.header__container a {
  text-decoration: none;
}

.header__logo {
  display: flex;
  gap: .9rem;
  text-decoration: none;
}

.header__logo img {
  display: block;
  width: 3.02469rem;
}

@media screen and (max-width: 540px) {
  .header__logo img {
    width: 2.24088rem;
  }
}

.header__sitename {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header__sitename--en {
  color: #000;
  font-family: "Roboto Condensed";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

@media screen and (max-width: 540px) {
  .header__sitename--en {
    font-size: 0.8125rem;
  }
}

.header__sitename--jp {
  color: #000;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

@media screen and (max-width: 540px) {
  .header__sitename--jp {
    font-size: 0.625rem;
  }
}

.header__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header__button {
  display: inline-flex;
  padding: 0.625rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: var(--black, #000);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 1.875rem;
  background: var(--white, #FFF);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

@media screen and (max-width: 540px) {
  .header__button {
    font-size: 0.625rem;
  }
}

.hamburger__toggle {
  position: relative;
  display: block;
  right: 0;
  width: 26.53px;
  height: 24.58px;
  cursor: pointer;
  z-index: 20;
}

@media screen and (max-width: 540px) {
  .hamburger__toggle {
    width: 21px;
    height: 20px;
  }
}

.hamburger__togglebar {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--black, #000);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 540px) {
  .hamburger__togglebar {
    height: 1.7px;
  }
}

.hamburger__togglebar.active span {
  background: var(--black, #000);
}

.hamburger__togglebar:nth-child(1) {
  top: 0;
}

.hamburger__togglebar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger__togglebar:nth-child(3) {
  bottom: 0px;
}


.hamburger__toggle.active .hamburger__togglebar {
  border-color: var(--black, #000);
}

.hamburger__toggle.active .hamburger__togglebar:nth-child(1) {
  top: 6px;
  transform: rotate(-45deg);
}

.hamburger__toggle.active .hamburger__togglebar:nth-child(2) {
  transform: scaleX(0);
}

.hamburger__toggle.active .hamburger__togglebar:nth-child(3) {
  top: 6px;
  transform: rotate(45deg);
}

.single {
  margin-top: 6.6875rem;
}

@media screen and (max-width: 540px) {
  .single {
    margin-top: 4.375rem;
  }
}




.headerNav {
  opacity: 0;
  /* display: none; */
}


.headerNav a {
  color: #FBFBFB;
}


/* ===== Drawer 基本 ===== */
.menuDrawer {
  position: fixed;
  inset: 0;
  z-index: 10;
  transform: translateX(60%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform .5s cubic-bezier(.69, .99, .65, .82),
    opacity .5s linear;
}

@media screen and (max-width: 540px) {
  .menuDrawer {
    z-index: 10;
    transform: translateX(80%);
    transition:
      transform .4s cubic-bezier(.69, .99, .65, .82),
      opacity .4s linear;
  }
}

.menuDrawer.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* 左半分だけ暗くするボタン（クリックで閉じる） */
.menuDrawer__dim {
  display: none;
}

.menuDrawer__dim.active {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(3, 3, 3, .6);
  display: block;

}

/* 右の白パネル */
.menuDrawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  /* width: clamp(500px, 51.7vw, 610px); */
  width: 610px;
  max-width: 95%;
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
  /* animation: slideIn .5s; */
}

@media screen and (max-width: 540px) {
  .menuDrawer__panel {
    width: 100%;
    max-width: none;
  }
}


@keyframes slideIn {
  from {
    transform: translateX(10%);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}



/* 閉じるボタン */
.menuDrawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* ロゴ */
.menuDrawer__logo {
  margin-bottom: 3.5rem;
}

@media screen and (max-width: 540px) {
  .menuDrawer__logo {
    margin-bottom: 2.5rem;
  }
}

/* ===== メニュー本体 ===== */
.menuNav {
  padding: 1.1rem 9% 0 9%;
  overflow: auto;
}

@media screen and (max-width: 540px) {
  .menuNav {
    padding: 0.5rem 1.25rem;
  }
}

.menuNav__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 2rem;
  margin-bottom: 3rem;


}

@media screen and (max-width: 540px) {
  .menuNav__grid {
    grid-template-columns: 1fr;
    gap: 0.62rem
  }
}

@media screen and (max-width: 540px) {

  .menuNav__section:nth-child(3) {
    order: 2;
  }

  .menuNav__section:nth-child(7) {
    order: 4;
  }

  .menuNav__section:nth-child(2) {
    order: 5;
  }


  .menuNav__section:nth-child(4) {
    order: 6;
  }

  .menuNav__section:nth-child(5) {
    order: 3;
  }

  .menuNav__section:nth-child(6) {
    order: 7;
  }

  .menuNav__section:nth-child(8) {
    order: 8;
  }


}

.menuNav__section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #CECECE;
  padding: 1.25rem 0;
  transition: all .3s;
}

.menuNav__section:hover {
  opacity: .5;
}

.interview.menuNav__section:hover {
  opacity: 1;
}

@media screen and (max-width: 540px) {
  .menuNav__section {
    padding: 1.03rem 0;
  }
}

.menuNav__section.interview {
  flex-direction: column;
  align-items: flex-start;
}

.menuNav__heading {
  width: 100%;
  color: #000;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}

@media screen and (max-width: 540px) {
  .menuNav__heading {
    font-size: 0.9375rem;
  }
}

.menuNav__link {
  width: 30px;
}

.icon {
  width: 1.55644rem;
}

.menuNav__list a .icon {
  width: 1.16731rem;
}

.menuNav__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.5rem;
  width: 100%;
}

.menuNav__list li {
  list-style: none;
}

.menuNav__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all .3s;
  text-decoration: none;
}

@media screen and (max-width: 540px) {
  .menuNav__list a {
    font-size: 0.8125rem;
  }
}

.menuNav__list a:hover {
  opacity: .5;
}


@media screen and (max-width: 540px) {
  .menuNav__button {
    min-width: 220px;
  }
}


.menuNav__pc {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 540px) {
  .menuNav__pc {
    display: contents;
  }
}


.read_textBox {
  position: relative;
  margin-bottom: 2rem;
}

@media screen and (max-width: 540px) {
  .read_textBox {
    margin: 0 auto 2rem auto;
  }
}

.read_textBox::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: #FFF;
  filter: blur(17px);
  z-index: -1;
}

@media screen and (max-width: 540px) {
  .read_textBox::before {
    display: none;
  }
}


/*---------------------------------------------

	FV

---------------------------------------------*/

.secFv__animation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

@media screen and (max-width: 540px) {
  .secFv__animation {
    top: 46%;
    transform: none;
  }
}


/*  */
/* トリガー用の器（実スクロール量は ScrollTrigger end で作る） */
.container {
  min-height: 100vh;
  position: relative;
}

/* ピン留め領域：ここに“背景(100vh)+次の先頭(100vh)”の2段スタックを入れる */
.pin-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

@media screen and (max-width: 820px) {
  .pin-wrap {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}

/* 2段を縦に積むスタック（合計200vh）。これを最後に -100vh だけ持ち上げる。 */
.stack {
  position: absolute;
  inset: 0;
  height: 200vh;
  width: 100%;
}

@media screen and (max-width: 820px) {
  .stack {
    display: contents;
  }
}

/* 上段＝背景（100vh） */
.bgPanel {
  position: relative;
  /* height: 100vh; */
  width: 100%;
  aspect-ratio: 1280 / 890;
  background-color: #E4E9F3;
}

@media screen and (max-width: 820px) {
  .bgPanel {
    /* display: none; */
    aspect-ratio: 390/497;
  }
}


.background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  transform: translateZ(0);
  will-change: transform;
}

@media screen and (max-width: 820px) {
  .background {
    position: static;

  }
}


/* 画面中央テキスト（不動でフェードのみ） */
.stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

@media screen and (max-width: 820px) {
  .stage {
    display: contents;
    pointer-events: all;
  }
}

.first,
.second {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 4rem;
  color: #fff;
  opacity: 0;
  z-index: 10;
}

@media screen and (max-width: 820px) {
  .first {
    position: relative;
    background-color: #E4E9F3;
  }

  .first.pc {}

  .second {
    display: contents;
  }
}

.first {
  opacity: 1;
}


.seam {
  height: 100vh;
  width: 100%;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 820px) {
  .seam {
    display: contents;
  }
}

@media screen and (min-width: 820px) {

  /* デフォは貫通。必要時だけON/OFF */
  .stage {
    pointer-events: none;
  }

  .first,
  .second {
    pointer-events: auto;
  }

  /* 基本は押せる */
  .is-zero {
    pointer-events: none !important;
  }

  /* 完全に0の時だけ無効化 */

}



/*---------------------------------------------

	FV

---------------------------------------------*/
.secInterview {
  position: relative;
  padding: 7.5rem 0 9rem 0;
  background: var(--bg-light-gray, #FBFBFB);
  z-index: 1;
}

@media screen and (max-width: 540px) {
  .secInterview {
    padding: 3.5rem 0 3.5rem 0;
  }
}

.secInterview__content {
  display: flex;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 1.1rem;
}


@media screen and (max-width: 540px) {
  .secInterview__content {
    padding-left: 5vw;
    padding-top: 0.5rem;
    overflow: hidden;
  }
}

.secInterview__card {
  position: relative;
  margin-bottom: 1.5rem;
}

.secInterview__card:nth-of-type(2) {
  top: 40px;
}

@media screen and (max-width: 540px) {
  .secInterview__card {
    width: 200px;
    margin-right: 1.5rem;
  }

  .secInterview__card:nth-of-type(2) {
    top: auto;
  }
}


.secInterview__card::after {
  position: absolute;
  right: 0;
  bottom: -25px;
  content: "";
  background-image: url(../img/icons/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.95938rem;
  height: 0.90375rem;
}

@media screen and (max-width: 540px) {
  .secInterview__card::after {

    bottom: -23px;
  }
}

.secInterview__image {
  overflow: hidden;
}

.secInterview__image img {
  transition: all .5s;
}

.secInterview__card:hover .secInterview__image img {
  transform: scale(1.1);

}

.secInterview__profile {
  position: absolute;
  bottom: 0;
  padding: 1.4rem 2.25rem 1.3rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.72);
}

@media screen and (max-width: 820px) {
  .secInterview__profile {
    padding: 0.46313rem 0.4rem 0.46313rem 1.35125rem;
  }
}

@media screen and (max-width: 540px) {
  .secInterview__profile {
    padding: 0.46313rem 0.4rem 0.46313rem 1rem;
  }
}

.secInterview__fepartment {
  color: #000;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 820px) {
  .secInterview__fepartment {
    font-size: 0.8125rem;
  }
}

@media screen and (max-width: 540px) {
  .secInterview__fepartment {
    font-size: 0.6875rem;
  }
}

.secInterview__name {
  color: #000;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 820px) {
  .secInterview__name {
    font-size: 1rem;
  }
}

@media screen and (max-width: 540px) {
  .secInterview__name {
    font-size: 0.9375rem;
  }
}

.secInterview__name span {
  font-size: 0.8125rem;
}

@media screen and (max-width: 820px) {
  .secInterview__name span {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 540px) {
  .secInterview__name span {
    font-size: 0.7rem;
  }
}



.secInterview__content .slick-list {
  overflow: visible;
}



/*---------------------------------------------

	採用情報（全ページ共通）

---------------------------------------------*/
.secRecruit {
  position: relative;
  padding: 3rem 0 10rem 0;
}

@media screen and (max-width: 540px) {
  .secRecruit {
    padding: 2.5rem 0 6.25rem 0;
  }
}

.bgRecruit {
  position: absolute;
  bottom: 2rem;
  width: 100%;
}

@media screen and (max-width: 540px) {
  .bgRecruit {
    /* bottom: 3rem; */
  }
}


.secRecruit__title--en {
  color: #000;
  font-family: Jost;
  font-size: clamp(44px, 5vw, 64px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 540px) {
  .secRecruit__title--en {
    font-size: clamp(31px, 7.94vw, 41px);
  }
}


.secRecruit__title--jp {
  color: #000;
  font-size: clamp(16px, 1.406vw, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@media screen and (max-width: 540px) {
  .secRecruit__title--jp {
    font-size: clamp(10px, 3.335vw, 23px);
  }
}


.secRecruit__link {
  position: relative;
  display: block;
  margin: 0 auto;
  padding-top: 4%;
  width: clamp(350px, 35.98vw, 435px);
  text-align: center;
  aspect-ratio: 435/225;
  background-color: #FFFFFF;
  background-image: url(../img/common/bg_letter.svg);
  background-size: 100% 100%;
  height: 100%;
}

@media screen and (max-width: 540px) {
  .secRecruit__link {
    width: 12.5rem;
  }
}

.secRecruit__link::before {
  content: "";
  position: absolute;
  background-image: url(../img/icons/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.85938rem;
  height: 0.80438rem;
  right: 5%;
  bottom: 16%;
}

@media screen and (max-width: 540px) {
  .secRecruit__link::before {
    width: 1.312rem;
    height: 0.36906rem;
  }
}

.secRecruit__link:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.secRecruit__linkText {
  margin-bottom: 0.7rem;
  color: #000;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 350;
  line-height: 160%;
}

@media screen and (max-width: 540px) {
  .secRecruit__linkText {
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    line-height: 140%;
  }
}

.secRecruit__linkTitle {
  color: #000;
  text-align: center;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

@media screen and (max-width: 540px) {
  .secRecruit__linkTitle {
    font-size: 1rem;
  }
}

/*---------------------------------------------

	フッター

---------------------------------------------*/
.secFooter {
  padding: 1.3rem 0;
  background-color: #25599A;
}

@media screen and (max-width: 540px) {
  .secFooter {
    padding: 3.5rem 0 2.3rem 0;
  }

  .secFooter.single-page {
    padding: 0.8rem 0 2.3rem 0;
  }
}

.secFooter__inner {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 540px) {
  .secFooter__inner {
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }
}

.secFooter__top {
  padding-bottom: 3.8rem;
  margin-bottom: 1.3rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.23);
}

@media screen and (max-width: 540px) {
  .secFooter__top {
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
  }
}



.secFooter__content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;

}

.single-page .secFooter__content {
  justify-content: space-between;
}

@media screen and (max-width: 540px) {
  .secFooter__content {
    flex-direction: column;
    gap: 1.1rem;
  }
}

.snsList {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.4rem;
}

@media screen and (max-width: 540px) {
  .snsList {
    justify-content: center;
    gap: 1rem;
  }
}

.snsList__item {
  width: 2.5rem;
}


@media screen and (max-width: 540px) {
  .snsList__item {
    width: 2.20594rem;
  }
}

.snsList__item.note {
  width: 8.28613rem;
}

@media screen and (max-width: 540px) {
  .snsList__item.note {
    width: 7.31138rem;
  }
}

.snsList__item a {
  display: block;
}


.is-top .breadcrumbs {
  display: none;
}

.breadcrumbs {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: .44rem;
}

@media screen and (max-width: 540px) {
  .breadcrumbs {
    margin: 0;
  }
}

.breadcrumbs p,
.breadcrumbs a {
  color: #FFF;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 540px) {

  .breadcrumbs p,
  .breadcrumbs a {
    font-size: 0.8125rem;
  }
}

.breadcrumbsArrow {
  width: 0.625rem;
  height: 0.625rem;
}

.copyright {
  color: #FFF;
  font-family: Jost;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: right;
}

@media screen and (max-width: 540px) {
  .copyright {
    text-align: left;
  }
}

.secFooter__textLink {
  display: flex;
  gap: .3rem;
  color: #FFF;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.secFooter__textLink--icon {
  width: 1rem;
}