/* =========================================================
   健笑堂整骨院グループ 採用サイト — ブランドサイト化レイヤー（2案共通）
   styles.css（既存）の後に読み込み、上書きする。
   各案の違い（ファーストビュー／英字ラベル／WHY・研修・一日・キャリアの向き／背景の流れ）は theme.css 側。
   ========================================================= */

:root {
  /* --- Color ---------------------------------------------------- */
  --color-navy:        #1F3A4D;
  --color-navy-deep:   #132A3A;
  --color-navy-soft:   #3A5568;
  --color-orange:      #FB901E;   /* ロゴのオレンジと同色 */
  --color-orange-deep: #A85A09;   /* 小さな文字用（アイボリー上で4.6:1） */
  --color-orange-soft: #F8BE86;
  --color-bg:          #FAF6F0;   /* アイボリー（ロゴの白地となじむ明るさ） */
  --color-bg-white:    #FFFFFF;
  --color-text:        #2E2A26;   /* ロゴの文字（茶系）に寄せた暖色の黒 */
  --color-text-sub:    #6A625A;
  --color-line:        rgba(86, 62, 34, 0.16);
  --color-line-strong: rgba(86, 62, 34, 0.32);
  --color-line-light:  rgba(255, 255, 255, 0.16);

  /* --- Space ---------------------------------------------------- */
  --space-section:    clamp(88px, 10vw, 128px);
  --space-section-lg: clamp(96px, 12vw, 160px);
  --space-gutter:     clamp(20px, 3vw, 40px);
  --width-content:    1160px;

  /* --- Shape / Motion ------------------------------------------ */
  --radius:     4px;
  --radius-lg:  8px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.8s var(--ease);
  --transition-fast: 0.4s var(--ease);

  /* --- Type scale ---------------------------------------------- */
  --fs-h2:    clamp(30px, 4vw, 54px);
  --fs-h3:    clamp(22px, 2.4vw, 32px);
  --fs-body:  15.5px;
  --fs-small: 13px;
  --fs-label: 12px;

  /* 既存 styles.css の変数を新しい値に揃える */
  --navy-700: var(--color-navy);
  --navy-800: var(--color-navy-deep);
  --navy-900: #0E2230;
  --orange-500: var(--color-orange);
  --orange-600: var(--color-orange-deep);
  --orange-400: var(--color-orange-soft);
  --ink: var(--color-text);
  --ink-body: var(--color-text);
  --ink-mute: var(--color-text-sub);
  --hairline: var(--color-line);
  --cream: var(--color-bg);
  --r-sm: var(--radius);
  --r-md: var(--radius-lg);
  --r-lg: var(--radius-lg);
  --sh-card: none;
  --sh-card-hover: none;
  --sh-navy: none;
  --sh-cta: none;
}

html { scroll-padding-top: 80px; }
body { font-size: var(--fs-body); color: var(--color-text); }
body::before { opacity: 0.03; }

/* ===== 余白・見出しの共通ルール ===== */
.section { padding: var(--space-section) var(--space-gutter); }
#reasons, #message, #roadmap, #interview { padding-top: var(--space-section-lg); padding-bottom: var(--space-section-lg); }
.wrap { padding: 0; }
.h2 { font-size: var(--fs-h2); line-height: 1.3; letter-spacing: 0.01em; font-weight: 900; }
.h2-narrow, .h2-wide { max-width: 900px; }
.h2-small { font-size: var(--fs-h2); }
.section-lead { font-size: var(--fs-body); line-height: 2; color: var(--color-text-sub); max-width: 620px; margin-top: 28px; }
.footnote { font-family: var(--font-jp); font-size: 12px; margin-top: 28px; }
.center-cta { margin-top: clamp(56px, 7vw, 88px); }

/* ===== ボタン：グラデーションと影をやめ、平らな面＋矢印の小さな動きに ===== */
.btn { font-weight: 700; transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast); }
.btn:hover { transform: none; }
.btn-primary { background: var(--color-orange); box-shadow: none; }
.btn-primary:hover { background: var(--color-orange-deep); }
.btn-line { background: var(--line-green); }
.btn-line:hover { background: var(--line-green-dark); }
.btn-lg.btn-primary::after, .btn-xl.btn-primary::after, .center-cta .btn-primary::after,
.btn-lg.btn-line::after, .btn-xl.btn-line::after, .center-cta .btn-line::after {
  content: "→"; display: inline-block; margin-left: 0.7em; font-weight: 500;
  transition: transform var(--transition-fast);
}
.btn-primary:hover::after, .btn-line:hover::after { transform: translateX(4px); }

/* ===== ヘッダー：低く、スクロール後だけ半透明の白に ===== */
.site-header { background: var(--color-bg-white); border-bottom: 1px solid transparent; transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast); }
.is-subpage .site-header { background: rgba(255, 255, 255, 0.9); }
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--color-line);
  box-shadow: 0 1px 12px rgba(18, 40, 58, 0.04);
}
.header-inner { height: 68px; padding: 0 var(--space-gutter); }
.logo-badge { width: 32px; height: 32px; font-size: 17px; border-radius: var(--radius); }
.logo-text { font-size: 15.5px; }
.logo-sub { font-size: 10px; }
.desk-nav { gap: 24px; font-size: 13.5px; }
.head-cta { min-height: 38px; padding: 8px 16px; font-size: 13px; }
.head-cta.btn-primary::after, .head-cta.btn-line::after { content: none; }

/* ===== ファーストビュー下の数字：箱ではなく、数字そのものを主役に ===== */
.hero-facts {
  background: var(--color-navy);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: clamp(36px, 4.4vw, 56px) max(var(--space-gutter), calc((100% - var(--width-content)) / 2));
}
.hero-facts > div { text-align: left; padding: 0 clamp(16px, 2.6vw, 40px); }
.hero-facts > div:first-child { padding-left: 0; }
.hero-facts > div + div { border-left: 1px solid var(--color-line-light); }
.hero-facts dt { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.6); }
.hero-facts dd {
  margin-top: 14px; font-family: var(--font-en); font-weight: 400;
  font-size: clamp(46px, 5.6vw, 80px); line-height: 0.9; letter-spacing: -0.01em; color: var(--color-bg-white);
}
.hero-facts dd small { font-size: clamp(13px, 1.2vw, 16px); font-weight: 500; color: var(--color-orange-soft); margin: 0 4px; }

/* ===== 流れるコピー：広告帯ではなく、背景に溶ける大きな文字に ===== */
.marquee { background: transparent; padding: clamp(36px, 5vw, 72px) 0; }
.marquee-track { animation-duration: 120s; }
.marquee-track span {
  font-size: clamp(44px, 7.4vw, 112px); font-weight: 900; line-height: 1.1;
  color: var(--color-navy); opacity: 0.06; padding-right: 0.8em;
}
.marquee-track span::after { content: none; }

/* ===== EMPATHY：チェックリストではなく、短い文の一覧＋導入コピー ===== */
.empathy-items {
  list-style: none; margin: clamp(48px, 6vw, 72px) 0 0; padding: 0; counter-reset: emp;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: clamp(28px, 4vw, 56px);
}
.empathy-items li {
  counter-increment: emp; border-top: 1px solid var(--color-line); padding: 24px 0 32px;
  font-family: var(--font-dis); font-weight: 700; font-size: clamp(16px, 1.5vw, 18px); line-height: 1.7;
  color: var(--color-navy); word-break: auto-phrase;
}
.empathy-items li::before {
  content: counter(emp, decimal-leading-zero); display: block; margin-bottom: 12px;
  font-family: var(--font-en); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.12em; color: var(--color-orange-deep);
}
.empathy-bridge {
  margin-top: clamp(80px, 10vw, 136px);
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: end;
}
.bridge-copy {
  font-family: var(--font-dis); font-weight: 900; color: var(--color-navy);
  font-size: clamp(38px, 5.6vw, 76px); line-height: 1.18; letter-spacing: 0.01em;
}
.bridge-text { font-size: var(--fs-body); line-height: 2.05; color: var(--color-text-sub); max-width: 460px; }
.bridge-text .accent-text { color: var(--color-navy); font-weight: 700; background: linear-gradient(transparent 68%, rgba(242, 107, 29, 0.2) 0); }

/* ===== WHY KENSHODO（共通部分。並べ方は theme.css） ===== */
.why-list { list-style: none; margin: clamp(72px, 9vw, 120px) 0 0; padding: 0; display: flex; flex-direction: column; gap: clamp(96px, 12vw, 160px); }
.why-item { display: grid; column-gap: clamp(40px, 6vw, 104px); align-items: center; }
.why-num {
  display: block; font-family: var(--font-en); font-weight: 300; color: var(--color-orange);
  font-size: clamp(96px, 12vw, 176px); line-height: 0.78; letter-spacing: -0.03em;
}
.why-title {
  font-weight: 900; color: var(--color-navy); font-size: clamp(26px, 3vw, 40px);
  line-height: 1.35; margin: clamp(24px, 3vw, 36px) 0 20px; text-wrap: balance; word-break: auto-phrase;
}
.why-desc { font-size: var(--fs-body); line-height: 2.05; color: var(--color-text); max-width: 480px; }
.why-note { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--color-line); max-width: 480px; }
.why-photo { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--color-bg); }
.why-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1s var(--ease); }
.why-photo:hover img { transform: scale(1.02); }
/* 補足情報は枠を持たせず、小さな文字で添える */
.proof-label { font-size: var(--fs-label); letter-spacing: 0.06em; color: var(--color-text-sub); margin-bottom: 12px; }
.proof-tags { gap: 8px; }
.proof-tags li { background: transparent; border: 1px solid var(--color-line-strong); color: var(--color-navy); font-weight: 500; font-size: var(--fs-small); padding: 6px 13px; }
.proof-flow li { color: var(--color-navy); font-weight: 700; font-size: 14px; }
.proof-big { font-size: 14px; font-weight: 500; color: var(--color-text-sub); }
.proof-big strong { font-weight: 400; font-size: 56px; color: var(--color-navy); }
.proof-text { font-size: 14px; line-height: 1.9; color: var(--color-text-sub); }
.proof-link { font-family: var(--font-dis); font-size: 14px; color: var(--color-orange-deep); }

/* ===== MESSAGE（共通部分） ===== */
#message .wrap { max-width: var(--width-content); }
.message-layout { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(48px, 8vw, 128px); align-items: start; }
.message-photo img { aspect-ratio: 3 / 4; border-radius: var(--radius); box-shadow: none; object-position: 63% center; }
.message-text .h2 { font-size: clamp(36px, 4.8vw, 68px); line-height: 1.24; }
.message-body { max-width: 700px; margin-top: clamp(40px, 5vw, 64px); gap: 1.4em; }
.message-body p { font-size: var(--fs-body); line-height: 2.15; }
.message-sign {
  margin-top: clamp(48px, 6vw, 72px); text-align: left;
  display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 20px; row-gap: 6px;
  font-size: clamp(22px, 2.4vw, 28px); letter-spacing: 0.08em;
}
.message-sign::before { content: ""; width: 48px; height: 1px; background: currentColor; opacity: 0.5; align-self: center; }
.message-sign span { display: inline; margin: 0; font-size: var(--fs-small); letter-spacing: 0.06em; }

/* ===== EDUCATION ROADMAP（共通部分。縦／横は theme.css） ===== */
#roadmap .h2 { font-size: clamp(34px, 4.8vw, 64px); max-width: 960px; }
.roadmap { position: relative; margin-top: clamp(64px, 8vw, 104px); }
.roadmap-line { position: absolute; background: var(--color-line); pointer-events: none; }
.roadmap-line-fill { position: absolute; inset: 0; background: var(--color-orange); transition: transform 1s var(--ease); }
.stage-list { list-style: none; margin: 0; padding: 0; }
.stage { position: relative; }
.stage::before {
  content: ""; position: absolute; width: 11px; height: 11px; border-radius: 50%;
  background: var(--color-bg-white); border: 2px solid var(--color-orange); box-sizing: border-box; z-index: 1;
}
.stage-no { display: block; font-family: var(--font-en); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.18em; color: var(--color-orange-deep); }
.stage-period { font-weight: 900; color: var(--color-navy); font-size: clamp(26px, 2.8vw, 38px); line-height: 1.2; margin: 10px 0 0; }
.stage-keywords { list-style: none; margin: 0; padding: 0; font-size: var(--fs-small); color: var(--color-text-sub); line-height: 1.9; }
.stage-keywords li { display: inline; }
.stage-keywords li + li::before { content: "／"; margin: 0 4px; color: var(--color-line-strong); }
.stage-details { margin: 0; }
.stage-details dt { font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--color-navy-soft); }
.stage-details dd { margin: 4px 0 0; font-size: 14px; line-height: 1.75; color: var(--color-text); }

/* ===== SKILLS（共通部分） ===== */
.skill-list { list-style: none; margin: clamp(56px, 7vw, 88px) 0 0; padding: 0; }
.skill-no { display: block; font-family: var(--font-en); font-weight: 300; font-size: clamp(44px, 4.4vw, 60px); line-height: 0.9; color: var(--color-orange); letter-spacing: -0.02em; }
.skill-name { font-weight: 900; color: var(--color-navy); font-size: clamp(19px, 1.7vw, 22px); line-height: 1.4; margin: 20px 0 6px; }
.skill-lead { font-size: var(--fs-small); color: var(--color-text-sub); line-height: 1.7; }
.skill-points { list-style: none; margin: 20px 0 0; padding: 0; }
.skill-points li { font-size: 14px; line-height: 1.6; color: var(--color-text); padding: 10px 0; border-top: 1px solid var(--color-line); }

/* ===== INTERVIEW：写真とタイトルを主役に、枠と影は最小限 ===== */
.interview-nav-wrap { margin-top: clamp(56px, 7vw, 88px); }
.interview-grid { gap: clamp(20px, 2.6vw, 36px); }
.interview-card { flex-basis: clamp(280px, 30vw, 360px); background: transparent; border: none; border-radius: 0; box-shadow: none; overflow: visible; }
.interview-card:hover { transform: none; box-shadow: none; }
.interview-photo { height: auto; border-radius: var(--radius); overflow: hidden; }
.interview-photo img { aspect-ratio: 4 / 5; height: auto; transition: transform 1s var(--ease); }
.interview-card:hover .interview-photo img { transform: scale(1.02); }
.interview-card:not(:has(.interview-photo))::before { height: auto; aspect-ratio: 4 / 5; border-radius: var(--radius); }
.interview-body { padding: 24px 0 0; }
.tag { padding: 0; background: none; font-family: var(--font-en), var(--font-dis); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.06em; color: var(--color-orange-deep); }
.interview-body h3 { font-weight: 900; font-size: clamp(20px, 1.9vw, 24px); line-height: 1.5; margin: 12px 0 16px; word-break: auto-phrase; }
.interview-meta { font-size: 12.5px; line-height: 1.8; }
.interview-toggle {
  margin: 18px 0 0; padding: 0; border: none; justify-content: flex-start;
  font-size: 13.5px; color: var(--color-navy); gap: 6px; background: none;
}
.interview-toggle:hover { background: none; color: var(--color-orange-deep); }
.interview-nav { top: calc(clamp(280px, 30vw, 360px) * 0.62); box-shadow: none; }
.carousel-dots { margin-top: 36px; }

/* ===== CULTURE：同じ枚数の写真を、大小を混ぜた雑誌風グリッドで ===== */
.culture-facts { margin-top: clamp(56px, 7vw, 80px); border-top: 1px solid var(--color-line-strong); }
.culture-fact h3::before { width: 16px; height: 2px; }
.culture-mosaic {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(84px, 8.6vw, 124px); grid-auto-flow: row dense; gap: clamp(8px, 1vw, 14px);
  margin-top: clamp(48px, 6vw, 72px);
}
.culture-mosaic:not(:has(figure)) { display: none; }
.culture-mosaic figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--color-bg); grid-column: span 4; grid-row: span 2; }
/* 人物が切れないよう、横長の写真は横長のマス、縦長の写真（誕生日）だけ縦長のマスに置く */
.culture-mosaic figure:nth-child(1) { grid-column: 1 / 8;   grid-row: 1 / 5; }  /* 集合写真（大・横長） */
.culture-mosaic figure:nth-child(2) { grid-column: 8 / 13;  grid-row: 1 / 3; }  /* 横長 */
.culture-mosaic figure:nth-child(3) { grid-column: 8 / 13;  grid-row: 3 / 5; }  /* 横長 */
.culture-mosaic figure:nth-child(4) { grid-column: 1 / 6;   grid-row: 5 / 7; }  /* 横長 */
.culture-mosaic figure:nth-child(5) { grid-column: 6 / 10;  grid-row: 5 / 9; }  /* 縦長（誕生日）：写真の比率に合わせた枠 */
.culture-mosaic figure:nth-child(6) { grid-column: 10 / 13; grid-row: 5 / 7; }  /* 横長 */
.culture-mosaic figure:nth-child(7) { grid-column: 1 / 6;   grid-row: 7 / 9; }  /* 横長 */
.culture-mosaic figure:nth-child(8) { grid-column: 10 / 13; grid-row: 7 / 9; }  /* 横長 */
/* 人物が切れないよう、写真ごとに見せたい位置を指定する */
.culture-mosaic figure:nth-child(1) img { object-position: center 62%; }
.culture-mosaic figure:nth-child(5) img { object-position: center 40%; }
.culture-mosaic figure:nth-child(7) img { object-position: center 42%; }
.culture-mosaic figure:nth-child(4) img { object-position: center 45%; }
.culture-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.culture-mosaic figure:hover img { transform: scale(1.03); }
.culture-mosaic figure::after { content: ""; position: absolute; inset: auto 0 0 0; height: 40%; background: linear-gradient(transparent, rgba(14, 34, 48, 0.42)); pointer-events: none; }
.culture-mosaic figcaption {
  position: absolute; left: 12px; bottom: 10px; right: 12px; z-index: 1;
  color: var(--color-bg-white); font-size: 11.5px; font-weight: 500; line-height: 1.4; letter-spacing: 0.02em;
}

/* ===== STAFF BLOG：主役ではないので、小さく・静かに ===== */
#blog { padding-top: var(--space-section); padding-bottom: var(--space-section); }
#blog .h2 { font-size: clamp(24px, 2.6vw, 34px); }
#blog .section-lead { font-size: 14px; margin-top: 16px; }
#blog .post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); margin-top: 40px; }
#blog .post-card { border: none; border-radius: 0; background: transparent; box-shadow: none; }
#blog .post-card:hover { transform: none; }
#blog .post-card-thumb { aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; }
#blog .post-card-body { padding: 16px 0 0; }
#blog .post-card-body h3 { font-size: 15.5px; margin: 6px 0 8px; }
#blog .post-excerpt { font-size: 13px; }
#blog .post-card-foot { padding: 12px 0 0; margin-top: 12px; }
#blog .post-cover-en { font-size: clamp(44px, 4.6vw, 60px); }
#blog .center-cta { margin-top: 40px; justify-content: flex-start; }
#blog .center-cta .btn { background: transparent; color: var(--color-navy); border: 1px solid var(--color-line-strong); min-height: 48px; padding: 12px 24px; font-size: 14px; }
#blog .center-cta .btn:hover { border-color: var(--color-navy); }
.post-card { box-shadow: none; }

/* ===== A DAY（共通部分） ===== */
.day-list { list-style: none; margin: clamp(56px, 7vw, 88px) 0 0; padding: 0; position: relative; }
.day-item { position: relative; }
.day-item::before {
  content: ""; position: absolute; width: 11px; height: 11px; border-radius: 50%; box-sizing: border-box;
  background: var(--color-navy); border: 2px solid var(--color-orange-soft); z-index: 1;
}
.day-clock { display: block; font-family: var(--font-en); font-weight: 400; color: var(--color-bg-white); line-height: 1; letter-spacing: 0.01em; }
.day-task { display: block; color: rgba(255, 255, 255, 0.82); font-size: 15px; line-height: 1.6; }

/* ===== CAREER（共通部分：線と矢印だけの図） ===== */
.career-map { margin-top: clamp(56px, 7vw, 88px); }
.career-label { font-family: var(--font-dis); font-size: var(--fs-small); font-weight: 700; letter-spacing: 0.08em; color: var(--color-text-sub); margin-bottom: 20px; }
.career-steps, .career-options { list-style: none; margin: 0; padding: 0; }
.career-steps li {
  position: relative; font-family: var(--font-dis); font-weight: 700; color: var(--color-navy); font-size: 17px; line-height: 1.4;
  border: 1px solid var(--color-line-strong); border-radius: var(--radius); background: var(--color-bg-white); padding: 16px 20px;
}
.career-steps li:last-child { background: var(--color-navy); border-color: var(--color-navy); color: var(--color-bg-white); }
.career-options li { position: relative; font-size: 15px; line-height: 1.6; color: var(--color-text); }
.career-note { font-size: 14.5px; margin-top: clamp(40px, 5vw, 64px); }

/* ===== 下層の情報セクション：箱を減らして、線と余白で整える ===== */
.stats-grid { gap: 0; margin-top: clamp(48px, 6vw, 72px); grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--color-line-strong); }
.stat-card { background: none; border: none; border-radius: 0; box-shadow: none; padding: 28px 16px 32px 0; border-bottom: 1px solid var(--color-line); }
.stat-card:hover { transform: none; box-shadow: none; }
.stat-label { font-size: var(--fs-label); letter-spacing: 0.04em; }
.stat-value { font-weight: 400; font-size: clamp(40px, 4.4vw, 60px); line-height: 0.95; margin-top: 8px; }
.stat-unit { font-size: 13px; color: var(--color-orange-deep); }

.benefits-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 clamp(20px, 3vw, 40px); margin-top: clamp(48px, 6vw, 64px); }
.benefit-item { background: none; border: none; border-bottom: 1px solid var(--color-line); border-radius: 0; padding: 14px 0; font-size: 14.5px; }
.check { background: none; width: auto; height: auto; color: var(--color-orange); font-size: 12px; }
.uturn-block { margin-top: clamp(64px, 8vw, 96px); background: var(--color-bg); border: none; border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 64px); }
.uturn-badge { background: none; color: var(--color-orange-deep); padding: 0; font-size: var(--fs-label); letter-spacing: 0.1em; }
.uturn-head h3 { font-size: clamp(24px, 2.8vw, 34px); margin-top: 12px; }
.uturn-grid { gap: 0 clamp(20px, 3vw, 36px); margin-top: 36px; }
.uturn-item { background: none; box-shadow: none; border-radius: 0; border-top: 1px solid var(--color-line-strong); padding: 20px 0 0; }
.uturn-item h4 { color: var(--color-navy); }

.fit-grid { gap: clamp(32px, 5vw, 72px); margin-top: clamp(48px, 6vw, 64px); }
.fit-card, .fit-card-yes, .fit-card-no { background: none; border: none; border-top: 2px solid var(--color-navy); border-radius: 0; box-shadow: none; padding: 28px 0 0; }
.fit-card-no { border-top-color: var(--color-line-strong); }

.req-table { border: none; border-top: 1px solid var(--color-line-strong); border-radius: 0; margin-top: clamp(48px, 6vw, 64px); }
.req-row:nth-child(even) { background: none; }
.req-label { background: none; font-size: 13.5px; padding-left: 0; }
.req-value { font-size: 14.5px; }

.faq-list { margin-top: clamp(48px, 6vw, 64px); gap: 0; border-top: 1px solid var(--color-line-strong); }
.faq-item { background: none; border: none; border-bottom: 1px solid var(--color-line); border-radius: 0; }
.faq-toggle { padding: 22px 0; }
.faq-answer { padding: 0 0 22px 34px; }

.flow-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 clamp(20px, 3vw, 40px); margin-top: clamp(48px, 6vw, 64px); }
.flow-card:last-child { grid-column: 1 / -1; }
.flow-card { background: none; border: none; border-top: 1px solid var(--color-line-strong); border-radius: 0; box-shadow: none; padding: 22px 20px 26px 0; }
.flow-step { background: none; color: var(--color-orange-deep); width: auto; height: auto; font-size: 13px; letter-spacing: 0.1em; font-weight: 500; }
.flow-step::before { content: "STEP "; }
.flow-note { background: none; border: none; border-left: 2px solid var(--color-orange); border-radius: 0; padding: 4px 0 4px 18px; margin-top: 40px; }
.flow-note-mark { display: none; }
.flow-note p { color: var(--color-text); }

/* ===== 最終CTA：「まずは院見学から」をページの締めに ===== */
.final-cta { background: var(--color-navy-deep); }
.final-bg { opacity: 0.5; filter: grayscale(0.15); }
.final-cta:has(.final-bg) .final-overlay { background: linear-gradient(180deg, rgba(19, 42, 58, 0.72), rgba(19, 42, 58, 0.9)); }
.final-inner { max-width: var(--width-content); padding: clamp(112px, 14vw, 200px) var(--space-gutter); }
.final-label { font-family: var(--font-en); font-size: var(--fs-label); letter-spacing: 0.24em; color: var(--color-orange-soft); margin-bottom: 28px; }
.final-inner h2 { font-size: clamp(36px, 5.6vw, 80px); line-height: 1.22; letter-spacing: 0.01em; word-break: auto-phrase; }
.final-inner > p:not(.final-label) { font-size: var(--fs-body); color: rgba(255, 255, 255, 0.74); max-width: 620px; margin-top: 32px; }
.final-ctas { margin-top: 48px; }
.final-cta::after { content: none; }

/* ===== 控えめなアニメーション（JSが .has-reveal を付けたときだけ有効） ===== */
.has-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--transition), transform var(--transition); }
.has-reveal .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .has-reveal .reveal { opacity: 1; transform: none; transition: none; }
  .roadmap-line-fill, .why-photo img, .culture-mosaic img, .interview-photo img, .btn-primary::after { transition: none !important; }
  .marquee-track { animation: none; }
}

/* ===== レスポンシブ（共通） ===== */
@media (max-width: 1080px) {
  .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  :root { --space-section: 80px; --space-section-lg: 96px; }
  .section { padding: var(--space-section) 20px; }
  .header-inner { height: 62px; }
  .hero-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 8px 20px; }
  .hero-facts > div { padding: 22px 0 22px 18px; }
  .hero-facts > div:nth-child(odd) { padding-left: 0; border-left: none; }
  .hero-facts > div:nth-child(n+3) { border-top: 1px solid var(--color-line-light); }
  .hero-facts dd { font-size: 44px; margin-top: 10px; }
  .empathy-items { grid-template-columns: 1fr; }
  .empathy-items li { padding: 18px 0 20px; }
  .empathy-bridge { grid-template-columns: 1fr; gap: 24px; }
  .message-layout { grid-template-columns: 1fr; gap: 40px; }
  .culture-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 132px; }
  .culture-mosaic figure, .culture-mosaic figure:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; }
  .culture-mosaic figure:nth-child(3n+1) { grid-column: span 2 !important; grid-row: span 2 !important; }
  #blog .post-grid { grid-template-columns: 1fr; }
  #blog .post-card { display: grid; grid-template-columns: 120px minmax(0, 1fr); column-gap: 16px; align-items: start; }
  #blog .post-card-thumb { aspect-ratio: 1; grid-row: span 2; }
  #blog .post-card-thumb .post-cat, #blog .post-cover-icon, #blog .post-cover-en { display: none; }
  #blog .post-card-body { padding-top: 0; }
  #blog .post-excerpt { display: none; }
  #blog .post-card-foot { padding-top: 0; margin-top: 4px; border-top: none; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid, .stats-grid-footnote { display: grid; }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .uturn-grid { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: 1fr; }
  .interview-card { flex-basis: 78%; }
  .interview-nav { display: none; }
  .final-inner h2 { font-size: clamp(30px, 8.4vw, 44px); }
  /* 主CTAはスマホでも1行に収める */
  .btn-lg, .btn-xl { font-size: 15px; padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 560px) {
  .empathy-items li { font-size: 16px; }
  .bridge-copy { font-size: clamp(34px, 10vw, 44px); }
  .benefits-grid { grid-template-columns: 1fr; }
}


/* =========================================================
   仕上げ：細部の精度を上げる（余白・罫線・字詰め・状態表現）
   ========================================================= */

/* 文字選択とキーボード操作時の見え方 */
::selection { background: var(--color-orange-soft); color: var(--color-navy); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--color-orange); outline-offset: 3px; border-radius: 2px; }
img { background: var(--color-bg); }

/* 和文の大きな見出しは字間をわずかに詰める */
.h2, .why-title, .bridge-copy, .final-inner h2, .stage-period { letter-spacing: -0.01em; }

/* WHY：項目の区切りを細い罫線で示し、編集記事のようなリズムにする */
.why-list { gap: clamp(64px, 8vw, 104px); }
.why-item + .why-item { border-top: 1px solid var(--color-line); padding-top: clamp(64px, 8vw, 104px); }

/* NUMBERS：列を細い縦罫で仕切り、数値表としての精度を出す */
.stat-card { border-left: 1px solid var(--color-line); padding: 28px 20px 32px 24px; }
.stats-grid > .stat-card:nth-child(5n+1) { border-left: none; padding-left: 0; }

/* 募集要項：ラベルを小さく、値を読みやすく */
.req-label { flex: 0 0 190px; min-width: 150px; font-size: 13px; letter-spacing: 0.04em; padding: 20px 24px 20px 0; }
.req-value { font-size: 15px; padding: 20px 0; }
.req-row { transition: background var(--transition-fast); }
.req-row:hover { background: rgba(31, 58, 77, 0.025); }
.req-note { font-size: 12.5px; }

/* FAQ：質問を少し大きく、開閉記号はアクセント色に */
.faq-question { font-size: 16px; }
.faq-toggle .chev { color: var(--color-orange); font-size: 18px; }
.faq-toggle:hover .faq-question { color: var(--color-orange-deep); }

/* インタビュー：見出しと写真の関係を強め、ホバーで小さく反応させる */
.interview-card:hover .interview-body h3 { color: var(--color-orange-deep); }
.interview-body h3 { transition: color var(--transition-fast); }

/* フッター：情報の階層を整える */
.site-footer { background: var(--color-navy-deep); padding: clamp(72px, 8vw, 104px) var(--space-gutter) 36px; }
.footer-cols { gap: clamp(32px, 5vw, 72px); }
.footer-col-title { font-family: var(--font-en); font-size: 11.5px; font-weight: 500; letter-spacing: 0.18em; color: rgba(255, 255, 255, 0.5) !important; margin-bottom: 18px; }
.footer-col a { font-size: 13.5px; color: rgba(255, 255, 255, 0.78); margin-bottom: 13px; transition: color var(--transition-fast); }
.footer-col a:hover { color: var(--color-bg-white); text-decoration: underline; text-underline-offset: 4px; }
.footer-col-main p { font-size: 13px; line-height: 1.95; color: rgba(255, 255, 255, 0.7); }
.footer-logo-text { font-size: 17px; }
.footer-bottom {
  margin-top: clamp(48px, 6vw, 72px); padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-en); font-size: 12px; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.5);
}

/* 画面が狭いときのヘッダー：メニューが2行に折り返さないよう詰める */
@media (max-width: 1200px) {
  .header-inner { gap: 12px; }
  .header-right { gap: 18px; }
  .desk-nav { gap: 15px; font-size: 12.5px; }
  .head-cta { font-size: 12px; padding: 8px 12px; min-height: 36px; }
  .logo-text { font-size: 14.5px; }
}

/* ===== モバイルの仕上げ（実機確認で見つかった2点） ===== */
@media (max-width: 1080px) {
  /* 3列のときも、左端の列だけ縦罫を外す */
  .stats-grid > .stat-card:nth-child(5n+1) { border-left: 1px solid var(--color-line); padding-left: 24px; }
  .stats-grid > .stat-card:nth-child(3n+1) { border-left: none; padding-left: 0; }
}
@media (max-width: 860px) {
  /* 2列のときは、右側の列にだけ縦罫を入れる（新卒・中途比率／年間休日の間の抜けを解消） */
  .stats-grid > .stat-card,
  .stats-grid > .stat-card:nth-child(5n+1),
  .stats-grid > .stat-card:nth-child(3n+1) { border-left: none; padding: 22px 14px 26px 0; }
  .stats-grid > .stat-card:nth-child(even) { border-left: 1px solid var(--color-line); padding-left: 18px; }

  /* 下部固定バーは1つのボタンに集約（2分割だと端末やバッジで欠けて見えるため）。
     電話番号は募集要項・最終CTA・フッターから発信できる */
  .mobile-bar { grid-template-columns: 1fr; }
  .mbar-tel { display: none; }
  .mbar-line { font-size: 15px; }
}

/* フッターのロゴ：紺地では文字が沈むため、白い下地の上に置く */
.footer-logo { margin-bottom: 18px; }
.footer-logo-img { height: 54px; width: auto; display: block; background: var(--color-bg-white); padding: 9px 14px; border-radius: var(--radius); }
@media (max-width: 560px) { .footer-logo-img { height: 46px; } }
