@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/* ===========================================
   色・ブレイクポイント（Youth Personnel）
   750px 以下＝SP（375 基準 vw）／751px 以上＝PC（1920 基準 vw・rem）
   =========================================== */
/* ===========================================
   サイトアニメーション
   ・ローディング演出は入れない
   ・FV / VIEW MORE / ページタイトル / ヘッダーナビ
   =========================================== */
/* ---------- 文字スプリット共通（l-footer / c-link 系） ---------- */
.split-txt {
  display: grid;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  padding: 0.12em 0.04em 0.18em;
  line-height: inherit;
}

.split-txt__block {
  display: block;
  grid-column: 1/2;
  grid-row: 1/2;
  white-space: nowrap;
}

.split-txt__line {
  display: block;
}

.split-txt__char,
.split-txt__word {
  display: inline-block;
}

.split-txt__block--clone .split-txt__char,
.split-txt__block--clone .split-txt__word {
  transform: translate3d(0, 110%, 0);
}

.is-hover .split-txt__char,
.is-hover .split-txt__word {
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.is-hover .split-txt__char:nth-of-type(1),
.is-hover .split-txt__word:nth-of-type(1) {
  transition-delay: 25ms;
}

.is-hover .split-txt__char:nth-of-type(2),
.is-hover .split-txt__word:nth-of-type(2) {
  transition-delay: 50ms;
}

.is-hover .split-txt__char:nth-of-type(3),
.is-hover .split-txt__word:nth-of-type(3) {
  transition-delay: 75ms;
}

.is-hover .split-txt__char:nth-of-type(4),
.is-hover .split-txt__word:nth-of-type(4) {
  transition-delay: 100ms;
}

.is-hover .split-txt__char:nth-of-type(5),
.is-hover .split-txt__word:nth-of-type(5) {
  transition-delay: 125ms;
}

.is-hover .split-txt__char:nth-of-type(6),
.is-hover .split-txt__word:nth-of-type(6) {
  transition-delay: 150ms;
}

.is-hover .split-txt__char:nth-of-type(7),
.is-hover .split-txt__word:nth-of-type(7) {
  transition-delay: 175ms;
}

.is-hover .split-txt__char:nth-of-type(8),
.is-hover .split-txt__word:nth-of-type(8) {
  transition-delay: 200ms;
}

.is-hover .split-txt__char:nth-of-type(9),
.is-hover .split-txt__word:nth-of-type(9) {
  transition-delay: 225ms;
}

.is-hover .split-txt__char:nth-of-type(10),
.is-hover .split-txt__word:nth-of-type(10) {
  transition-delay: 250ms;
}

.is-hover .split-txt__char:nth-of-type(11),
.is-hover .split-txt__word:nth-of-type(11) {
  transition-delay: 275ms;
}

.is-hover .split-txt__char:nth-of-type(12),
.is-hover .split-txt__word:nth-of-type(12) {
  transition-delay: 300ms;
}

.is-hover .split-txt__char:nth-of-type(13),
.is-hover .split-txt__word:nth-of-type(13) {
  transition-delay: 325ms;
}

.is-hover .split-txt__char:nth-of-type(14),
.is-hover .split-txt__word:nth-of-type(14) {
  transition-delay: 350ms;
}

.is-hover .split-txt__char:nth-of-type(15),
.is-hover .split-txt__word:nth-of-type(15) {
  transition-delay: 375ms;
}

.is-hover .split-txt__char:nth-of-type(16),
.is-hover .split-txt__word:nth-of-type(16) {
  transition-delay: 400ms;
}

.is-hover .split-txt__char:nth-of-type(17),
.is-hover .split-txt__word:nth-of-type(17) {
  transition-delay: 425ms;
}

.is-hover .split-txt__char:nth-of-type(18),
.is-hover .split-txt__word:nth-of-type(18) {
  transition-delay: 450ms;
}

.is-hover .split-txt__char:nth-of-type(19),
.is-hover .split-txt__word:nth-of-type(19) {
  transition-delay: 475ms;
}

.is-hover .split-txt__char:nth-of-type(20),
.is-hover .split-txt__word:nth-of-type(20) {
  transition-delay: 500ms;
}

.is-hover .split-txt__block:first-of-type .split-txt__char,
.is-hover .split-txt__block:first-of-type .split-txt__word {
  transform: translate3d(0, -120%, 0);
}

.is-hover .split-txt__block:nth-of-type(2) .split-txt__char,
.is-hover .split-txt__block:nth-of-type(2) .split-txt__word {
  transform: translate3d(0, 0, 0);
}

/* フッター: 親の大きな line-height を inherit するとクローンが常時見えるため、
   クリップ用に行間を締め、移動はヘッダー同様 % 指定 */
.site-footer .split-txt {
  overflow: hidden;
  line-height: 1.2;
  padding: 0.1em 0.04em 0.14em;
}
.site-footer .split-txt__block--clone .split-txt__char,
.site-footer .split-txt__block--clone .split-txt__word {
  transform: translate3d(0, 115%, 0);
}
.site-footer .is-hover .split-txt__block:first-of-type .split-txt__char,
.site-footer .is-hover .split-txt__block:first-of-type .split-txt__word {
  transform: translate3d(0, -120%, 0);
}
.site-footer .is-hover .split-txt__block:nth-of-type(2) .split-txt__char,
.site-footer .is-hover .split-txt__block:nth-of-type(2) .split-txt__word {
  transform: translate3d(0, 0, 0);
}
.site-footer .is-hover .split-txt__char,
.site-footer .is-hover .split-txt__word {
  transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
}
.site-footer .is-hover .split-txt__char:nth-of-type(1),
.site-footer .is-hover .split-txt__word:nth-of-type(1) {
  transition-delay: 18ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(2),
.site-footer .is-hover .split-txt__word:nth-of-type(2) {
  transition-delay: 36ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(3),
.site-footer .is-hover .split-txt__word:nth-of-type(3) {
  transition-delay: 54ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(4),
.site-footer .is-hover .split-txt__word:nth-of-type(4) {
  transition-delay: 72ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(5),
.site-footer .is-hover .split-txt__word:nth-of-type(5) {
  transition-delay: 90ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(6),
.site-footer .is-hover .split-txt__word:nth-of-type(6) {
  transition-delay: 108ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(7),
.site-footer .is-hover .split-txt__word:nth-of-type(7) {
  transition-delay: 126ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(8),
.site-footer .is-hover .split-txt__word:nth-of-type(8) {
  transition-delay: 144ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(9),
.site-footer .is-hover .split-txt__word:nth-of-type(9) {
  transition-delay: 162ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(10),
.site-footer .is-hover .split-txt__word:nth-of-type(10) {
  transition-delay: 180ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(11),
.site-footer .is-hover .split-txt__word:nth-of-type(11) {
  transition-delay: 198ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(12),
.site-footer .is-hover .split-txt__word:nth-of-type(12) {
  transition-delay: 216ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(13),
.site-footer .is-hover .split-txt__word:nth-of-type(13) {
  transition-delay: 234ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(14),
.site-footer .is-hover .split-txt__word:nth-of-type(14) {
  transition-delay: 252ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(15),
.site-footer .is-hover .split-txt__word:nth-of-type(15) {
  transition-delay: 270ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(16),
.site-footer .is-hover .split-txt__word:nth-of-type(16) {
  transition-delay: 288ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(17),
.site-footer .is-hover .split-txt__word:nth-of-type(17) {
  transition-delay: 306ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(18),
.site-footer .is-hover .split-txt__word:nth-of-type(18) {
  transition-delay: 324ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(19),
.site-footer .is-hover .split-txt__word:nth-of-type(19) {
  transition-delay: 342ms;
}
.site-footer .is-hover .split-txt__char:nth-of-type(20),
.site-footer .is-hover .split-txt__word:nth-of-type(20) {
  transition-delay: 360ms;
}

@media (prefers-reduced-motion: reduce) {
  .split-txt__block--clone {
    display: none !important;
  }

  .is-hover .split-txt__char,
.is-hover .split-txt__word {
    transition: none !important;
    transform: none !important;
  }
}
/* JS未達時の保険（ヒーロー／ヘッダーのみ。タイトルは画面内入場に任せる） */
html.is-anim-fallback .site-header-wrap,
html.is-anim-fallback .hero .hero__catch-line,
html.is-anim-fallback .hero .hero__photo,
html.is-anim-fallback .hero .hero__photo > img,
html.is-anim-fallback .hero .hero__frame,
html.is-anim-fallback .hero .hero__english,
html.is-anim-fallback .hero .hero__news {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
  clip-path: none !important;
}

/* ===========================================
   色・ブレイクポイント（Youth Personnel）
   750px 以下＝SP（375 基準 vw）／751px 以上＝PC（1920 基準 vw・rem）
   =========================================== */
/* ===========================================
   下層ページ共通（ヒーロー・CONTACT 等）
   =========================================== */
.main-sub {
  display: block;
}

.page-hero {
  background: #ffffff;
  padding: 2.0833333333vw 6.25vw 3.3333333333vw;
  box-sizing: border-box;
}
@media screen and (max-width: 749px) {
  .page-hero {
    padding: 6.6666666667vw 5.3333333333vw 10.6666666667vw;
  }
}

.page-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.page-hero__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8333333333vw;
}
@media screen and (max-width: 749px) {
  .page-hero__head {
    align-items: flex-start !important;
    gap: 2.1333333333vw;
    text-align: left !important;
  }
}

.page-hero__en {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  line-height: 0;
}

@media screen and (min-width: 750px) {
  .page-hero--about .page-hero__en {
    width: 13.4895833333vw;
    max-width: 13.4895833333vw;
  }
}
@media screen and (max-width: 749px) {
  .page-hero--about .page-hero__en {
    width: 30.9333333333vw;
    max-width: 100%;
  }
}

@media screen and (min-width: 750px) {
  .page-hero--service .page-hero__en {
    width: 17.9166666667vw;
    max-width: 17.9166666667vw;
  }
}
@media screen and (max-width: 749px) {
  .page-hero--service .page-hero__en {
    width: 45.8666666667vw;
    max-width: 100%;
  }
}

@media screen and (min-width: 750px) {
  .page-hero--voice .page-hero__en {
    width: auto;
    max-width: none;
  }
}
@media screen and (max-width: 749px) {
  .page-hero--voice .page-hero__en {
    width: auto;
    max-width: 100%;
  }
}

@media screen and (min-width: 750px) {
  .page-hero--voice .page-hero__voice-full {
    width: auto;
    max-width: none;
  }
}

@media screen and (max-width: 749px) {
  .page-hero--voice .page-hero__head {
    align-items: flex-start;
    text-align: left;
  }
}

@media screen and (min-width: 750px) {
  .page-hero--news {
    padding-top: 5.625vw;
    padding-bottom: 2.5vw;
  }
}
@media screen and (max-width: 749px) {
  .page-hero--news {
    padding-top: 6.6666666667vw;
    padding-bottom: 10.6666666667vw;
  }
}

@media screen and (min-width: 750px) {
  .page-hero--news .page-hero__en {
    width: 8.2291666667vw;
    max-width: 8.2291666667vw;
  }
}
@media screen and (max-width: 749px) {
  .page-hero--news .page-hero__en {
    width: 21.0666666667vw;
    max-width: 100%;
  }
}

.page-hero__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25vw;
  letter-spacing: 0.0625vw;
  line-height: 0.95;
  color: #1b204f;
}
@media screen and (max-width: 749px) {
  .page-hero__title {
    font-size: 4.2666666667vw;
    letter-spacing: 0.2133333333vw;
    line-height: 1.5;
  }
}

/* 画面内入場で clip / slide（opacity は使わない） */
html.js .page-hero__head > img,
html.js .page-hero__head .page-hero__en,
html.js .page-hero__head .page-hero__voice-full,
html.js .page-hero__head .section-head__members-full,
html.js .page-hero__head .page-hero__voice-composite,
html.js .page-hero__head .section-head__members-composite,
html.js .page-hero__head .voice-detail-fv__voice-composite,
html.js .page-hero__head .intern-section__en > img,
html.js .page-hero__head .sec-contact__headline > img,
html.js .page-hero__head .intern-intro__headline-en,
html.js .page-hero__head .js-ttl-reveal__media,
html.js .page-hero__head .recruit-section__dot,
html.js .page-hero__head .recruit-ideal__headline img,
html.js .page-hero__head .about-section__dot,
html.js .voice-detail-fv__head > img,
html.js .voice-detail-fv__head .page-hero__en,
html.js .voice-detail-fv__head .page-hero__voice-full,
html.js .voice-detail-fv__head .section-head__members-full,
html.js .voice-detail-fv__head .page-hero__voice-composite,
html.js .voice-detail-fv__head .section-head__members-composite,
html.js .voice-detail-fv__head .voice-detail-fv__voice-composite,
html.js .voice-detail-fv__head .intern-section__en > img,
html.js .voice-detail-fv__head .sec-contact__headline > img,
html.js .voice-detail-fv__head .intern-intro__headline-en,
html.js .voice-detail-fv__head .js-ttl-reveal__media,
html.js .voice-detail-fv__head .recruit-section__dot,
html.js .voice-detail-fv__head .recruit-ideal__headline img,
html.js .voice-detail-fv__head .about-section__dot,
html.js .section-head > img,
html.js .section-head .page-hero__en,
html.js .section-head .page-hero__voice-full,
html.js .section-head .section-head__members-full,
html.js .section-head .page-hero__voice-composite,
html.js .section-head .section-head__members-composite,
html.js .section-head .voice-detail-fv__voice-composite,
html.js .section-head .intern-section__en > img,
html.js .section-head .sec-contact__headline > img,
html.js .section-head .intern-intro__headline-en,
html.js .section-head .js-ttl-reveal__media,
html.js .section-head .recruit-section__dot,
html.js .section-head .recruit-ideal__headline img,
html.js .section-head .about-section__dot,
html.js .intern-section__head > img,
html.js .intern-section__head .page-hero__en,
html.js .intern-section__head .page-hero__voice-full,
html.js .intern-section__head .section-head__members-full,
html.js .intern-section__head .page-hero__voice-composite,
html.js .intern-section__head .section-head__members-composite,
html.js .intern-section__head .voice-detail-fv__voice-composite,
html.js .intern-section__head .intern-section__en > img,
html.js .intern-section__head .sec-contact__headline > img,
html.js .intern-section__head .intern-intro__headline-en,
html.js .intern-section__head .js-ttl-reveal__media,
html.js .intern-section__head .recruit-section__dot,
html.js .intern-section__head .recruit-ideal__headline img,
html.js .intern-section__head .about-section__dot,
html.js .sec-contact__content > img,
html.js .sec-contact__content .page-hero__en,
html.js .sec-contact__content .page-hero__voice-full,
html.js .sec-contact__content .section-head__members-full,
html.js .sec-contact__content .page-hero__voice-composite,
html.js .sec-contact__content .section-head__members-composite,
html.js .sec-contact__content .voice-detail-fv__voice-composite,
html.js .sec-contact__content .intern-section__en > img,
html.js .sec-contact__content .sec-contact__headline > img,
html.js .sec-contact__content .intern-intro__headline-en,
html.js .sec-contact__content .js-ttl-reveal__media,
html.js .sec-contact__content .recruit-section__dot,
html.js .sec-contact__content .recruit-ideal__headline img,
html.js .sec-contact__content .about-section__dot,
html.js .intern-intro__inner > img,
html.js .intern-intro__inner .page-hero__en,
html.js .intern-intro__inner .page-hero__voice-full,
html.js .intern-intro__inner .section-head__members-full,
html.js .intern-intro__inner .page-hero__voice-composite,
html.js .intern-intro__inner .section-head__members-composite,
html.js .intern-intro__inner .voice-detail-fv__voice-composite,
html.js .intern-intro__inner .intern-section__en > img,
html.js .intern-intro__inner .sec-contact__headline > img,
html.js .intern-intro__inner .intern-intro__headline-en,
html.js .intern-intro__inner .js-ttl-reveal__media,
html.js .intern-intro__inner .recruit-section__dot,
html.js .intern-intro__inner .recruit-ideal__headline img,
html.js .intern-intro__inner .about-section__dot,
html.js .js-ttl-reveal > img,
html.js .js-ttl-reveal .page-hero__en,
html.js .js-ttl-reveal .page-hero__voice-full,
html.js .js-ttl-reveal .section-head__members-full,
html.js .js-ttl-reveal .page-hero__voice-composite,
html.js .js-ttl-reveal .section-head__members-composite,
html.js .js-ttl-reveal .voice-detail-fv__voice-composite,
html.js .js-ttl-reveal .intern-section__en > img,
html.js .js-ttl-reveal .sec-contact__headline > img,
html.js .js-ttl-reveal .intern-intro__headline-en,
html.js .js-ttl-reveal .js-ttl-reveal__media,
html.js .js-ttl-reveal .recruit-section__dot,
html.js .js-ttl-reveal .recruit-ideal__headline img,
html.js .js-ttl-reveal .about-section__dot,
html.js .recruit-section__label > img,
html.js .recruit-section__label .page-hero__en,
html.js .recruit-section__label .page-hero__voice-full,
html.js .recruit-section__label .section-head__members-full,
html.js .recruit-section__label .page-hero__voice-composite,
html.js .recruit-section__label .section-head__members-composite,
html.js .recruit-section__label .voice-detail-fv__voice-composite,
html.js .recruit-section__label .intern-section__en > img,
html.js .recruit-section__label .sec-contact__headline > img,
html.js .recruit-section__label .intern-intro__headline-en,
html.js .recruit-section__label .js-ttl-reveal__media,
html.js .recruit-section__label .recruit-section__dot,
html.js .recruit-section__label .recruit-ideal__headline img,
html.js .recruit-section__label .about-section__dot,
html.js .recruit-ideal__lead > img,
html.js .recruit-ideal__lead .page-hero__en,
html.js .recruit-ideal__lead .page-hero__voice-full,
html.js .recruit-ideal__lead .section-head__members-full,
html.js .recruit-ideal__lead .page-hero__voice-composite,
html.js .recruit-ideal__lead .section-head__members-composite,
html.js .recruit-ideal__lead .voice-detail-fv__voice-composite,
html.js .recruit-ideal__lead .intern-section__en > img,
html.js .recruit-ideal__lead .sec-contact__headline > img,
html.js .recruit-ideal__lead .intern-intro__headline-en,
html.js .recruit-ideal__lead .js-ttl-reveal__media,
html.js .recruit-ideal__lead .recruit-section__dot,
html.js .recruit-ideal__lead .recruit-ideal__headline img,
html.js .recruit-ideal__lead .about-section__dot,
html.js .about-section__label > img,
html.js .about-section__label .page-hero__en,
html.js .about-section__label .page-hero__voice-full,
html.js .about-section__label .section-head__members-full,
html.js .about-section__label .page-hero__voice-composite,
html.js .about-section__label .section-head__members-composite,
html.js .about-section__label .voice-detail-fv__voice-composite,
html.js .about-section__label .intern-section__en > img,
html.js .about-section__label .sec-contact__headline > img,
html.js .about-section__label .intern-intro__headline-en,
html.js .about-section__label .js-ttl-reveal__media,
html.js .about-section__label .recruit-section__dot,
html.js .about-section__label .recruit-ideal__headline img,
html.js .about-section__label .about-section__dot {
  clip-path: inset(0 100% 0 0);
}
html.js .page-hero__head .page-hero__voice-composite > img,
html.js .page-hero__head .section-head__members-composite > img,
html.js .page-hero__head .voice-detail-fv__voice-composite > img,
html.js .voice-detail-fv__head .page-hero__voice-composite > img,
html.js .voice-detail-fv__head .section-head__members-composite > img,
html.js .voice-detail-fv__head .voice-detail-fv__voice-composite > img,
html.js .section-head .page-hero__voice-composite > img,
html.js .section-head .section-head__members-composite > img,
html.js .section-head .voice-detail-fv__voice-composite > img,
html.js .intern-section__head .page-hero__voice-composite > img,
html.js .intern-section__head .section-head__members-composite > img,
html.js .intern-section__head .voice-detail-fv__voice-composite > img,
html.js .sec-contact__content .page-hero__voice-composite > img,
html.js .sec-contact__content .section-head__members-composite > img,
html.js .sec-contact__content .voice-detail-fv__voice-composite > img,
html.js .intern-intro__inner .page-hero__voice-composite > img,
html.js .intern-intro__inner .section-head__members-composite > img,
html.js .intern-intro__inner .voice-detail-fv__voice-composite > img,
html.js .js-ttl-reveal .page-hero__voice-composite > img,
html.js .js-ttl-reveal .section-head__members-composite > img,
html.js .js-ttl-reveal .voice-detail-fv__voice-composite > img,
html.js .recruit-section__label .page-hero__voice-composite > img,
html.js .recruit-section__label .section-head__members-composite > img,
html.js .recruit-section__label .voice-detail-fv__voice-composite > img,
html.js .recruit-ideal__lead .page-hero__voice-composite > img,
html.js .recruit-ideal__lead .section-head__members-composite > img,
html.js .recruit-ideal__lead .voice-detail-fv__voice-composite > img,
html.js .about-section__label .page-hero__voice-composite > img,
html.js .about-section__label .section-head__members-composite > img,
html.js .about-section__label .voice-detail-fv__voice-composite > img {
  clip-path: none;
}
html.js .page-hero__head .page-hero__title,
html.js .page-hero__head .voice-detail-fv__page-title,
html.js .page-hero__head .section-head__label,
html.js .page-hero__head .intern-section__title,
html.js .page-hero__head .js-ttl-reveal__title,
html.js .page-hero__head .recruit-section__title,
html.js .page-hero__head .recruit-ideal__tagline,
html.js .page-hero__head .about-section__en,
html.js .voice-detail-fv__head .page-hero__title,
html.js .voice-detail-fv__head .voice-detail-fv__page-title,
html.js .voice-detail-fv__head .section-head__label,
html.js .voice-detail-fv__head .intern-section__title,
html.js .voice-detail-fv__head .js-ttl-reveal__title,
html.js .voice-detail-fv__head .recruit-section__title,
html.js .voice-detail-fv__head .recruit-ideal__tagline,
html.js .voice-detail-fv__head .about-section__en,
html.js .section-head .page-hero__title,
html.js .section-head .voice-detail-fv__page-title,
html.js .section-head .section-head__label,
html.js .section-head .intern-section__title,
html.js .section-head .js-ttl-reveal__title,
html.js .section-head .recruit-section__title,
html.js .section-head .recruit-ideal__tagline,
html.js .section-head .about-section__en,
html.js .intern-section__head .page-hero__title,
html.js .intern-section__head .voice-detail-fv__page-title,
html.js .intern-section__head .section-head__label,
html.js .intern-section__head .intern-section__title,
html.js .intern-section__head .js-ttl-reveal__title,
html.js .intern-section__head .recruit-section__title,
html.js .intern-section__head .recruit-ideal__tagline,
html.js .intern-section__head .about-section__en,
html.js .sec-contact__content .page-hero__title,
html.js .sec-contact__content .voice-detail-fv__page-title,
html.js .sec-contact__content .section-head__label,
html.js .sec-contact__content .intern-section__title,
html.js .sec-contact__content .js-ttl-reveal__title,
html.js .sec-contact__content .recruit-section__title,
html.js .sec-contact__content .recruit-ideal__tagline,
html.js .sec-contact__content .about-section__en,
html.js .intern-intro__inner .page-hero__title,
html.js .intern-intro__inner .voice-detail-fv__page-title,
html.js .intern-intro__inner .section-head__label,
html.js .intern-intro__inner .intern-section__title,
html.js .intern-intro__inner .js-ttl-reveal__title,
html.js .intern-intro__inner .recruit-section__title,
html.js .intern-intro__inner .recruit-ideal__tagline,
html.js .intern-intro__inner .about-section__en,
html.js .js-ttl-reveal .page-hero__title,
html.js .js-ttl-reveal .voice-detail-fv__page-title,
html.js .js-ttl-reveal .section-head__label,
html.js .js-ttl-reveal .intern-section__title,
html.js .js-ttl-reveal .js-ttl-reveal__title,
html.js .js-ttl-reveal .recruit-section__title,
html.js .js-ttl-reveal .recruit-ideal__tagline,
html.js .js-ttl-reveal .about-section__en,
html.js .recruit-section__label .page-hero__title,
html.js .recruit-section__label .voice-detail-fv__page-title,
html.js .recruit-section__label .section-head__label,
html.js .recruit-section__label .intern-section__title,
html.js .recruit-section__label .js-ttl-reveal__title,
html.js .recruit-section__label .recruit-section__title,
html.js .recruit-section__label .recruit-ideal__tagline,
html.js .recruit-section__label .about-section__en,
html.js .recruit-ideal__lead .page-hero__title,
html.js .recruit-ideal__lead .voice-detail-fv__page-title,
html.js .recruit-ideal__lead .section-head__label,
html.js .recruit-ideal__lead .intern-section__title,
html.js .recruit-ideal__lead .js-ttl-reveal__title,
html.js .recruit-ideal__lead .recruit-section__title,
html.js .recruit-ideal__lead .recruit-ideal__tagline,
html.js .recruit-ideal__lead .about-section__en,
html.js .about-section__label .page-hero__title,
html.js .about-section__label .voice-detail-fv__page-title,
html.js .about-section__label .section-head__label,
html.js .about-section__label .intern-section__title,
html.js .about-section__label .js-ttl-reveal__title,
html.js .about-section__label .recruit-section__title,
html.js .about-section__label .recruit-ideal__tagline,
html.js .about-section__label .about-section__en {
  display: block;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 0.35em, 0);
}
html.js .page-hero__head.is-once-show > img,
html.js .page-hero__head.is-once-show .page-hero__en,
html.js .page-hero__head.is-once-show .page-hero__voice-full,
html.js .page-hero__head.is-once-show .section-head__members-full,
html.js .page-hero__head.is-once-show .page-hero__voice-composite,
html.js .page-hero__head.is-once-show .section-head__members-composite,
html.js .page-hero__head.is-once-show .voice-detail-fv__voice-composite,
html.js .page-hero__head.is-once-show .intern-section__en > img,
html.js .page-hero__head.is-once-show .sec-contact__headline > img,
html.js .page-hero__head.is-once-show .intern-intro__headline-en,
html.js .page-hero__head.is-once-show .js-ttl-reveal__media,
html.js .page-hero__head.is-once-show .recruit-section__dot,
html.js .page-hero__head.is-once-show .recruit-ideal__headline img,
html.js .page-hero__head.is-once-show .about-section__dot,
html.js .voice-detail-fv__head.is-once-show > img,
html.js .voice-detail-fv__head.is-once-show .page-hero__en,
html.js .voice-detail-fv__head.is-once-show .page-hero__voice-full,
html.js .voice-detail-fv__head.is-once-show .section-head__members-full,
html.js .voice-detail-fv__head.is-once-show .page-hero__voice-composite,
html.js .voice-detail-fv__head.is-once-show .section-head__members-composite,
html.js .voice-detail-fv__head.is-once-show .voice-detail-fv__voice-composite,
html.js .voice-detail-fv__head.is-once-show .intern-section__en > img,
html.js .voice-detail-fv__head.is-once-show .sec-contact__headline > img,
html.js .voice-detail-fv__head.is-once-show .intern-intro__headline-en,
html.js .voice-detail-fv__head.is-once-show .js-ttl-reveal__media,
html.js .voice-detail-fv__head.is-once-show .recruit-section__dot,
html.js .voice-detail-fv__head.is-once-show .recruit-ideal__headline img,
html.js .voice-detail-fv__head.is-once-show .about-section__dot,
html.js .section-head.is-once-show > img,
html.js .section-head.is-once-show .page-hero__en,
html.js .section-head.is-once-show .page-hero__voice-full,
html.js .section-head.is-once-show .section-head__members-full,
html.js .section-head.is-once-show .page-hero__voice-composite,
html.js .section-head.is-once-show .section-head__members-composite,
html.js .section-head.is-once-show .voice-detail-fv__voice-composite,
html.js .section-head.is-once-show .intern-section__en > img,
html.js .section-head.is-once-show .sec-contact__headline > img,
html.js .section-head.is-once-show .intern-intro__headline-en,
html.js .section-head.is-once-show .js-ttl-reveal__media,
html.js .section-head.is-once-show .recruit-section__dot,
html.js .section-head.is-once-show .recruit-ideal__headline img,
html.js .section-head.is-once-show .about-section__dot,
html.js .intern-section__head.is-once-show > img,
html.js .intern-section__head.is-once-show .page-hero__en,
html.js .intern-section__head.is-once-show .page-hero__voice-full,
html.js .intern-section__head.is-once-show .section-head__members-full,
html.js .intern-section__head.is-once-show .page-hero__voice-composite,
html.js .intern-section__head.is-once-show .section-head__members-composite,
html.js .intern-section__head.is-once-show .voice-detail-fv__voice-composite,
html.js .intern-section__head.is-once-show .intern-section__en > img,
html.js .intern-section__head.is-once-show .sec-contact__headline > img,
html.js .intern-section__head.is-once-show .intern-intro__headline-en,
html.js .intern-section__head.is-once-show .js-ttl-reveal__media,
html.js .intern-section__head.is-once-show .recruit-section__dot,
html.js .intern-section__head.is-once-show .recruit-ideal__headline img,
html.js .intern-section__head.is-once-show .about-section__dot,
html.js .sec-contact__content.is-once-show > img,
html.js .sec-contact__content.is-once-show .page-hero__en,
html.js .sec-contact__content.is-once-show .page-hero__voice-full,
html.js .sec-contact__content.is-once-show .section-head__members-full,
html.js .sec-contact__content.is-once-show .page-hero__voice-composite,
html.js .sec-contact__content.is-once-show .section-head__members-composite,
html.js .sec-contact__content.is-once-show .voice-detail-fv__voice-composite,
html.js .sec-contact__content.is-once-show .intern-section__en > img,
html.js .sec-contact__content.is-once-show .sec-contact__headline > img,
html.js .sec-contact__content.is-once-show .intern-intro__headline-en,
html.js .sec-contact__content.is-once-show .js-ttl-reveal__media,
html.js .sec-contact__content.is-once-show .recruit-section__dot,
html.js .sec-contact__content.is-once-show .recruit-ideal__headline img,
html.js .sec-contact__content.is-once-show .about-section__dot,
html.js .intern-intro__inner.is-once-show > img,
html.js .intern-intro__inner.is-once-show .page-hero__en,
html.js .intern-intro__inner.is-once-show .page-hero__voice-full,
html.js .intern-intro__inner.is-once-show .section-head__members-full,
html.js .intern-intro__inner.is-once-show .page-hero__voice-composite,
html.js .intern-intro__inner.is-once-show .section-head__members-composite,
html.js .intern-intro__inner.is-once-show .voice-detail-fv__voice-composite,
html.js .intern-intro__inner.is-once-show .intern-section__en > img,
html.js .intern-intro__inner.is-once-show .sec-contact__headline > img,
html.js .intern-intro__inner.is-once-show .intern-intro__headline-en,
html.js .intern-intro__inner.is-once-show .js-ttl-reveal__media,
html.js .intern-intro__inner.is-once-show .recruit-section__dot,
html.js .intern-intro__inner.is-once-show .recruit-ideal__headline img,
html.js .intern-intro__inner.is-once-show .about-section__dot,
html.js .js-ttl-reveal.is-once-show > img,
html.js .js-ttl-reveal.is-once-show .page-hero__en,
html.js .js-ttl-reveal.is-once-show .page-hero__voice-full,
html.js .js-ttl-reveal.is-once-show .section-head__members-full,
html.js .js-ttl-reveal.is-once-show .page-hero__voice-composite,
html.js .js-ttl-reveal.is-once-show .section-head__members-composite,
html.js .js-ttl-reveal.is-once-show .voice-detail-fv__voice-composite,
html.js .js-ttl-reveal.is-once-show .intern-section__en > img,
html.js .js-ttl-reveal.is-once-show .sec-contact__headline > img,
html.js .js-ttl-reveal.is-once-show .intern-intro__headline-en,
html.js .js-ttl-reveal.is-once-show .js-ttl-reveal__media,
html.js .js-ttl-reveal.is-once-show .recruit-section__dot,
html.js .js-ttl-reveal.is-once-show .recruit-ideal__headline img,
html.js .js-ttl-reveal.is-once-show .about-section__dot,
html.js .recruit-section__label.is-once-show > img,
html.js .recruit-section__label.is-once-show .page-hero__en,
html.js .recruit-section__label.is-once-show .page-hero__voice-full,
html.js .recruit-section__label.is-once-show .section-head__members-full,
html.js .recruit-section__label.is-once-show .page-hero__voice-composite,
html.js .recruit-section__label.is-once-show .section-head__members-composite,
html.js .recruit-section__label.is-once-show .voice-detail-fv__voice-composite,
html.js .recruit-section__label.is-once-show .intern-section__en > img,
html.js .recruit-section__label.is-once-show .sec-contact__headline > img,
html.js .recruit-section__label.is-once-show .intern-intro__headline-en,
html.js .recruit-section__label.is-once-show .js-ttl-reveal__media,
html.js .recruit-section__label.is-once-show .recruit-section__dot,
html.js .recruit-section__label.is-once-show .recruit-ideal__headline img,
html.js .recruit-section__label.is-once-show .about-section__dot,
html.js .recruit-ideal__lead.is-once-show > img,
html.js .recruit-ideal__lead.is-once-show .page-hero__en,
html.js .recruit-ideal__lead.is-once-show .page-hero__voice-full,
html.js .recruit-ideal__lead.is-once-show .section-head__members-full,
html.js .recruit-ideal__lead.is-once-show .page-hero__voice-composite,
html.js .recruit-ideal__lead.is-once-show .section-head__members-composite,
html.js .recruit-ideal__lead.is-once-show .voice-detail-fv__voice-composite,
html.js .recruit-ideal__lead.is-once-show .intern-section__en > img,
html.js .recruit-ideal__lead.is-once-show .sec-contact__headline > img,
html.js .recruit-ideal__lead.is-once-show .intern-intro__headline-en,
html.js .recruit-ideal__lead.is-once-show .js-ttl-reveal__media,
html.js .recruit-ideal__lead.is-once-show .recruit-section__dot,
html.js .recruit-ideal__lead.is-once-show .recruit-ideal__headline img,
html.js .recruit-ideal__lead.is-once-show .about-section__dot,
html.js .about-section__label.is-once-show > img,
html.js .about-section__label.is-once-show .page-hero__en,
html.js .about-section__label.is-once-show .page-hero__voice-full,
html.js .about-section__label.is-once-show .section-head__members-full,
html.js .about-section__label.is-once-show .page-hero__voice-composite,
html.js .about-section__label.is-once-show .section-head__members-composite,
html.js .about-section__label.is-once-show .voice-detail-fv__voice-composite,
html.js .about-section__label.is-once-show .intern-section__en > img,
html.js .about-section__label.is-once-show .sec-contact__headline > img,
html.js .about-section__label.is-once-show .intern-intro__headline-en,
html.js .about-section__label.is-once-show .js-ttl-reveal__media,
html.js .about-section__label.is-once-show .recruit-section__dot,
html.js .about-section__label.is-once-show .recruit-ideal__headline img,
html.js .about-section__label.is-once-show .about-section__dot {
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
html.js .page-hero__head.is-once-show .page-hero__title,
html.js .page-hero__head.is-once-show .voice-detail-fv__page-title,
html.js .page-hero__head.is-once-show .section-head__label,
html.js .page-hero__head.is-once-show .intern-section__title,
html.js .page-hero__head.is-once-show .js-ttl-reveal__title,
html.js .page-hero__head.is-once-show .recruit-section__title,
html.js .page-hero__head.is-once-show .recruit-ideal__tagline,
html.js .page-hero__head.is-once-show .about-section__en,
html.js .voice-detail-fv__head.is-once-show .page-hero__title,
html.js .voice-detail-fv__head.is-once-show .voice-detail-fv__page-title,
html.js .voice-detail-fv__head.is-once-show .section-head__label,
html.js .voice-detail-fv__head.is-once-show .intern-section__title,
html.js .voice-detail-fv__head.is-once-show .js-ttl-reveal__title,
html.js .voice-detail-fv__head.is-once-show .recruit-section__title,
html.js .voice-detail-fv__head.is-once-show .recruit-ideal__tagline,
html.js .voice-detail-fv__head.is-once-show .about-section__en,
html.js .section-head.is-once-show .page-hero__title,
html.js .section-head.is-once-show .voice-detail-fv__page-title,
html.js .section-head.is-once-show .section-head__label,
html.js .section-head.is-once-show .intern-section__title,
html.js .section-head.is-once-show .js-ttl-reveal__title,
html.js .section-head.is-once-show .recruit-section__title,
html.js .section-head.is-once-show .recruit-ideal__tagline,
html.js .section-head.is-once-show .about-section__en,
html.js .intern-section__head.is-once-show .page-hero__title,
html.js .intern-section__head.is-once-show .voice-detail-fv__page-title,
html.js .intern-section__head.is-once-show .section-head__label,
html.js .intern-section__head.is-once-show .intern-section__title,
html.js .intern-section__head.is-once-show .js-ttl-reveal__title,
html.js .intern-section__head.is-once-show .recruit-section__title,
html.js .intern-section__head.is-once-show .recruit-ideal__tagline,
html.js .intern-section__head.is-once-show .about-section__en,
html.js .sec-contact__content.is-once-show .page-hero__title,
html.js .sec-contact__content.is-once-show .voice-detail-fv__page-title,
html.js .sec-contact__content.is-once-show .section-head__label,
html.js .sec-contact__content.is-once-show .intern-section__title,
html.js .sec-contact__content.is-once-show .js-ttl-reveal__title,
html.js .sec-contact__content.is-once-show .recruit-section__title,
html.js .sec-contact__content.is-once-show .recruit-ideal__tagline,
html.js .sec-contact__content.is-once-show .about-section__en,
html.js .intern-intro__inner.is-once-show .page-hero__title,
html.js .intern-intro__inner.is-once-show .voice-detail-fv__page-title,
html.js .intern-intro__inner.is-once-show .section-head__label,
html.js .intern-intro__inner.is-once-show .intern-section__title,
html.js .intern-intro__inner.is-once-show .js-ttl-reveal__title,
html.js .intern-intro__inner.is-once-show .recruit-section__title,
html.js .intern-intro__inner.is-once-show .recruit-ideal__tagline,
html.js .intern-intro__inner.is-once-show .about-section__en,
html.js .js-ttl-reveal.is-once-show .page-hero__title,
html.js .js-ttl-reveal.is-once-show .voice-detail-fv__page-title,
html.js .js-ttl-reveal.is-once-show .section-head__label,
html.js .js-ttl-reveal.is-once-show .intern-section__title,
html.js .js-ttl-reveal.is-once-show .js-ttl-reveal__title,
html.js .js-ttl-reveal.is-once-show .recruit-section__title,
html.js .js-ttl-reveal.is-once-show .recruit-ideal__tagline,
html.js .js-ttl-reveal.is-once-show .about-section__en,
html.js .recruit-section__label.is-once-show .page-hero__title,
html.js .recruit-section__label.is-once-show .voice-detail-fv__page-title,
html.js .recruit-section__label.is-once-show .section-head__label,
html.js .recruit-section__label.is-once-show .intern-section__title,
html.js .recruit-section__label.is-once-show .js-ttl-reveal__title,
html.js .recruit-section__label.is-once-show .recruit-section__title,
html.js .recruit-section__label.is-once-show .recruit-ideal__tagline,
html.js .recruit-section__label.is-once-show .about-section__en,
html.js .recruit-ideal__lead.is-once-show .page-hero__title,
html.js .recruit-ideal__lead.is-once-show .voice-detail-fv__page-title,
html.js .recruit-ideal__lead.is-once-show .section-head__label,
html.js .recruit-ideal__lead.is-once-show .intern-section__title,
html.js .recruit-ideal__lead.is-once-show .js-ttl-reveal__title,
html.js .recruit-ideal__lead.is-once-show .recruit-section__title,
html.js .recruit-ideal__lead.is-once-show .recruit-ideal__tagline,
html.js .recruit-ideal__lead.is-once-show .about-section__en,
html.js .about-section__label.is-once-show .page-hero__title,
html.js .about-section__label.is-once-show .voice-detail-fv__page-title,
html.js .about-section__label.is-once-show .section-head__label,
html.js .about-section__label.is-once-show .intern-section__title,
html.js .about-section__label.is-once-show .js-ttl-reveal__title,
html.js .about-section__label.is-once-show .recruit-section__title,
html.js .about-section__label.is-once-show .recruit-ideal__tagline,
html.js .about-section__label.is-once-show .about-section__en {
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0);
  transition: clip-path 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.12s, transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  html.js .page-hero__head > img,
html.js .page-hero__head .page-hero__en,
html.js .page-hero__head .page-hero__voice-full,
html.js .page-hero__head .section-head__members-full,
html.js .page-hero__head .page-hero__voice-composite,
html.js .page-hero__head .page-hero__voice-composite > img,
html.js .page-hero__head .section-head__members-composite,
html.js .page-hero__head .section-head__members-composite > img,
html.js .page-hero__head .voice-detail-fv__voice-composite,
html.js .page-hero__head .voice-detail-fv__voice-composite > img,
html.js .page-hero__head .intern-section__en > img,
html.js .page-hero__head .sec-contact__headline > img,
html.js .page-hero__head .intern-intro__headline-en,
html.js .page-hero__head .js-ttl-reveal__media,
html.js .page-hero__head .recruit-section__dot,
html.js .page-hero__head .recruit-ideal__headline img,
html.js .page-hero__head .about-section__dot,
html.js .voice-detail-fv__head > img,
html.js .voice-detail-fv__head .page-hero__en,
html.js .voice-detail-fv__head .page-hero__voice-full,
html.js .voice-detail-fv__head .section-head__members-full,
html.js .voice-detail-fv__head .page-hero__voice-composite,
html.js .voice-detail-fv__head .page-hero__voice-composite > img,
html.js .voice-detail-fv__head .section-head__members-composite,
html.js .voice-detail-fv__head .section-head__members-composite > img,
html.js .voice-detail-fv__head .voice-detail-fv__voice-composite,
html.js .voice-detail-fv__head .voice-detail-fv__voice-composite > img,
html.js .voice-detail-fv__head .intern-section__en > img,
html.js .voice-detail-fv__head .sec-contact__headline > img,
html.js .voice-detail-fv__head .intern-intro__headline-en,
html.js .voice-detail-fv__head .js-ttl-reveal__media,
html.js .voice-detail-fv__head .recruit-section__dot,
html.js .voice-detail-fv__head .recruit-ideal__headline img,
html.js .voice-detail-fv__head .about-section__dot,
html.js .section-head > img,
html.js .section-head .page-hero__en,
html.js .section-head .page-hero__voice-full,
html.js .section-head .section-head__members-full,
html.js .section-head .page-hero__voice-composite,
html.js .section-head .page-hero__voice-composite > img,
html.js .section-head .section-head__members-composite,
html.js .section-head .section-head__members-composite > img,
html.js .section-head .voice-detail-fv__voice-composite,
html.js .section-head .voice-detail-fv__voice-composite > img,
html.js .section-head .intern-section__en > img,
html.js .section-head .sec-contact__headline > img,
html.js .section-head .intern-intro__headline-en,
html.js .section-head .js-ttl-reveal__media,
html.js .section-head .recruit-section__dot,
html.js .section-head .recruit-ideal__headline img,
html.js .section-head .about-section__dot,
html.js .intern-section__head > img,
html.js .intern-section__head .page-hero__en,
html.js .intern-section__head .page-hero__voice-full,
html.js .intern-section__head .section-head__members-full,
html.js .intern-section__head .page-hero__voice-composite,
html.js .intern-section__head .page-hero__voice-composite > img,
html.js .intern-section__head .section-head__members-composite,
html.js .intern-section__head .section-head__members-composite > img,
html.js .intern-section__head .voice-detail-fv__voice-composite,
html.js .intern-section__head .voice-detail-fv__voice-composite > img,
html.js .intern-section__head .intern-section__en > img,
html.js .intern-section__head .sec-contact__headline > img,
html.js .intern-section__head .intern-intro__headline-en,
html.js .intern-section__head .js-ttl-reveal__media,
html.js .intern-section__head .recruit-section__dot,
html.js .intern-section__head .recruit-ideal__headline img,
html.js .intern-section__head .about-section__dot,
html.js .sec-contact__content > img,
html.js .sec-contact__content .page-hero__en,
html.js .sec-contact__content .page-hero__voice-full,
html.js .sec-contact__content .section-head__members-full,
html.js .sec-contact__content .page-hero__voice-composite,
html.js .sec-contact__content .page-hero__voice-composite > img,
html.js .sec-contact__content .section-head__members-composite,
html.js .sec-contact__content .section-head__members-composite > img,
html.js .sec-contact__content .voice-detail-fv__voice-composite,
html.js .sec-contact__content .voice-detail-fv__voice-composite > img,
html.js .sec-contact__content .intern-section__en > img,
html.js .sec-contact__content .sec-contact__headline > img,
html.js .sec-contact__content .intern-intro__headline-en,
html.js .sec-contact__content .js-ttl-reveal__media,
html.js .sec-contact__content .recruit-section__dot,
html.js .sec-contact__content .recruit-ideal__headline img,
html.js .sec-contact__content .about-section__dot,
html.js .intern-intro__inner > img,
html.js .intern-intro__inner .page-hero__en,
html.js .intern-intro__inner .page-hero__voice-full,
html.js .intern-intro__inner .section-head__members-full,
html.js .intern-intro__inner .page-hero__voice-composite,
html.js .intern-intro__inner .page-hero__voice-composite > img,
html.js .intern-intro__inner .section-head__members-composite,
html.js .intern-intro__inner .section-head__members-composite > img,
html.js .intern-intro__inner .voice-detail-fv__voice-composite,
html.js .intern-intro__inner .voice-detail-fv__voice-composite > img,
html.js .intern-intro__inner .intern-section__en > img,
html.js .intern-intro__inner .sec-contact__headline > img,
html.js .intern-intro__inner .intern-intro__headline-en,
html.js .intern-intro__inner .js-ttl-reveal__media,
html.js .intern-intro__inner .recruit-section__dot,
html.js .intern-intro__inner .recruit-ideal__headline img,
html.js .intern-intro__inner .about-section__dot,
html.js .js-ttl-reveal > img,
html.js .js-ttl-reveal .page-hero__en,
html.js .js-ttl-reveal .page-hero__voice-full,
html.js .js-ttl-reveal .section-head__members-full,
html.js .js-ttl-reveal .page-hero__voice-composite,
html.js .js-ttl-reveal .page-hero__voice-composite > img,
html.js .js-ttl-reveal .section-head__members-composite,
html.js .js-ttl-reveal .section-head__members-composite > img,
html.js .js-ttl-reveal .voice-detail-fv__voice-composite,
html.js .js-ttl-reveal .voice-detail-fv__voice-composite > img,
html.js .js-ttl-reveal .intern-section__en > img,
html.js .js-ttl-reveal .sec-contact__headline > img,
html.js .js-ttl-reveal .intern-intro__headline-en,
html.js .js-ttl-reveal .js-ttl-reveal__media,
html.js .js-ttl-reveal .recruit-section__dot,
html.js .js-ttl-reveal .recruit-ideal__headline img,
html.js .js-ttl-reveal .about-section__dot,
html.js .recruit-section__label > img,
html.js .recruit-section__label .page-hero__en,
html.js .recruit-section__label .page-hero__voice-full,
html.js .recruit-section__label .section-head__members-full,
html.js .recruit-section__label .page-hero__voice-composite,
html.js .recruit-section__label .page-hero__voice-composite > img,
html.js .recruit-section__label .section-head__members-composite,
html.js .recruit-section__label .section-head__members-composite > img,
html.js .recruit-section__label .voice-detail-fv__voice-composite,
html.js .recruit-section__label .voice-detail-fv__voice-composite > img,
html.js .recruit-section__label .intern-section__en > img,
html.js .recruit-section__label .sec-contact__headline > img,
html.js .recruit-section__label .intern-intro__headline-en,
html.js .recruit-section__label .js-ttl-reveal__media,
html.js .recruit-section__label .recruit-section__dot,
html.js .recruit-section__label .recruit-ideal__headline img,
html.js .recruit-section__label .about-section__dot,
html.js .recruit-ideal__lead > img,
html.js .recruit-ideal__lead .page-hero__en,
html.js .recruit-ideal__lead .page-hero__voice-full,
html.js .recruit-ideal__lead .section-head__members-full,
html.js .recruit-ideal__lead .page-hero__voice-composite,
html.js .recruit-ideal__lead .page-hero__voice-composite > img,
html.js .recruit-ideal__lead .section-head__members-composite,
html.js .recruit-ideal__lead .section-head__members-composite > img,
html.js .recruit-ideal__lead .voice-detail-fv__voice-composite,
html.js .recruit-ideal__lead .voice-detail-fv__voice-composite > img,
html.js .recruit-ideal__lead .intern-section__en > img,
html.js .recruit-ideal__lead .sec-contact__headline > img,
html.js .recruit-ideal__lead .intern-intro__headline-en,
html.js .recruit-ideal__lead .js-ttl-reveal__media,
html.js .recruit-ideal__lead .recruit-section__dot,
html.js .recruit-ideal__lead .recruit-ideal__headline img,
html.js .recruit-ideal__lead .about-section__dot,
html.js .about-section__label > img,
html.js .about-section__label .page-hero__en,
html.js .about-section__label .page-hero__voice-full,
html.js .about-section__label .section-head__members-full,
html.js .about-section__label .page-hero__voice-composite,
html.js .about-section__label .page-hero__voice-composite > img,
html.js .about-section__label .section-head__members-composite,
html.js .about-section__label .section-head__members-composite > img,
html.js .about-section__label .voice-detail-fv__voice-composite,
html.js .about-section__label .voice-detail-fv__voice-composite > img,
html.js .about-section__label .intern-section__en > img,
html.js .about-section__label .sec-contact__headline > img,
html.js .about-section__label .intern-intro__headline-en,
html.js .about-section__label .js-ttl-reveal__media,
html.js .about-section__label .recruit-section__dot,
html.js .about-section__label .recruit-ideal__headline img,
html.js .about-section__label .about-section__dot {
    clip-path: none;
  }
  html.js .page-hero__head .page-hero__title,
html.js .page-hero__head .voice-detail-fv__page-title,
html.js .page-hero__head .section-head__label,
html.js .page-hero__head .intern-section__title,
html.js .page-hero__head .js-ttl-reveal__title,
html.js .page-hero__head .recruit-section__title,
html.js .page-hero__head .recruit-ideal__tagline,
html.js .page-hero__head .about-section__en,
html.js .voice-detail-fv__head .page-hero__title,
html.js .voice-detail-fv__head .voice-detail-fv__page-title,
html.js .voice-detail-fv__head .section-head__label,
html.js .voice-detail-fv__head .intern-section__title,
html.js .voice-detail-fv__head .js-ttl-reveal__title,
html.js .voice-detail-fv__head .recruit-section__title,
html.js .voice-detail-fv__head .recruit-ideal__tagline,
html.js .voice-detail-fv__head .about-section__en,
html.js .section-head .page-hero__title,
html.js .section-head .voice-detail-fv__page-title,
html.js .section-head .section-head__label,
html.js .section-head .intern-section__title,
html.js .section-head .js-ttl-reveal__title,
html.js .section-head .recruit-section__title,
html.js .section-head .recruit-ideal__tagline,
html.js .section-head .about-section__en,
html.js .intern-section__head .page-hero__title,
html.js .intern-section__head .voice-detail-fv__page-title,
html.js .intern-section__head .section-head__label,
html.js .intern-section__head .intern-section__title,
html.js .intern-section__head .js-ttl-reveal__title,
html.js .intern-section__head .recruit-section__title,
html.js .intern-section__head .recruit-ideal__tagline,
html.js .intern-section__head .about-section__en,
html.js .sec-contact__content .page-hero__title,
html.js .sec-contact__content .voice-detail-fv__page-title,
html.js .sec-contact__content .section-head__label,
html.js .sec-contact__content .intern-section__title,
html.js .sec-contact__content .js-ttl-reveal__title,
html.js .sec-contact__content .recruit-section__title,
html.js .sec-contact__content .recruit-ideal__tagline,
html.js .sec-contact__content .about-section__en,
html.js .intern-intro__inner .page-hero__title,
html.js .intern-intro__inner .voice-detail-fv__page-title,
html.js .intern-intro__inner .section-head__label,
html.js .intern-intro__inner .intern-section__title,
html.js .intern-intro__inner .js-ttl-reveal__title,
html.js .intern-intro__inner .recruit-section__title,
html.js .intern-intro__inner .recruit-ideal__tagline,
html.js .intern-intro__inner .about-section__en,
html.js .js-ttl-reveal .page-hero__title,
html.js .js-ttl-reveal .voice-detail-fv__page-title,
html.js .js-ttl-reveal .section-head__label,
html.js .js-ttl-reveal .intern-section__title,
html.js .js-ttl-reveal .js-ttl-reveal__title,
html.js .js-ttl-reveal .recruit-section__title,
html.js .js-ttl-reveal .recruit-ideal__tagline,
html.js .js-ttl-reveal .about-section__en,
html.js .recruit-section__label .page-hero__title,
html.js .recruit-section__label .voice-detail-fv__page-title,
html.js .recruit-section__label .section-head__label,
html.js .recruit-section__label .intern-section__title,
html.js .recruit-section__label .js-ttl-reveal__title,
html.js .recruit-section__label .recruit-section__title,
html.js .recruit-section__label .recruit-ideal__tagline,
html.js .recruit-section__label .about-section__en,
html.js .recruit-ideal__lead .page-hero__title,
html.js .recruit-ideal__lead .voice-detail-fv__page-title,
html.js .recruit-ideal__lead .section-head__label,
html.js .recruit-ideal__lead .intern-section__title,
html.js .recruit-ideal__lead .js-ttl-reveal__title,
html.js .recruit-ideal__lead .recruit-section__title,
html.js .recruit-ideal__lead .recruit-ideal__tagline,
html.js .recruit-ideal__lead .about-section__en,
html.js .about-section__label .page-hero__title,
html.js .about-section__label .voice-detail-fv__page-title,
html.js .about-section__label .section-head__label,
html.js .about-section__label .intern-section__title,
html.js .about-section__label .js-ttl-reveal__title,
html.js .about-section__label .recruit-section__title,
html.js .about-section__label .recruit-ideal__tagline,
html.js .about-section__label .about-section__en {
    clip-path: none;
    transform: none;
  }
}
.view-more {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  color: #1b204f;
}
.view-more__label {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.25vw;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: color 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.view-more .split-txt {
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.view-more__icon {
  flex-shrink: 0;
  display: block;
  width: 3.5416666667vw;
  height: 3.5416666667vw;
  margin: 0;
  line-height: 0;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.view-more__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/common/btn-arrow-circle.svg") center/contain no-repeat;
  transition: background-image 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.view-more.is-hover .view-more__label, .view-more:hover .view-more__label, .view-more:focus-visible .view-more__label {
  color: #414897;
}
.view-more.is-hover .view-more__icon, .view-more:hover .view-more__icon, .view-more:focus-visible .view-more__icon {
  transform: scale(1.29412);
}
.view-more.is-hover .view-more__icon::before, .view-more:hover .view-more__icon::before, .view-more:focus-visible .view-more__icon::before {
  background-image: url("../img/common/btn-arrow-circle-hover.svg");
}
@media screen and (max-width: 749px) {
  .view-more {
    gap: 4.2666666667vw;
  }
  .view-more__label {
    font-size: 3.733vw;
    letter-spacing: 0.187vw;
    line-height: 0.95;
  }
  .view-more__icon {
    width: 9.867vw;
    height: 9.867vw;
  }
}

.about-links {
  display: flex;
  flex-direction: column;
  gap: 2.5vw;
  align-self: start;
  max-width: 30vw;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 749px) {
  .about-links {
    gap: 7.4666666667vw;
    max-width: 81.3333333333vw;
    width: 100%;
    margin: 0 auto;
    min-height: 0;
    justify-content: flex-start;
  }
}

.about-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25vw;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}
.about-link__icon {
  flex-shrink: 0;
  width: 3.5416666667vw;
  height: 3.5416666667vw;
  line-height: 0;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.about-link__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/common/btn-arrow-circle.svg") center/contain no-repeat;
  transition: background-image 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.about-link.is-hover .about-link__icon, .about-link:hover .about-link__icon, .about-link:focus-visible .about-link__icon {
  transform: scale(1.29412);
}
.about-link.is-hover .about-link__icon::before, .about-link:hover .about-link__icon::before, .about-link:focus-visible .about-link__icon::before {
  background-image: url("../img/common/btn-arrow-circle-hover.svg");
}
.about-link.is-hover .about-link__title, .about-link:hover .about-link__title, .about-link:focus-visible .about-link__title {
  color: #414897;
}
@media screen and (max-width: 749px) {
  .about-link {
    gap: 3.2vw;
    min-height: 13.8666666667vw;
  }
  .about-link__icon {
    width: 9.6vw;
    height: 9.6vw;
  }
  .about-link__icon::before {
    background-image: url("../img/common/btn-arrow-circle-sp.svg");
  }
  .about-link.is-hover .about-link__icon, .about-link:hover .about-link__icon, .about-link:focus-visible .about-link__icon {
    transform: scale(1.29412);
  }
  .about-link.is-hover .about-link__icon::before, .about-link:hover .about-link__icon::before, .about-link:focus-visible .about-link__icon::before {
    background-image: url("../img/common/btn-arrow-circle-hover.svg");
  }
}

.about-link__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 749px) {
  .about-link__text {
    gap: 2.1333333333vw;
    max-width: 66.1333333333vw;
  }
}

.about-link__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.4583333333vw, 1.75rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: #1b204f;
  overflow: hidden;
  transition: color 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.about-link__title .split-txt {
  line-height: inherit;
}
@media screen and (max-width: 749px) {
  .about-link__title {
    font-size: 5.3333333333vw;
    letter-spacing: 0.2666666667vw;
    line-height: 1;
  }
}

.about-link__sub {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #414897;
}
@media screen and (max-width: 749px) {
  .about-link__sub {
    font-size: 3.7333333333vw;
    letter-spacing: 0.1866666667vw;
    line-height: 1;
  }
}

.member-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.member-card__photo {
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 430/286;
  margin-bottom: 1.4583333333vw;
  flex-shrink: 0;
}
@media screen and (max-width: 749px) {
  .member-card__photo {
    border-radius: 0;
    margin-bottom: 3.2vw;
    aspect-ratio: 430/286;
  }
}
.member-card__photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1);
  transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

.member-card__quote {
  margin: 0 0 1.4583333333vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.1458333333vw, 1.375rem);
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #1b204f;
}
@media screen and (min-width: 750px) {
  .member-card__quote {
    font-weight: 500;
  }
}
@media screen and (max-width: 749px) {
  .member-card__quote {
    margin: 0 0 5.3333333333vw;
    font-weight: 500;
    font-size: 4.1653333333vw;
    letter-spacing: 0.2082666667vw;
    line-height: 1.7;
  }
}

.member-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.5625vw;
  margin-top: auto;
  font-weight: 400;
  font-size: clamp(0.6875rem, 0.8333333333vw, 1rem);
  line-height: 1;
  white-space: nowrap;
}
.member-meta .sep {
  display: block;
  box-sizing: border-box;
  width: 1px;
  min-width: 1px;
  max-width: 1px;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  background: #1b204f;
  flex-shrink: 0;
  align-self: center;
  transform: none;
}
.member-meta .member-meta__name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2604166667vw;
  white-space: nowrap;
}
.member-meta .initial {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.5104166667vw, 1.8125rem);
  line-height: 1;
}
.member-meta .member-meta__suffix {
  line-height: 1;
}
@media screen and (max-width: 749px) {
  .member-meta {
    width: 100%;
    justify-content: space-between;
    gap: 0;
    font-weight: 500;
    font-size: 3.1288vw;
    line-height: 1;
  }
  .member-meta .sep {
    width: 1px;
    min-width: 1px;
    max-width: 1px;
    height: 5.2149333333vw;
  }
  .member-meta .member-meta__name {
    gap: 1.3037333333vw;
  }
  .member-meta .initial {
    font-size: 5.2149333333vw;
    line-height: 1;
  }
  .member-meta .member-meta__suffix {
    line-height: 1.2;
  }
}

.sec-contact {
  position: relative;
  min-height: 550px;
  color: #ffffff;
}
@media screen and (max-width: 1199px) {
  .sec-contact {
    min-height: 0;
  }
}
@media screen and (max-width: 749px) {
  .sec-contact {
    min-height: 172.2666666667vw;
  }
}

.sec-contact__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.sec-contact__link:hover .sec-contact__bg img, .sec-contact__link:focus-visible .sec-contact__bg img {
  transform: scale(1.08);
}
.sec-contact__link:hover .contact-bubble-wrap::before, .sec-contact__link:focus-visible .contact-bubble-wrap::before {
  opacity: 1;
}

.sec-contact__bg {
  position: absolute;
  inset: 0;
  margin: 0;
  line-height: 0;
  z-index: 0;
  overflow: hidden;
}
.sec-contact__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.sec-contact__overlay {
  position: absolute;
  inset: 0;
  margin: 0;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
.sec-contact__overlay img {
  display: block;
  width: 100%;
  height: 100%;
}

.sec-contact__inner {
  position: relative;
  min-height: 550px;
  isolation: isolate;
}
@media screen and (max-width: 1199px) {
  .sec-contact__inner {
    min-height: 0;
  }
}
@media screen and (max-width: 749px) {
  .sec-contact__inner {
    min-height: 172.2666666667vw;
  }
}

.sec-contact__body {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  min-height: 550px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(40px, 5vw, 80px) clamp(40px, 12vw, 180px);
}
@media screen and (max-width: 1199px) {
  .sec-contact__body {
    min-height: 0;
  }
}
@media screen and (max-width: 749px) {
  .sec-contact__body {
    min-height: 172.2666666667vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 24.2666666667vw 13.3333333333vw 21.6vw;
  }
}

.sec-contact__content {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 749px) {
  .sec-contact__content {
    width: 73.3333333333vw;
    max-width: 100%;
    margin: 0;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4.2666666667vw;
  }
}

.sec-contact__headline {
  margin: 0 0 24px;
  max-width: 100%;
  line-height: 0;
}
.sec-contact__headline img {
  display: block;
  width: 100%;
  max-width: min(900px, 100%);
  height: auto;
}
@media screen and (max-width: 749px) {
  .sec-contact__headline {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .sec-contact__headline img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    clip: auto;
    margin: 0;
    overflow: visible;
    white-space: normal;
  }
}

.sec-contact__email {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  color: inherit;
}
@media screen and (max-width: 749px) {
  .sec-contact__email {
    margin: 0;
    padding: 0;
    width: auto;
    max-width: 100%;
    font-size: 4.8vw;
    letter-spacing: 0.24vw;
    line-height: 1.5;
    white-space: nowrap;
    text-align: left;
  }
}

.contact-bubble-wrap {
  position: relative;
  flex-shrink: 0;
  width: clamp(240px, 22vw, 300px);
  aspect-ratio: 1;
  justify-self: end;
}
.contact-bubble-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.contact-bubble-wrap > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 749px) {
  .contact-bubble-wrap {
    width: 70.9333333333vw;
    margin: 14.9333333333vw 0 0;
    align-self: center;
    aspect-ratio: 266/262.746;
    height: auto;
  }
}

.contact-bubble-text {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 30%;
  bottom: 30%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}
.contact-bubble-text__line {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(0.75rem, 1.05vw, 1.25rem);
  letter-spacing: 0.05em;
  line-height: 2;
  max-width: none;
  white-space: nowrap;
  word-break: keep-all;
  line-break: strict;
}
@media screen and (max-width: 749px) {
  .contact-bubble-text {
    left: 14.56%;
    right: 14.44%;
    top: 30%;
    bottom: 30%;
  }
  .contact-bubble-text__line {
    font-size: 4vw;
    letter-spacing: 0.2vw;
    line-height: 2;
    white-space: normal;
  }
}

/* ===========================================
   色・ブレイクポイント（Youth Personnel）
   750px 以下＝SP（375 基準 vw）／751px 以上＝PC（1920 基準 vw・rem）
   =========================================== */
/* ---------- Recruit block（トップ・about 共通） ---------- */
.recruit-block {
  color: #ffffff;
}

.recruit-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-rows: 1fr;
  min-height: 35.0520833333vw;
}
@media screen and (max-width: 749px) {
  .recruit-block__inner {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    min-height: 0;
  }
}

.recruit-block__grad {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 35.0520833333vw;
  background: linear-gradient(129deg, #00b4c6 -59.75%, #01adc3 -46.95%, #079cbd -27.74%, #0f7fb2 -8.53%, #1b58a3 1.35%, #1e50a1 13.67%, #264b9f 22.42%, #3f3f99 49.08%, #662b91 74.69%, #9c1085 102.43%, #a60c83 106.7%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 6.6666666667vw 4.1666666667vw 4.1666666667vw;
  position: relative;
}
@media screen and (max-width: 749px) {
  .recruit-block__grad {
    min-height: 0;
    background: linear-gradient(129deg, #00b4c6 -59.75%, #01adc3 -46.95%, #079cbd -27.74%, #0f7fb2 -8.53%, #1b58a3 1.35%, #1e50a1 13.67%, #264b9f 22.42%, #3f3f99 49.08%, #662b91 74.69%, #9c1085 102.43%, #a60c83 106.7%);
    padding: 16vw 9.3333333333vw 21.3333333333vw;
  }
}

.recruit-block__solid {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 35.0520833333vw;
  background: #1b204f;
  padding: 6.6666666667vw 4.1666666667vw 7.2916666667vw;
  position: relative;
}
@media screen and (max-width: 749px) {
  .recruit-block__solid {
    min-height: 0;
    padding: 16vw 9.3333333333vw 21.3333333333vw;
  }
}

.recruit-block__content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
}
@media screen and (min-width: 750px) {
  .recruit-block__content {
    max-width: 560px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.recruit-block__heading {
  margin: 0 0 2.5vw;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.625vw 2.0833333333vw;
}
.recruit-block__heading-en-img {
  display: block;
  flex-shrink: 0;
  height: clamp(2rem, 3.4375vw, 4.125rem);
  width: auto;
  line-height: 0;
  align-self: flex-end;
}
.recruit-block__heading-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding-bottom: 0.15em;
}
@media screen and (max-width: 749px) {
  .recruit-block__heading {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 1.0666666667vw;
    margin: 0 0 13.3333333333vw;
  }
  .recruit-block__heading-en-img {
    height: 10.6666666667vw;
    max-height: none;
    align-self: flex-start;
  }
  .recruit-block__heading-ja {
    font-size: 4.8vw;
    padding-bottom: 0;
  }
}

.recruit-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: none;
  flex: 1 1 auto;
  min-width: 0;
}
.recruit-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8333333333vw;
  padding: 1.0416666667vw 0;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: inherit;
  text-decoration: none;
}
.recruit-list a .recruit-list__label {
  flex: 1 1 0;
  min-width: 0;
  align-self: center;
  font-family: "Noto Sans JP", sans-serif;
  overflow: hidden;
}
.recruit-list a .recruit-list__label .split-txt {
  line-height: inherit;
}
.recruit-list a .recruit-list__icon {
  flex-shrink: 0;
  width: 0.9895833333vw;
  height: 0.8333333333vw;
  line-height: 0;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.recruit-list a .recruit-list__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/common/icon-arrow-white.svg") center/contain no-repeat;
}
.recruit-list a .recruit-list__icon--window {
  width: 1.40625vw;
  height: 1.40625vw;
}
.recruit-list a .recruit-list__icon--window::before {
  background-image: url("../img/common/icon-open-window.svg");
}
.recruit-list a.is-hover .recruit-list__icon {
  transform: translate3d(4px, 0, 0);
}
@media screen and (max-width: 749px) {
  .recruit-list a {
    gap: 3.2vw;
    font-size: 4.5333333333vw;
    font-weight: 400;
    letter-spacing: 0.2266666667vw;
    padding: 3.4666666667vw 0;
    border-bottom-width: 0.2666666667vw;
  }
  .recruit-list a .recruit-list__icon {
    width: 4.2666666667vw;
    height: 3.7333333333vw;
  }
  .recruit-list a .recruit-list__icon--window {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}

.recruit-cta {
  position: absolute;
  bottom: 2.5vw;
  right: 4.1666666667vw;
  left: 4.1666666667vw;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.6666666667vw;
  color: #ffffff;
  text-decoration: none;
}
@media screen and (min-width: 750px) {
  .recruit-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 560px;
    width: calc(100% - 8.3333333333vw);
    box-sizing: border-box;
  }
}
.recruit-cta__label {
  flex: 0 1 auto;
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: right;
  overflow: hidden;
}
.recruit-cta__label .split-txt {
  line-height: inherit;
  margin-left: auto;
}
.recruit-cta__icon {
  flex-shrink: 0;
  width: 3.5416666667vw;
  height: 3.5416666667vw;
  line-height: 0;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.recruit-cta__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/common/btn-arrow-openchat.svg") center/contain no-repeat;
  transition: background-image 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.recruit-cta.is-hover .recruit-cta__icon, .recruit-cta:hover .recruit-cta__icon, .recruit-cta:focus-visible .recruit-cta__icon {
  transform: scale(1.29412);
}
.recruit-cta.is-hover .recruit-cta__icon::before, .recruit-cta:hover .recruit-cta__icon::before, .recruit-cta:focus-visible .recruit-cta__icon::before {
  background-image: url("../img/common/btn-arrow-openchat-hover.svg");
}
@media screen and (max-width: 749px) {
  .recruit-cta {
    position: static;
    transform: none;
    margin-top: 13.3333333333vw;
    margin-left: auto;
    justify-content: flex-end;
    align-items: center;
    gap: 4.2666666667vw;
    left: auto;
    right: auto;
    padding: 0;
    width: 100%;
  }
  .recruit-cta__label {
    font-size: 4.2666666667vw;
    letter-spacing: 0.2133333333vw;
    white-space: nowrap;
    text-align: right;
  }
  .recruit-cta__icon {
    width: 9.8666666667vw;
    height: 9.8666666667vw;
    max-width: none;
    max-height: none;
  }
}

:root {
  --grade: linear-gradient(128deg, #00b4c6 -67.24%, #01adc3 -56.33%, #079cbd -39.96%, #0f7fb2 -23.58%, #1b58a3 -3.57%, #1e50a1 0.07%, #264b9f 9.16%, #3f3f99 25.54%, #662b91 47.37%, #9c1085 71.02%, #a60c83 74.65%);
  --ease-expo-out: cubic-bezier(0.19, 1, 0.22, 1);
  --header-offset: 100px;
}

@media screen and (max-width: 1199px) {
  :root {
    --header-offset: 72px;
  }
}
@media screen and (max-width: 749px) {
  :root {
    --header-offset: 16vw;
  }
}
/* ===========================================
   ベース・共通
   =========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt" 1;
  color: #1b204f;
  background: #ffffff;
  line-height: 1.5;
  background-image: url("../img/common/bg_pattern.png");
  background-size: 20px 20px;
}

body.is-drawer-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

@media screen and (max-width: 749px) {
  .hero__photo img {
    max-width: none;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: clip;
  position: relative;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===========================================
   ヘッダー（PC・SP 共通マークアップ）
   =========================================== */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 100px;
  padding: 15px 40px;
  background: #ffffff;
  box-sizing: border-box;
}
html.js .site-header-wrap {
  transform: translate3d(0, -120%, 0);
}
html.js .site-header-wrap.is-animating {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
html.js .site-header-wrap.is-show {
  transform: translate3d(0, 0, 0);
}
html.js .site-header-wrap.is-show-done {
  transform: none;
  transition: none;
}
@media screen and (max-width: 1199px) {
  .site-header-wrap {
    height: auto;
    min-height: 0;
    padding: 12px 32px;
  }
}
@media screen and (max-width: 749px) {
  .site-header-wrap {
    height: 16vw;
    padding: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html.js .site-header-wrap, html.js .site-header-wrap.is-animating, html.js .site-header-wrap.is-show {
    transform: none;
    transition: none;
  }
}

.site-header__frost {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  flex-shrink: 0;
  gap: 16px;
  position: relative;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media screen and (max-width: 1199px) {
  .site-header__frost {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1199px) {
  .site-header__inner {
    display: block;
    width: 100%;
  }
}

.site-header__logo {
  flex-shrink: 0;
  width: 229px;
  height: 62px;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: 0;
}
.site-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-header__logo > a {
  display: block;
  height: 100%;
}

a.site-header__logo {
  display: block;
}

.site-header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: #1b204f;
  cursor: pointer;
  border-radius: 40px;
  -webkit-tap-highlight-color: transparent;
}
.site-header__menu-btn .site-header__menu-bars {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
}
.site-header__menu-btn .site-header__menu-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header__menu-btn .site-header__menu-bar:nth-child(1) {
  top: 0;
}
.site-header__menu-btn .site-header__menu-bar:nth-child(2) {
  top: 6px;
}
.site-header__menu-btn .site-header__menu-bar:nth-child(3) {
  top: 12px;
}

body.is-drawer-open .site-header__menu-btn .site-header__menu-bar:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
body.is-drawer-open .site-header__menu-btn .site-header__menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.is-drawer-open .site-header__menu-btn .site-header__menu-bar:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* ドロワー枠：PC ではヘッダー右側にナビをインライン配置、SP では全画面オーバーレイ */
@media screen and (min-width: 1200px) {
  .drawer {
    position: relative;
    inset: auto;
    z-index: auto;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 1199px) {
  .drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
  }
  .drawer.is-open {
    visibility: visible;
    opacity: 1;
    /* コンテナ自体は透過のみ — イベントは backdrop/panel が受ける（ヘッダーの閉じるボタンが効くように） */
    pointer-events: none;
  }
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 32, 79, 0.45);
}
@media screen and (max-width: 1199px) {
  .drawer__backdrop {
    pointer-events: none;
  }
}

.drawer__panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1b204f;
  margin: 8px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px;
}
@media screen and (min-width: 1200px) {
  .drawer__panel {
    position: static;
    inset: auto;
    margin: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    padding: 0;
    flex: 0 1 auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    z-index: auto;
  }
}
@media screen and (max-width: 1199px) {
  .drawer__panel {
    margin: 0;
    pointer-events: none;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}
@media screen and (min-width: 750px) {
  .site-nav {
    gap: 1.0416666667vw;
  }
}
@media screen and (min-width: 1500px) {
  .site-nav {
    gap: 2.0833333333vw;
  }
}
@media screen and (max-width: 1199px) {
  .site-nav {
    position: relative;
    z-index: 1;
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    box-sizing: border-box;
    min-height: 0;
    padding: 24px 32px 0;
  }
}
@media screen and (max-width: 1199px) and (max-width: 749px) {
  .site-nav {
    padding: 13.3333333333vw 9.3333333333vw 0;
  }
}

.site-nav__copy {
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .site-nav__copy {
    margin-top: auto;
    padding: 32px 24px 24px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-align: center;
    color: #949dac;
  }
}
@media screen and (max-width: 1199px) and (max-width: 749px) {
  .site-nav__copy {
    padding: 8vw 4.267vw 4.267vw;
    font-size: 2.667vw;
    line-height: 3.733vw;
  }
}

.site-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
@media screen and (min-width: 750px) {
  .site-nav-list {
    gap: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .site-nav-list {
    gap: 2.0833333333vw;
  }
}
@media screen and (max-width: 1199px) {
  .site-nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }
}
@media screen and (max-width: 749px) {
  .site-nav-list {
    font-size: 4vw;
    font-weight: 400;
  }
}

.site-nav-list__item {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1199px) {
  .site-nav-list__item {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  .site-nav-list__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}
@media screen and (max-width: 1199px) and (max-width: 749px) {
  .site-nav-list__item {
    border-top-width: 0.267vw;
  }
  .site-nav-list__item:last-child {
    border-bottom-width: 0.267vw;
  }
}

.site-nav__link .split-txt {
  max-width: 100%;
}
@media screen and (min-width: 750px) {
  .site-nav__link {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.2;
    white-space: nowrap;
    overflow: visible;
  }
}
@media screen and (max-width: 1199px) {
  .site-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-sizing: border-box;
    min-height: 3.5rem;
    padding: 0;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: #ffffff;
  }
  .site-nav__link .split-txt {
    flex: 1;
    min-width: 0;
  }
  .site-nav__link::after {
    content: "";
    display: block;
    box-sizing: border-box;
    width: 12px;
    height: 10px;
    flex-shrink: 0;
    align-self: center;
    background: url("../img/common/icon-drawer-arrow.svg") center/contain no-repeat;
    opacity: 1;
  }
}
@media screen and (max-width: 1199px) and (max-width: 749px) {
  .site-nav__link {
    gap: 3.2vw;
    min-height: 14.6666666667vw;
    font-size: 4vw;
    font-weight: 500;
    letter-spacing: 0.4vw;
    line-height: 1;
  }
  .site-nav__link::after {
    width: 3.2vw;
    height: 2.6666666667vw;
    margin-right: 0.5333333333vw;
  }
}

.btn-contact {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
  min-width: 13.75rem;
  min-height: 3.5rem;
  padding: 1.125rem 1.75rem 1.125rem 2.25rem;
  overflow: hidden;
  background: #1b204f;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
.btn-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--grade, linear-gradient(128deg, #00b4c6 -67.24%, #01adc3 -56.33%, #079cbd -39.96%, #0f7fb2 -23.58%, #1b58a3 -3.57%, #1e50a1 0.07%, #264b9f 9.16%, #3f3f99 25.54%, #662b91 47.37%, #9c1085 71.02%, #a60c83 74.65%));
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-contact.is-hover::before, .btn-contact:hover::before, .btn-contact:focus-visible::before {
  opacity: 1;
}
.btn-contact__label {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.btn-contact__label .split-txt {
  line-height: 1.35;
}
.btn-contact__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  line-height: 0;
}
.btn-contact__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/common/icon-arrow-contact.svg") center/contain no-repeat;
}
@media screen and (max-width: 1199px) {
  .btn-contact {
    margin: 24px 0 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 3.5rem;
    padding: 1rem 1.75rem 1rem 2.25rem;
    gap: 12px;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.1em;
    line-height: 1.25;
    background-color: transparent;
    background: var(--grade, linear-gradient(128deg, #00b4c6 -67.24%, #01adc3 -56.33%, #079cbd -39.96%, #0f7fb2 -23.58%, #1b58a3 -3.57%, #1e50a1 0.07%, #264b9f 9.16%, #3f3f99 25.54%, #662b91 47.37%, #9c1085 71.02%, #a60c83 74.65%));
    border: 0;
    color: #ffffff;
  }
  .btn-contact::before {
    display: none;
  }
  .btn-contact .btn-contact__icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 1199px) and (max-width: 749px) {
  .btn-contact {
    margin: 12vw auto 0;
    width: 81.3333333333vw;
    max-width: 100%;
    min-height: 21.3333333333vw;
    padding: 7.4666666667vw 6.6666666667vw 7.4666666667vw 10.6666666667vw;
    gap: 3.2vw;
    border-radius: 13.3333333333vw;
    font-size: 4.2666666667vw;
    font-weight: 500;
    letter-spacing: 0.4266666667vw;
    line-height: 0.95;
    border-width: 0.2666666667vw;
  }
  .btn-contact .btn-contact__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}

@media screen and (max-width: 1199px) {
  body.is-drawer-open .site-header-wrap {
    z-index: 300;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 12px 32px;
    background: #ffffff;
    box-sizing: border-box;
  }

  body.is-drawer-open .site-header__frost {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .drawer.is-open .drawer__backdrop,
.drawer.is-open .drawer__panel {
    pointer-events: auto;
  }

  .drawer__backdrop {
    top: 86px;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .drawer__panel {
    inset: auto;
    top: 86px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
    padding: 0 0 32px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1199px) and (max-width: 749px) {
  body.is-drawer-open .site-header-wrap {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .drawer__backdrop {
    top: 16vw;
  }

  .drawer__panel {
    top: 16vw;
    padding: 0 0 8.533vw;
  }
}
@media screen and (max-width: 749px) {
  body.is-drawer-open .site-header-wrap {
    z-index: 250;
  }

  .site-header-wrap {
    height: 16vw;
    padding: 0;
  }

  .site-header__inner {
    gap: 0;
    display: flex;
  }

  .site-header__frost {
    flex: 1;
    min-width: 0;
    gap: 2.667vw;
    padding: 2.667vw;
  }

  .site-header__logo {
    width: 40vw;
    height: 10.667vw;
  }

  .site-header__menu-btn {
    width: 11.2vw;
    height: 9.6vw;
  }
  .site-header__menu-btn .site-header__menu-bars {
    width: 5.867vw;
    height: 3.733vw;
  }
  .site-header__menu-btn .site-header__menu-bar {
    height: 0.533vw;
    border-radius: 0.267vw;
  }
  .site-header__menu-btn .site-header__menu-bar:nth-child(1) {
    top: 0;
  }
  .site-header__menu-btn .site-header__menu-bar:nth-child(2) {
    top: 1.6vw;
  }
  .site-header__menu-btn .site-header__menu-bar:nth-child(3) {
    top: 3.2vw;
  }

  body.is-drawer-open .site-header__menu-btn .site-header__menu-bar:nth-child(1) {
    top: 1.6vw;
    transform: rotate(45deg);
  }
  body.is-drawer-open .site-header__menu-btn .site-header__menu-bar:nth-child(3) {
    top: 1.6vw;
    transform: rotate(-45deg);
  }

  .drawer.is-open .drawer__backdrop,
.drawer.is-open .drawer__panel {
    pointer-events: auto;
  }
}
/* ===========================================
   フッター（Figma PC: footer / SP: 1316:11803。マークアップ一元化／SP で jQuery 開閉）
   =========================================== */
.site-footer {
  background: #0e0e0e;
  color: #ffffff;
}

.site-footer__inner {
  padding: 116px 0 50px;
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 1400px;
  margin: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 749px) {
  .site-footer__inner {
    flex: 1 0 auto;
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 13.4666666667vw 9.3333333333vw 7.4666666667vw;
    align-items: stretch;
  }
}

.footer-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(32px, 4.267vw, 48px) 0;
}
.footer-grid > .site-footer-nav {
  display: contents;
}
@media screen and (min-width: 750px) and (max-width: 1299px) {
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 40px;
  }
  .footer-grid > .footer-logo {
    grid-column: 1/-1;
    width: auto;
  }
  .footer-grid > .site-footer-nav {
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 40px;
  }
  .footer-grid .footer-col--about {
    margin-left: 0;
    grid-column: 1/span 2;
    grid-row: 1;
  }
  .footer-grid .footer-col--service {
    grid-column: 3/span 2;
    grid-row: 1;
  }
  .footer-grid .footer-col--recruit {
    grid-column: 5/span 2;
    grid-row: 1;
  }
  .footer-grid .footer-col--intern {
    grid-column: 1/span 2;
    grid-row: 2;
  }
  .footer-grid .footer-extra-links {
    display: flex;
    flex-direction: column;
    grid-column: 3/span 2;
    grid-row: 2;
    gap: 0;
    min-width: 0;
  }
}
@media screen and (min-width: 1300px) {
  .footer-grid {
    flex-wrap: nowrap;
    gap: 0;
  }
  .footer-grid .footer-logo {
    flex: 0 0 228px;
    max-width: 228px;
  }
  .footer-grid .footer-col--about {
    flex: 0 1 231px;
    min-width: 0;
    margin-left: 73px;
  }
  .footer-grid .footer-col--service {
    flex: 0 1 208px;
    min-width: 0;
  }
  .footer-grid .footer-col--recruit {
    flex: 0 1 282px;
    min-width: 0;
  }
  .footer-grid .footer-col--intern {
    flex: 0 1 211px;
    min-width: 0;
  }
  .footer-grid .footer-extra-links {
    flex: 1 1 160px;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 749px) {
  .footer-extra-links {
    display: contents;
  }
}

.footer-logo {
  line-height: 0;
}
.footer-logo a {
  display: inline-block;
  line-height: 0;
  color: inherit;
}

.footer-logo img {
  width: 228px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-col__head {
  margin: 0;
}

.footer-col__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.6;
  min-height: 2.6em;
  display: flex;
  align-items: center;
}
.footer-col__title a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: inherit;
}
.footer-col__title .split-txt {
  max-width: 100%;
}

.footer-col__acc-icon {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  line-height: 0;
}
.footer-col__acc-icon::before, .footer-col__acc-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #ffffff;
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}
.footer-col__acc-icon::before {
  width: 12px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.footer-col__acc-icon::after {
  width: 1px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.footer-col__page-icon {
  display: none;
}

.footer-col__meta-acc {
  display: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  line-height: 0;
}
.footer-col__meta-acc::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/common/icon-footer-acc-plus.svg") center/contain no-repeat;
}

.footer-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-inline-start: 0.875em;
  text-indent: 0;
}

.footer-col__item {
  line-height: 2.6;
  min-height: 2.6em;
  margin: 0;
  display: flex;
  align-items: center;
}

.footer-col__link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  column-gap: 0.25em;
  max-width: 100%;
  min-height: 2.6em;
  width: 100%;
}

.footer-col__dash {
  flex: 0 0 1em;
  width: 1em;
  text-align: center;
  line-height: 1.2;
}

.footer-col__link-text {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.footer-col__link-text .split-txt {
  max-width: 100%;
}

.footer-col__link--external {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  width: 100%;
}

.footer-col__link-leading {
  display: inline-flex;
  align-items: flex-start;
  column-gap: 0.25em;
  min-width: 0;
}

.footer-col__ext-label {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.footer-col__ext-label .split-txt {
  max-width: 100%;
}

.footer-col__ext-icon {
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  line-height: 0;
  vertical-align: middle;
}
.footer-col__ext-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/common/icon-open-window.svg") center/contain no-repeat;
}

.footer-col__meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col__meta-list li {
  margin: 0;
  line-height: 2.6;
}
.footer-col__meta-list a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  display: inline;
}

@media screen and (max-width: 749px) {
  .js-footer-accordion-item .footer-col__acc-icon {
    display: block;
  }

  .footer-grid {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    align-items: stretch;
    row-gap: 0;
    width: 81.3333333333vw;
    max-width: 100%;
  }
  .footer-grid > .footer-logo {
    margin-bottom: 12.5333333333vw;
    padding-bottom: 0;
    border-bottom: none;
  }
  .footer-grid .footer-logo + .site-footer-nav > .footer-col:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    margin-left: 0;
  }

  .footer-logo img {
    width: 50.6666666667vw;
    height: 13.7514666667vw;
    max-width: none;
    object-fit: contain;
  }

  .footer-col.js-footer-accordion-item,
.footer-col--members,
.footer-col--privacy,
.footer-col--contact {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer-col__head.js-footer-accordion-trigger,
.footer-col__head--page {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.2vw;
    min-height: 11.7333333333vw;
  }

  .footer-col__head.js-footer-accordion-trigger {
    cursor: pointer;
  }

  .footer-col__head--page {
    color: inherit;
    text-decoration: none;
    width: 100%;
  }

  .footer-col__acc-icon,
.footer-col__page-icon {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }

  .footer-col__acc-icon::before {
    width: 3.2vw;
    height: 1px;
  }
  .footer-col__acc-icon::after {
    width: 1px;
    height: 3.2vw;
  }

  .footer-col__page-icon {
    display: block;
    flex-shrink: 0;
    line-height: 0;
  }
  .footer-col__page-icon::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url("../img/common/icon-footer-page-arrow.svg") center/contain no-repeat;
  }

  .footer-col__title {
    flex: 1;
    min-width: 0;
    font-size: 4vw;
    font-weight: 300;
    line-height: 1.2;
    min-height: 11.7333333333vw;
    letter-spacing: 0.05em;
  }
  .footer-col__title .split-txt {
    max-width: 100%;
  }

  .js-footer-accordion-item.is-open .footer-col__acc-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
    opacity: 0;
  }

  .footer-col__panel {
    border-top: none;
  }

  .footer-col__panel .footer-col__list {
    margin: 0;
    padding-inline-start: 0;
  }

  .footer-col__panel .footer-col__item {
    margin: 0;
    min-height: 11.7333333333vw;
    line-height: 1.2;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
  .footer-col__panel .footer-col__item .footer-col__link {
    font-size: 3.7333333333vw;
    font-weight: 300;
    width: 100%;
    padding: 0;
    min-height: 11.7333333333vw;
    align-items: center;
  }

  .footer-col__link--external {
    width: 100%;
    gap: 2.1333333333vw;
  }

  .footer-col__item--external .footer-col__ext-icon {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.footer-copy {
  text-align: center;
  margin: clamp(48px, 7.34vw, 141px) 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: calc(14 / 12);
  letter-spacing: 0.05em;
  color: #949dac;
}
@media screen and (max-width: 749px) {
  .footer-copy {
    margin-top: 10.6666666667vw;
    padding-top: 0;
    max-width: 67.7333333333vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.6666666667vw;
    font-weight: 400;
    line-height: calc(14 / 10);
    letter-spacing: 0.05em;
  }
}

/*# sourceMappingURL=common.css.map */
