/* ==========================================================================
   common.css — qinc-recruit2026 共通スタイル
   ========================================================================== */

/* --- CSS変数 --- */
:root {
  /* カラー — メイン */
  --color-navy: #1e2c63;
  --color-base: #333333;
  --color-orange: #ea8b0f;
  --color-bg: #fef6ec;
  --color-white: #ffffff;
  --color-breadcrumb-inactive: #98948f;

  /* カラー — フッター専用 */
  --color-footer-heading: #020441;
  --color-footer-link: #003176;
  --color-footer-icon-bg: #94a3b8;
  --color-footer-border: #e6e6eb;

  /* グラデーション */
  --gradient-orange-text: linear-gradient(87.5deg, #ea8b0f 16.6%, #f6b204 93.9%);
  --gradient-card-bg: linear-gradient(to left, rgba(255, 255, 255, 0.5), #fff);

  /* シャドウ */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);

  /* 角丸 */
  --radius-pill: 9999px;
  --radius-card: 20px;
  --radius-circle: 50%;
  --radius-small: 10px;

  /* サイト共通余白 — 全ページ・全セクション（全幅を除く）で使用
     1920px基準で左右60px。768px以下で24pxに縮小 */
  --site-padding: 60px;

  /* コンテナ（max-width = コンテンツ幅 + site-padding×2） */
  --container-max: 1440px;      /* 1320 + 60×2 */
  --container-padding: var(--site-padding);
  --container-narrow: 1320px;   /* 1200 + 60×2 */
  --container-text: 940px;      /* 820 + 60×2 */
  --container-wide: 1740px;     /* 1620 + 60×2 — interview/benefits等 */
  --container-article: 1120px;  /* 1000 + 60×2 — 記事系 */

  /* 垂直スペーシング */
  --gap-header-to-hero: 114px;
  --gap-hero-to-breadcrumb: 32px;
  --gap-card-row: 80px;
}

/* --- リセット --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-base);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* 右上装飾画像（body直下、ページ共通） */
.body-decoration {
  position: absolute;
  top: -35px;
  right: -90px;
  width: 622px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  max-width: none;
}

/* 装飾画像より前面にコンテンツを表示 */
.page-hero,
.page-hero ~ section,
.page-hero ~ footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .body-decoration {
    width: 460px;
    top: -25px;
    right: -70px;
  }
}

@media (max-width: 768px) {
  .body-decoration {
    width: 320px;
    top: -20px;
    right: -60px;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* --- コンテナ --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container--narrow {
  max-width: var(--container-narrow);
  padding-left: var(--site-padding);
  padding-right: var(--site-padding);
}

.container--text {
  max-width: var(--container-text);
  padding-left: var(--site-padding);
  padding-right: var(--site-padding);
}

/* --- ユーティリティ --- */
.text-gradient-orange {
  background-image: var(--gradient-orange-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-card {
  box-shadow: var(--shadow-card);
}

.card-gradient {
  background: var(--gradient-card-bg);
  border-radius: var(--radius-card);
}

/* --- セクション見出し --- */
.section-heading {
  text-align: center;
}

.section-heading__en {
  display: block;
  font-family: "Caveat", cursive;
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  color: var(--color-orange);
}

.section-heading__ja {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 2.5px;
  font-feature-settings: "palt";
  color: var(--color-base);
}

.section-heading--left {
  text-align: left;
}

/* --- パンくず --- */
.breadcrumb {
  padding-top: var(--gap-hero-to-breadcrumb);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.7px;
  font-feature-settings: "palt";
  color: var(--color-breadcrumb-inactive);
}

.breadcrumb__list__item {
  display: flex;
  align-items: center;
}

/* 2番目以降の項目の前にオレンジドット */
.breadcrumb__list__item + .breadcrumb__list__item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 20px;
  background-color: var(--color-orange);
  border-radius: 50%;
}

.breadcrumb__text {
  color: var(--color-breadcrumb-inactive);
  transition: opacity 0.2s ease;
}

.breadcrumb__text:hover {
  opacity: 0.7;
}

.breadcrumb__text--active {
  color: var(--color-base);
}

.breadcrumb__text--active:hover {
  opacity: 1;
}

/* --- pill型ボタン --- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transition: opacity 0.2s ease;
}

.btn-pill:hover {
  opacity: 0.8;
}

.btn-pill--navy {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.btn-pill--orange {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn-pill--outline-orange {
  background-color: var(--color-white);
  color: var(--color-orange);
  border: 2px solid var(--color-orange);
}

.btn-pill--outline-white {
  background-color: var(--color-white);
  color: var(--color-navy);
  border: 1px solid #000;
}

/* --- pill型タグ --- */
.tag-pill {
  display: inline-block;
  border-radius: 100px;
  padding: 4px 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
}

.tag-pill--orange {
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
}

.tag-pill--navy {
  color: var(--color-navy);
  border: 1px solid var(--color-navy);
}

.tag-pill--white {
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.tag-pill--filled-orange {
  color: var(--color-navy);
  background-color: var(--color-orange);
}

/* --- 矢印リンク --- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s ease;
}

.link-arrow:hover {
  opacity: 0.7;
}

.link-arrow__icon {
  width: 15px;
  height: 9px;
  flex-shrink: 0;
}

/* --- ●マーカー見出し --- */
.heading-marker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.heading-marker__dot {
  width: 14px;
  height: 14px;
  border-radius: var(--radius-circle);
  background-color: var(--color-orange);
  flex-shrink: 0;
}

.heading-marker__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 2px;
  font-feature-settings: "palt";
  color: var(--color-base);
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  :root {
    --site-padding: 24px;
  }

  .section-heading__en {
    font-size: 28px;
  }

  .section-heading__ja {
    font-size: 32px;
    line-height: 48px;
  }
}


/* ==========================================================================
   header.css — ヘッダー
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* スクロール時: ドロップダウンをヘッダー下端まで下げる */
.site-header.is-scrolled .header-nav__submenu {
  top: calc(100% + 16px);
  padding-top: 0;
}

.site-header.is-scrolled .header-nav__submenu::before {
  top: -16px;
  height: calc(100% + 32px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
}

/* --- ロゴ --- */
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.site-header__logo:hover {
  opacity: 0.7;
}

.site-header__logo-svg {
  height: 40px;
  width: auto;
}

.site-header__logo-svg .logo-main {
  fill: var(--color-navy);
}

.site-header__logo-svg .logo-dot {
  fill: var(--color-white);
}

.site-header__logo-text {
  font-family: "Arimo", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  white-space: nowrap;
}

/* --- ナビゲーション --- */
.site-header__body {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav__link {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-navy);
  transition: opacity 0.2s ease;
}

.header-nav__link:hover {
  opacity: 0.7;
}

/* --- デスクトップ ドロップダウン --- */
.header-nav__item {
  position: relative;
}

.header-nav__item--has-children .header-nav__link {
  cursor: default;
}

.header-nav__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 101;
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.header-nav__item:hover .header-nav__submenu {
  opacity: 1;
  pointer-events: auto;
}

.header-nav__submenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  right: -20px;
  height: calc(100% + 12px);
  z-index: -1;
}

.header-nav__submenu-link {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
  background-color: transparent;
  transition: color 0.2s ease;
}

.header-nav__submenu-link:first-child {
  border-radius: 8px 8px 0 0;
}

.header-nav__submenu-link:last-child {
  border-radius: 0 0 8px 8px;
}

.header-nav__submenu-link:only-child {
  border-radius: 8px;
}

.header-nav__submenu-link:hover {
  color: rgba(30, 44, 99, 0.6);
}

.header-nav__submenu-link + .header-nav__submenu-link {
  border-top: 1px solid var(--color-footer-border);
}

/* --- ヘッダーCTA（共通 .btn-pill--navy にサイズのみ上書き） --- */
.header-cta {
  height: 40px;
  padding: 0 24px;
  white-space: nowrap;
}

/* --- ハンバーガー --- */
.header-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  flex-shrink: 0;
}

.header-toggle__bar {
  display: block;
  position: absolute;
  left: 4px;
  width: 24px;
  height: 2px;
  background-color: var(--color-navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-toggle__bar:nth-child(1) { top: 8px; }
.header-toggle__bar:nth-child(2) { top: 15px; }
.header-toggle__bar:nth-child(3) { top: 22px; }

/* ×変形 */
.header-toggle.is-active .header-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-toggle.is-active .header-toggle__bar:nth-child(2) {
  opacity: 0;
}

.header-toggle.is-active .header-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- SPナビ オーバーレイ --- */
.sp-nav-overlay {
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: flex-end;
}

.sp-nav-overlay.is-open {
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}

/* --- SPナビ パネル --- */
.sp-nav {
  width: 480px;
  max-width: 100%;
  height: 100%;
  background-color: var(--color-white);
  overflow-y: auto;
  padding: 32px 24px 80px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.sp-nav-overlay.is-open .sp-nav {
  transform: translateX(0);
}

.sp-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-nav__link {
  display: block;
  padding: 16px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-footer-border);
}

/* --- SPナビ アコーディオン --- */
.sp-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-footer-border);
}

.sp-nav__toggle-icon {
  transition: transform 0.3s ease;
}

.sp-nav__toggle[aria-expanded="true"] .sp-nav__toggle-icon {
  transform: rotate(180deg);
}

.sp-nav__submenu {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.sp-nav__submenu-inner {
  padding-left: 16px;
}

.sp-nav__subitem {
}

.sp-nav__sublink {
  display: block;
  padding: 12px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-footer-border);
}

.sp-nav__entry {
  margin-top: 32px;
}

.sp-nav__entry-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background-color: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

/* --- WordPress admin bar 対応 --- */
body:has(#wpadminbar) .site-header {
  top: 32px;
}

body:has(#wpadminbar) .sp-nav-overlay {
  top: calc(62px + 32px);
}

@media (max-width: 782px) {
  body:has(#wpadminbar) .site-header {
    top: 46px;
  }

  body:has(#wpadminbar) .sp-nav-overlay {
    top: calc(62px + 46px);
  }
}

/* --- SPナビ展開時 --- */
html.is-sp-nav-open,
html.is-sp-nav-open body {
  overflow: hidden;
}

html.is-sp-nav-open .site-header {
  background-color: var(--color-white);
}

/* --- レスポンシブ --- */
@media (max-width: 1200px) {
  .site-header__inner {
    padding: 0 24px;
  }

  .header-nav {
    gap: 20px;
  }

  .header-nav__link {
    font-size: 16px;
  }

  .header-cta.btn-pill {
    font-size: 16px;
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .site-header__body {
    display: none;
  }

  .header-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .sp-nav {
    width: 100%;
  }
}


/* ==========================================================================
   footer.css — フッター
   ========================================================================== */

.site-footer {
  background-color: var(--color-white);
}

/* --- メインコンテンツ --- */
.site-footer__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px var(--site-padding) 48px;
  display: grid;
  grid-template-columns: 264px 3fr 5fr;
  gap: 44px;
}

/* --- ロゴ列 --- */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand__logo {
  display: block;
  width: 167px;
  transition: opacity 0.2s ease;
}

.footer-brand__logo:hover {
  opacity: 0.7;
}

.footer-brand__logo .site-header__logo-svg,
.footer-brand__logo-img {
  width: 100%;
  height: auto;
}

.footer-brand__logo .logo-main {
  fill: var(--color-navy);
}

.footer-brand__logo .logo-dot {
  fill: var(--color-white);
}

.footer-brand__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 22.75px;
  color: var(--color-base);
}

.footer-brand__company {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-base);
}

/* --- OFFICE列 --- */
.footer-office {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.footer-office__heading,
.footer-links__heading {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1.4px;
  color: var(--color-footer-heading);
}

.footer-office__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-office__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: var(--color-base);
}

.footer-office__address {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: var(--color-base);
  font-style: normal;
}

.footer-office__address span {
  display: inline-block;
}

/* --- LINK列 --- */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.footer-links__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.footer-links__list {
}

.footer-links__heading-item {
  margin-top: 17px;
}

.footer-links__heading-item:first-child {
  margin-top: 0;
}

.footer-links__heading-item--hidden .footer-links__heading-text {
  display: none;
}

.footer-links__heading-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 35px;
  color: var(--color-base);
}

.footer-links__sublist {
}

.footer-links__item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 35px;
}

.footer-links__link {
  color: var(--color-footer-link);
  transition: opacity 0.2s ease;
}

.footer-links__link:hover {
  opacity: 0.7;
}

.footer-links__external-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-left: 4px;
}

/* --- ボトムバー --- */
.site-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--site-padding);
}

.site-footer__bottom-inner {
  border-top: 1px solid var(--color-footer-border);
  padding: 24px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-footer-heading);
}

/* --- SNSアイコン --- */
.footer-sns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-sns__link {
  display: block;
  width: 32px;
  height: 32px;
  transition: opacity 0.2s ease;
}

.footer-sns__link:hover {
  opacity: 0.7;
}

.footer-sns__icon {
  width: 32px;
  height: 32px;
}

/* --- レスポンシブ --- */
@media (max-width: 1024px) {
  .site-footer__main {
    grid-template-columns: 1fr;
    padding: 60px 24px 40px;
    gap: 40px;
  }

  .footer-office,
  .footer-links {
    margin-top: 0;
  }

  .footer-links__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-footer__main {
    padding: 48px 24px 32px;
    gap: 32px;
  }

  .site-footer__bottom-inner {
    flex-direction: column-reverse;
    gap: 24px;
    align-items: center;
    padding: 24px 0 32px;
  }

  .footer-office__address span {
    display: block;
  }

  .footer-links__list + .footer-links__list {
    margin-top: 17px;
  }

  .footer-links__grid {
    grid-template-columns: 1fr;
  }

  .footer-sns {
    gap: 16px;
  }
}


/* ==========================================================================
   cta.css — 共通CTA（トップ・下層共用）
   Figma: 1920×589px, symbol 6:3340
   ========================================================================== */

.cta {
  position: relative;
  height: 589px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- キャッチコピー（VDL-PenLetter） --- */
.cta__catch {
  font-family: "vdl-penletter", sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 68.578px;
  letter-spacing: 3px;
  font-feature-settings: "palt";
  color: var(--color-base);
  margin-bottom: 52px; /* キャッチ底 → リンクテキスト上（sub無し時） */
}

/* キャッチ文字数多め（13〜16文字） */
.cta__catch--sm {
  font-size: 48px;
}

/* キャッチ文字数かなり多め（17文字〜） */
.cta__catch--xs {
  font-size: 40px;
}

/* サブテキストがある場合、キャッチの下余白を詰める */
.cta__catch + .cta__sub {
  margin-top: -24px;
}

/* --- サブテキスト（文言A/C） --- */
.cta__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 1px;
  font-feature-settings: "palt";
  color: var(--color-base);
  margin-bottom: 40px;
}

/* --- リンク行 --- */
.cta__links {
  display: flex;
  justify-content: center;
  gap: 100px;
}

.cta__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.2s ease;
}

.cta__link:hover {
  opacity: 0.7;
}

/* --- リンク内テキスト+矢印 --- */
.cta__link-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "vdl-penletter", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 68.578px;
  letter-spacing: 1.5px;
  font-feature-settings: "palt";
  color: var(--color-base);
}

/* --- 手描き風矢印（32×26px） --- */
.cta__link-arrow {
  width: 32px;
  height: auto;
  flex-shrink: 0;
}

/* --- 手書き下線装飾（328×16px） --- */
.cta__link-underline {
  display: block;
  width: 100%;
  height: 16px;
  margin-top: -6px;
}

.cta__link-underline img {
  width: 100%;
  height: 100%;
}

/* --- Cパターン（cta-contact）: お問い合わせ付き --- */
.cta--contact {
  height: auto;
  padding: 100px 24px 72px;
}

.cta__contact {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.cta__contact-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-base);
  font-feature-settings: "palt";
  margin-bottom: 8px;
}

.cta__contact-email {
  font-family: "Arimo", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-base);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.cta__contact-email:hover {
  opacity: 0.7;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  .cta {
    height: auto;
    min-height: 360px;
    padding: 60px 24px;
  }

  .cta__bg img {
    object-position: center;
  }

  .cta__catch {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 32px;
  }

  .cta__catch--sm {
    font-size: 30px;
  }

  .cta__catch--xs {
    font-size: 26px;
  }

  .cta__catch + .cta__sub {
    margin-top: -16px;
  }

  .cta__sub {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .cta__links {
    flex-direction: column;
    gap: 24px;
  }

  .cta__link-inner {
    font-size: clamp(19px, 10.36px + 2.3vw, 22px);
    line-height: 1.4;
  }

  .cta--contact {
    padding: 60px 24px 48px;
  }

  .cta__contact {
    margin-top: 24px;
    padding-top: 20px;
  }

  .cta__link-arrow {
    width: clamp(21px, 16.43px + 1.22vw, 24px);
  }

  .cta__link-underline {
    height: 10px;
    margin-top: 2px;
    max-width: clamp(264px, 185.43px + 20.95vw, 328px);
  }
}

@media (max-width: 480px) {
  .cta__catch {
    font-size: clamp(22px, -6px + 8.75vw, 36px);
  }

  .cta__catch--sm {
    font-size: clamp(18px, -6px + 7.5vw, 30px);
  }

  .cta__catch--xs {
    font-size: clamp(16px, -4px + 6.25vw, 26px);
  }

  /* --sm: リンク部分やや縮小 */
  .cta--sm .cta__link-inner {
    font-size: clamp(16px, 8.36px + 2vw, 19px);
  }

  .cta--sm .cta__link-arrow {
    width: clamp(18px, 14px + 1vw, 21px);
  }

  .cta--sm .cta__link-underline {
    max-width: clamp(220px, 150px + 18vw, 264px);
  }

  /* --xs: リンク部分さらに縮小 */
  .cta--xs .cta__link-inner {
    font-size: clamp(14px, 7.2px + 1.75vw, 17px);
  }

  .cta--xs .cta__link-arrow {
    width: clamp(16px, 12px + 1vw, 18px);
  }

  .cta--xs .cta__link-underline {
    max-width: clamp(190px, 126px + 16.5vw, 240px);
  }
}


/* ==========================================================================
   page-hero.css — ページヒーロー（共通）
   使用: interview一覧 / merit-rating / benefits
   構成: 英字見出し + 日本語見出し + パンくず
   ========================================================================== */

.page-hero {
  padding-top: 176px; /* header固定62px + 間隔114px */
}

.page-hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 31px; /* 英字 → 日本語 */
}

.page-hero__en {
  font-family: "Caveat", cursive;
  font-size: 70px;
  font-weight: 400;
  line-height: 1;
  padding: 0.1em; /* Caveat筆記体がbackground-clip:textで切れる対策 */
}

.page-hero__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3.5px;
  color: var(--color-base);
  font-feature-settings: "palt";
}

/* パンくず: ヒーロー内、見出しの下 */
.page-hero .breadcrumb {
  margin-top: 52px; /* 日本語見出し → パンくず */
  padding-top: 0;
  text-align: left;
}

/* パンくずのcontainerをカード群と同じ幅に揃える */
.page-hero .breadcrumb .container {
  max-width: 1920px;
  padding: 0 150px;
}

@media (max-width: 1280px) {
  .page-hero {
    padding-top: 120px;
  }
}

@media (max-width: 1024px) {
  .page-hero {
    padding-top: 104px;
  }

  .page-hero__heading {
    gap: 20px;
  }

  .page-hero__en {
    font-size: 50px;
  }

  .page-hero__ja {
    font-size: 50px;
  }

  .page-hero .breadcrumb {
    margin-top: 36px;
  }

  .page-hero .breadcrumb .container {
    padding: 0 var(--site-padding);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 80px;
  }

  .page-hero__heading {
    gap: 16px;
  }

  .page-hero__en {
    font-size: 36px;
  }

  .page-hero__ja {
    font-size: 36px;
  }

  .page-hero .breadcrumb {
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding-top: 72px;
  }
}


/* ==========================================================================
   animations.css — スクロール連動 & ページ読み込みアニメーション
   対象: トップ / 会社概要 / 評価制度 / 福利厚生 / インタビュー一覧 / FAQ / ニュース一覧
   除外: 投稿詳細 / 募集一覧系 / お問い合わせ系
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. フェードイン基盤（IntersectionObserver で .is-visible 付与）
   -------------------------------------------------------------------------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: none;
}

/* ディレイ付きバリエーション（子要素の時間差表示用） */
/* その場フェードイン（移動なし） */
.fade-in-opacity {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.fade-in-opacity.is-visible {
  opacity: 1;
}

.fade-in-up--d1 { transition-delay: 0.1s; }
.fade-in-up--d2 { transition-delay: 0.2s; }
.fade-in-up--d3 { transition-delay: 0.3s; }
.fade-in-up--d4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   2. トップカバー — ページ読み込み時フェードイン
   -------------------------------------------------------------------------- */
@keyframes cover-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cover-illust-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.top-cover__heading {
  animation: cover-fade-in 0.8s ease-out both;
}

.top-cover__sub {
  animation: cover-fade-in 0.8s ease-out 0.15s both;
}

.top-cover__illust {
  animation: cover-illust-fade-in 0.8s ease-out 0.3s both;
}

.top-cover__buttons {
  animation: cover-fade-in 0.8s ease-out 0.45s both;
}

/* --------------------------------------------------------------------------
   3a. インタビュー詳細ヒーロー — ページ読み込み時
   -------------------------------------------------------------------------- */
@keyframes si-hero-text-in {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes si-hero-photo-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes si-hero-deco-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.si-hero__title {
  animation: si-hero-text-in 0.8s ease-out both;
}

.si-hero__photo-img {
  animation: si-hero-photo-in 0.9s ease-out 0.2s both;
}

.si-hero__deco--bl {
  animation: si-hero-deco-in 0.7s ease-out 0.5s both;
}

.si-hero__deco--tr {
  animation: si-hero-deco-in 0.7s ease-out 0.65s both;
}

/* --------------------------------------------------------------------------
   3b. ページヒーロー — ページ読み込み時フェードイン
   -------------------------------------------------------------------------- */
@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero__en {
  animation: hero-fade-in 0.6s ease-out both;
}

.page-hero__ja {
  animation: hero-fade-in 0.6s ease-out 0.15s both;
}

.page-hero .breadcrumb,
.si-hero__breadcrumb {
  animation: hero-fade-in 0.5s ease-out 0.3s both;
}

/* --------------------------------------------------------------------------
   4. セクション見出し — スクロール連動フェードイン
   -------------------------------------------------------------------------- */
.section-heading.fade-in-up .section-heading__en,
.section-heading.fade-in-up .section-heading__ja {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.section-heading.fade-in-up .section-heading__ja {
  transition-delay: 0.12s;
}

.section-heading.fade-in-up.is-visible .section-heading__en,
.section-heading.fade-in-up.is-visible .section-heading__ja {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   5. カード群 — スクロール連動スタガーフェードイン
   -------------------------------------------------------------------------- */
.stagger-fade-in > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1s ease, transform 1s ease;
}

.stagger-fade-in.is-visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-fade-in.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-fade-in.is-visible > *:nth-child(3) { transition-delay: 0.4s; }
.stagger-fade-in.is-visible > *:nth-child(4) { transition-delay: 0.55s; }
.stagger-fade-in.is-visible > *:nth-child(5) { transition-delay: 0.7s; }
.stagger-fade-in.is-visible > *:nth-child(6) { transition-delay: 0.85s; }

.stagger-fade-in.is-visible > * {
  opacity: 1;
  transform: none;
}

/* アニメーション完了後にスクロールアニメ用transitionのみ解除し、hover transitionは維持 */
.fade-in-up.is-animated {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}

.stagger-fade-in.is-animated > * {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-delay: 0s !important;
}

/* --------------------------------------------------------------------------
   6. 行ごとスタガー（row-stagger）— gridの行単位で左→右にフェードイン
   -------------------------------------------------------------------------- */
.row-stagger > *:not(.is-visible) {
  opacity: 0 !important;
  transform: translateY(12px) !important;
  transition: opacity 1s ease, transform 1s ease !important;
}

.row-stagger > *.is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   7. インタビューQ&A — 子要素の時間差フェードイン
   -------------------------------------------------------------------------- */
/* セクション・波形・背景は常に表示。子要素のみアニメーション */
.si-qa.fade-in-up {
  opacity: 1;
  transform: none;
  transition: none;
}

.si-qa.fade-in-up .si-qa__question-row,
.si-qa.fade-in-up .si-qa__answer,
.si-qa.fade-in-up .si-qa__summary,
.si-qa.fade-in-up .si-qa__deco {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.si-qa.fade-in-up .si-qa__question-row { transition-delay: 0.15s; }
.si-qa.fade-in-up .si-qa__answer       { transition-delay: 0.35s; }
.si-qa.fade-in-up .si-qa__deco         { transition-delay: 0.45s; }
.si-qa.fade-in-up .si-qa__summary      { transition-delay: 0.55s; }

.si-qa.fade-in-up.is-visible .si-qa__question-row,
.si-qa.fade-in-up.is-visible .si-qa__answer,
.si-qa.fade-in-up.is-visible .si-qa__summary,
.si-qa.fade-in-up.is-visible .si-qa__deco {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   7. FAQアコーディオン保護 — アニメーション完了後のtransition完全停止
   -------------------------------------------------------------------------- */
.faq-item.fade-in-up.is-animated {
  transition: none;
}

/* --------------------------------------------------------------------------
   7. インタビューカード — 画像ホバーズーム
   -------------------------------------------------------------------------- */
.interview-card__image img {
  transition: transform 0.5s ease;
}

.interview-card:hover .interview-card__image img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   9. アクセシビリティ — アニメーション無効化
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up,
  .fade-in-opacity,
  .stagger-fade-in > *,
  .row-stagger > *,
  .section-heading.fade-in-up .section-heading__en,
  .section-heading.fade-in-up .section-heading__ja {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .top-cover__heading,
  .top-cover__sub,
  .top-cover__illust,
  .top-cover__buttons,
  .page-hero__en,
  .page-hero__ja,
  .page-hero .breadcrumb,
  .si-hero__breadcrumb,
  .si-hero__title,
  .si-hero__photo-img,
  .si-hero__deco--bl,
  .si-hero__deco--tr {
    animation: none;
  }

  .interview-card__image img {
    transition: none;
  }
}


/* --- data.css (stub) --- */
/* ==========================================================================
   data.css — 数字でみる久
   ========================================================================== */

/* TODO: 実装時にスタイル追加 */


/* --- gallery.css (stub) --- */
/* ==========================================================================
   gallery.css — ギャラリー
   ========================================================================== */

/* TODO: 実装時にスタイル追加 */
