/* =========================================================
   健笑堂整骨院グループ 採用サイト
   Design system v2
   - 配色は3系統に整理（ネイビー／オレンジ／中立）＋LINE緑
   - 書体は3層（和文本文／和文見出し／欧文ディスプレイ）
   - 見出しは大きく・行間を詰める
   - 角丸・余白はトークンで統一
   ========================================================= */

:root {
  /* --- Brand --------------------------------------------------- */
  --navy-900: #12283A;
  --navy-800: #17303F;
  --navy-700: #1F3A4D;
  --navy-600: #2C4A5D;

  --orange-600: #D95D16;
  --orange-500: #F26B1D;
  --orange-400: #F7A878;
  --orange-50:  #FFF1E7;

  --green-600: #3F7D5A;
  --green-50:  #EEF4EF;
  --line-green: #16A34A;      /* 白文字とのコントラスト確保のため公式緑より濃度を上げている */
  --line-green-dark: #128A3E;

  /* --- Neutral ------------------------------------------------- */
  --ink:      #27313A;
  --ink-body: #3E4850;
  --ink-mute: #66717A;
  --hairline: #E7E2DC;
  --cream:    #FBF4EC;
  --white:    #FFFFFF;

  /* --- Type ---------------------------------------------------- */
  --font-jp:  'Noto Sans JP', sans-serif;
  --font-dis: 'Zen Kaku Gothic New', sans-serif;
  --font-en:  'Jost', 'Zen Kaku Gothic New', sans-serif;

  /* --- Radius -------------------------------------------------- */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-pill: 999px;

  /* --- Elevation（v3：影を1層→2層に。輪郭を締める薄い影＋奥行きを作る広い影） --- */
  --sh-card: 0 1px 2px rgba(18, 40, 58, 0.06), 0 14px 30px -14px rgba(18, 40, 58, 0.22);
  --sh-card-hover: 0 2px 4px rgba(18, 40, 58, 0.08), 0 22px 44px -16px rgba(18, 40, 58, 0.28);
  --sh-cta:  0 3px 6px rgba(217, 93, 22, 0.22), 0 14px 28px -8px rgba(242, 107, 29, 0.4);
  --sh-navy: 0 20px 44px -18px rgba(18, 40, 58, 0.5);

  /* --- Rhythm -------------------------------------------------- */
  --sec-pad: clamp(64px, 8.5vw, 112px);
}

/* ===== Reset & base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--ink-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.85;
  overflow-x: hidden;
  position: relative;
}
/* 全面にごく薄いグレインを重ねる（ベタ塗りの"デジタル感"を消す定番手法） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
img { max-width: 100%; display: block; }
/* 写真の色調補正（無編集のフラットな見た目を避ける） */
.hero-photo img, .message-photo img, .reason-photo img, .culture-gallery img, .final-bg,
.interview-photo img, .post-card-thumb img, .post-eyecatch img {
  filter: saturate(1.12) contrast(1.05);
}
a { color: var(--orange-600); text-decoration: none; }
a:hover { color: var(--orange-500); }
h1, h2, h3 { font-family: var(--font-dis); margin: 0; }
p { margin: 0; }
button { font-family: inherit; }

.wrap { margin: 0 auto; padding: 0 20px; }
.wrap-820  { max-width: 820px; }
.wrap-900  { max-width: 900px; }
.wrap-1000 { max-width: 1000px; }
.wrap-1080 { max-width: 1080px; }
.wrap-1120 { max-width: 1120px; }
.wrap-1160 { max-width: 1160px; }

.section { padding: var(--sec-pad) 20px; position: relative; }
.section-cream { background: linear-gradient(175deg, #FEFBF7 0%, var(--cream) 55%, #F6ECDF 100%); }
.section-navy  {
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(242, 107, 29, 0.10), transparent 60%),
    linear-gradient(160deg, var(--navy-600) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
}

/* ===== Section head（欧文ディスプレイ＋和文見出し） =====
   PC：欧文を大きな透かしとして敷き、和文見出しをその下端に食い込ませる
   SP：欧文は小さなラベルに切り替える（透かしは小さくすると読めないため） */
.sec-en {
  display: block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(26px, 6.2vw, 72px);
  line-height: 0.86;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--navy-700);
  opacity: 0.11;
  margin: 0 0 -0.14em;
  pointer-events: none;
  user-select: none;
}
.sec-en-light { color: var(--white); opacity: 0.15; }

.h2 {
  font-weight: 900;
  color: var(--navy-700);
  font-size: clamp(27px, 4.4vw, 46px);
  line-height: 1.26;
  letter-spacing: 0.01em;
  text-wrap: balance;
  word-break: auto-phrase;
}
.h2-narrow { max-width: 760px; }
/* PC用の手動改行は、狭い画面では文節改行（auto-phrase）に任せる */
@media (max-width: 560px) { .h2 br { display: none; } }
.h2-wide   { max-width: 820px; }
.h2-small  { font-size: clamp(25px, 3.9vw, 40px); line-height: 1.3; }
.h2-light  { color: var(--white); }

.section-lead {
  font-size: 16.5px;
  line-height: 1.95;
  color: var(--ink-mute);
  margin: 20px 0 0;
  max-width: 700px;
}
.section-subhead {
  font-family: var(--font-dis);
  font-weight: 700;
  font-size: 15px;
  color: var(--orange-600);
  margin: 16px 0 0;
}
.footnote {
  font-family: var(--font-en);
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: var(--ink-mute);
  margin: 18px 0 0;
  line-height: 1.7;
}
.footnote-light { color: rgba(255, 255, 255, 0.55); }

.accent-text { color: var(--orange-400); }

/* ===== Marquee band（区切りのリズムをつくる帯） ===== */
.marquee {
  overflow: hidden;
  background: var(--navy-700);
  padding: 15px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}
.marquee-track span {
  font-family: var(--font-dis);
  font-weight: 900;
  font-size: clamp(17px, 2.2vw, 25px);
  line-height: 1.4;
  color: var(--white);
  white-space: nowrap;
  padding-right: 30px;
}
.marquee-track span::after {
  content: "◆";
  color: var(--orange-500);
  font-size: 0.62em;
  vertical-align: 0.22em;
  margin-left: 30px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-dis);
  font-weight: 900;
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
  min-height: 56px;
  padding: 17px 30px;
  font-size: 16.5px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  text-align: center;
}
.btn-primary { background: linear-gradient(150deg, #FF9354 0%, var(--orange-500) 50%, var(--orange-600) 100%); color: var(--white); box-shadow: var(--sh-cta); }
.btn-primary:hover { background: linear-gradient(150deg, var(--orange-500) 0%, var(--orange-600) 100%); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--orange-500); }
.btn-outline:hover { color: var(--orange-400); border-color: var(--orange-400); }
.btn-line { background: linear-gradient(150deg, #22C55E 0%, var(--line-green) 55%, var(--line-green-dark) 100%); color: var(--white); }
.btn-line:hover { background: linear-gradient(150deg, var(--line-green) 0%, var(--line-green-dark) 100%); color: var(--white); transform: translateY(-1px); }
.btn-lg { font-size: 18px; padding: 19px 34px; min-height: 60px; }
.btn-xl { font-size: 19px; padding: 21px 40px; min-height: 64px; border-radius: 16px; }

.center-cta { display: flex; justify-content: center; margin-top: 56px; }
.center-cta-multi { flex-wrap: wrap; gap: 12px; margin-top: 40px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--navy-700); }
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy-700);
  color: var(--white);
  border-radius: var(--r-sm);
  font-family: var(--font-dis);
  font-weight: 900;
  font-size: 20px;
  flex: none;
}
.logo-text {
  font-family: var(--font-dis);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.logo-sub {
  display: block;
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.header-right { display: flex; align-items: center; gap: 32px; }
.desk-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 500; }
.desk-nav a { color: #3f4653; }
.desk-nav a:hover { color: var(--orange-600); }
.head-ctas { display: flex; align-items: center; gap: 10px; flex: none; }
.head-cta { flex: none; padding: 10px 18px; min-height: 42px; font-size: 13.5px; border-radius: var(--r-sm); }
.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  color: var(--navy-700);
  font-size: 20px;
  cursor: pointer;
  flex: none;
}
.mobile-menu {
  border-top: 1px solid var(--hairline);
  background: var(--white);
  padding: 10px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu a {
  padding: 13px 4px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu[hidden] { display: none; }

/* ===== Hero =====
   写真の上に文字を重ねると人物の顔が隠れるため、文字と写真を左右に分ける。
   下の帯には「求職者が最初に知りたい条件」を実数で置く */
.hero { position: relative; background: linear-gradient(175deg, #FEFBF7 0%, var(--cream) 100%); overflow: hidden; }
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(44px, 6.5vw, 92px) 20px clamp(60px, 7vw, 96px);
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero-place { font-size: 13.5px; font-weight: 700; color: var(--orange-600); letter-spacing: 0.03em; line-height: 1.6; word-break: auto-phrase; }
.hero-title {
  font-weight: 900; color: var(--navy-700);
  font-size: clamp(28px, 3.9vw, 52px);
  line-height: 1.22; letter-spacing: 0.005em;
  margin: 16px 0 0; text-wrap: balance; word-break: auto-phrase;
}
/* 見出しは意味の切れ目以外で改行させない */
.nobr { display: inline-block; }
.hero-lead { color: var(--ink-body); font-size: clamp(15.5px, 1.7vw, 18px); line-height: 1.95; margin: 22px 0 0; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { color: var(--ink-mute); font-size: 13.5px; margin: 16px 0 0; line-height: 1.7; }
.hero-note a { margin-left: 8px; text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.hero-photo { position: relative; margin: 0; }
.hero-photo img {
  position: relative; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-lg);
  box-shadow: 0 2px 6px rgba(18, 40, 58, 0.06), 0 16px 36px -22px rgba(18, 40, 58, 0.28);
}
.hero-photo figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255, 255, 255, 0.94); color: var(--navy-700); border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 700; line-height: 1.3; padding: 7px 13px;
}
.hero-facts {
  margin: 0; background: var(--navy-700);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 0 max(20px, calc((100% - 1160px) / 2));
}
.hero-facts > div { padding: 22px 12px 24px; text-align: center; }
.hero-facts > div + div { border-left: 1px solid rgba(255, 255, 255, 0.12); }
.hero-facts dt { font-size: 12.5px; font-weight: 500; color: rgba(255, 255, 255, 0.72); line-height: 1.4; }
.hero-facts dd {
  margin: 6px 0 0; font-family: var(--font-en); font-weight: 700; color: var(--white);
  font-size: clamp(30px, 3.4vw, 42px); line-height: 1.05;
}
.hero-facts dd small { font-family: var(--font-dis); font-size: 14px; font-weight: 700; color: var(--orange-400); margin: 0 2px; }
/* 写真が届かなかった場合（枠ごと削除された場合）は文字だけの1カラムにする */
.hero-inner:not(:has(.hero-photo)) { grid-template-columns: 1fr; max-width: 900px; }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; row-gap: 0; padding-top: 32px; padding-bottom: 44px; }
  /* 文章の直後に写真を置き、その下にボタンを並べる（.hero-content の中身を並べ替えるため contents にする） */
  .hero-content { display: contents; }
  .hero-place { order: 1; }
  .hero-title { order: 2; }
  .hero-lead { order: 3; }
  .hero-photo { order: 4; margin-top: 26px; }
  .hero-ctas { order: 5; margin-top: 26px; }
  .hero-note { order: 6; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); padding: 0; }
  .hero-facts > div { padding: 18px 8px; }
  .hero-facts > div:nth-child(3) { border-left: none; }
  .hero-facts > div:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .hero-ctas .btn { flex: 1 1 100%; }
}

/* ===== Empathy ===== */
/* 悩みはカードに分けず、チェックリストとして一続きに読ませる */
.empathy-list {
  list-style: none; margin: 40px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px;
  border-top: 1px solid var(--hairline);
}
.empathy-list li {
  position: relative; padding: 18px 0 18px 38px; border-bottom: 1px solid var(--hairline);
  font-family: var(--font-dis); font-weight: 700; font-size: clamp(16px, 1.8vw, 18.5px);
  line-height: 1.6; color: var(--navy-700); word-break: auto-phrase;
}
.empathy-list li::before {
  content: ""; position: absolute; left: 2px; top: 50%; width: 20px; height: 20px; margin-top: -10px;
  border: 2px solid var(--orange-500); border-radius: 5px; background: var(--white);
}
.empathy-list li::after {
  content: ""; position: absolute; left: 9px; top: 50%; width: 6px; height: 11px; margin-top: -8px;
  border: solid var(--orange-600); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
@media (max-width: 700px) { .empathy-list { grid-template-columns: 1fr; } }
.navy-panel {
  margin-top: 40px; border-radius: var(--r-lg); padding: clamp(26px, 4vw, 38px);
  background: linear-gradient(150deg, var(--navy-600) 0%, var(--navy-700) 55%, var(--navy-900) 100%);
  box-shadow: var(--sh-navy);
}
.navy-panel p { color: var(--white); font-size: clamp(16px, 2vw, 20px); line-height: 1.95; font-weight: 500; }

/* ===== 5 Reasons =====
   アイコン付きカードの羅列は量産型に見えやすいため、番号・本文・「根拠」の3列で読ませる。
   右列には求人票・データ回収シートで確認できた実際の数字や固有名詞だけを置く */
.reasons { list-style: none; margin: 52px 0 0; padding: 0; border-top: 2px solid var(--navy-700); }
.reason {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 290px) minmax(0, 330px); grid-template-rows: auto 1fr;
  column-gap: clamp(20px, 2.6vw, 32px); row-gap: 14px;
  padding: clamp(26px, 3vw, 36px) 0; border-bottom: 1px solid var(--hairline);
}
.reason-num { grid-column: 1; grid-row: 1; font-family: var(--font-en); font-weight: 600; font-size: clamp(38px, 4vw, 52px); line-height: 0.9; color: var(--orange-500); }
.reason-body { grid-column: 1; grid-row: 2; }
.reason-body h3 {
  font-weight: 900; color: var(--navy-700); font-size: clamp(21px, 2.5vw, 28px);
  line-height: 1.4; margin: 0 0 12px; text-wrap: balance; word-break: auto-phrase;
}
.reason-body p { font-size: 15.5px; line-height: 1.95; color: var(--ink-body); }
.reason-media { display: contents; }
.reason-photo { grid-column: 2; grid-row: 1 / span 2; margin: 0; min-height: 200px; }
.reason-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-md); }
.reason-proof { grid-column: 3; grid-row: 1 / span 2; background: var(--cream); border-radius: var(--r-md); padding: 20px 22px; }
/* 写真が無い行は、根拠を写真の列まで広げる */
.reason:not(:has(.reason-photo)) .reason-proof { grid-column: 2 / span 2; }
.proof-label { font-size: 12.5px; font-weight: 700; color: var(--ink-mute); line-height: 1.5; margin-bottom: 10px; }
.proof-tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.proof-tags li {
  font-size: 13px; font-weight: 700; color: var(--navy-700); line-height: 1.3;
  background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-pill); padding: 7px 12px;
}
.proof-flow { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; row-gap: 6px; }
.proof-flow li { font-size: 14px; font-weight: 700; color: var(--green-600); line-height: 1.5; }
.proof-flow li + li::before { content: "→"; margin: 0 8px; color: var(--ink-mute); font-weight: 500; }
.proof-big { font-family: var(--font-dis); font-weight: 700; color: var(--navy-700); font-size: 15px; line-height: 1; }
.proof-big strong { font-family: var(--font-en); font-size: 46px; color: var(--orange-600); margin: 0 3px; }
.proof-text { font-size: 13.5px; line-height: 1.85; color: var(--ink-body); margin-top: 10px; }
.proof-link { display: inline-block; margin-top: 10px; font-weight: 700; font-size: 14px; }
@media (max-width: 900px) {
  .reason { grid-template-columns: 64px minmax(0, 1fr); grid-template-rows: none; gap: 18px 24px; align-items: start; }
  .reason-num, .reason-photo, .reason-proof, .reason:not(:has(.reason-photo)) .reason-proof { grid-column: auto; grid-row: auto; }
  .reason-body { grid-column: 2; grid-row: auto; }
  .reason-media { display: grid; gap: 12px; grid-column: 2; }
  .reason-photo { min-height: 0; }
  .reason-photo img { height: auto; aspect-ratio: 16 / 10; }
}
@media (max-width: 560px) {
  .reason { grid-template-columns: 1fr; gap: 12px; }
  .reason-body, .reason-media { grid-column: auto; }
  .reason-num { font-size: 36px; }
}

/* ===== Message（代表メッセージ） ===== */
.message-layout { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); gap: clamp(32px, 5vw, 76px); align-items: start; }
.message-photo { margin: 0; }
.message-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 30% center;
  border-radius: var(--r-lg); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.message-body { margin-top: 32px; display: flex; flex-direction: column; gap: 1.2em; }
.message-body p { color: rgba(255, 255, 255, 0.88); font-size: clamp(15px, 1.7vw, 16.5px); line-height: 2.05; text-wrap: pretty; }
.message-sign {
  margin-top: 36px; text-align: right; color: var(--white);
  font-family: var(--font-dis); font-weight: 700; font-size: clamp(19px, 2.4vw, 23px); line-height: 1.4;
}
.message-sign span { display: block; font-family: var(--font-jp); font-weight: 500; font-size: 13px; color: var(--orange-400); margin-bottom: 4px; }
.message-layout:not(:has(.message-photo)) { grid-template-columns: 1fr; max-width: 820px; }
@media (max-width: 860px) {
  .message-layout { grid-template-columns: 1fr; }
  .message-photo { max-width: 320px; }
}

/* ===== Roadmap ===== */
.phase-list { margin-top: 48px; display: flex; flex-direction: column; gap: 20px; }
.phase-row {
  display: flex; flex-wrap: wrap; gap: 0;
  background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--sh-card);
}
.phase-stage {
  flex: 1 1 220px; min-width: 200px;
  padding: 26px 24px 24px;
  display: flex; flex-direction: column; justify-content: center;
}
.phase-stage-label {
  font-family: var(--font-en); font-size: 12.5px; font-weight: 600;
  color: rgba(255, 255, 255, 0.72); letter-spacing: 0.12em;
}
.phase-stage h3 { font-weight: 900; color: var(--white); font-size: 25px; margin: 7px 0 15px; line-height: 1.25; }
.phase-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.phase-chips span {
  background: rgba(255, 255, 255, 0.16); color: var(--white);
  font-size: 12.5px; padding: 5px 11px; border-radius: var(--r-xs); line-height: 1.4;
}
.phase-details {
  flex: 2 1 460px; min-width: 300px; padding: 24px 26px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px 26px;
}
.phase-detail-label {
  font-family: var(--font-en); font-size: 11.5px; color: var(--orange-600);
  font-weight: 600; letter-spacing: 0.1em; margin-bottom: 5px;
}
.phase-details p { font-size: 14.5px; line-height: 1.7; color: var(--ink-body); }

/* ===== Skills ===== */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 44px; }
.skill-card {
  background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 26px; border-top: 4px solid; box-shadow: var(--sh-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.skill-card:hover { transform: translateY(-3px); box-shadow: var(--sh-card-hover); }
.skill-card h3 { font-weight: 900; color: var(--navy-700); font-size: 21px; margin: 0 0 6px; line-height: 1.3; }
.skill-desc { font-size: 13.5px; color: var(--ink-mute); line-height: 1.6; margin: 0 0 18px; }
.skill-items { display: flex; flex-direction: column; gap: 10px; }
.skill-items div { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-body); }
.dot { flex: none; width: 6px; height: 6px; border-radius: 50%; }

/* ===== Interview（常時スライド式：4名になっても2段組みにならない） ===== */
.interview-nav-wrap { position: relative; margin-top: 44px; }
.interview-grid {
  display: flex; flex-wrap: nowrap; align-items: stretch; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding-bottom: 6px; scrollbar-width: none;
}
.interview-grid::-webkit-scrollbar { display: none; }
.interview-card {
  flex: 0 0 clamp(270px, 31vw, 340px);
  scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-md);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--sh-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.interview-card:hover { transform: translateY(-3px); box-shadow: var(--sh-card-hover); }
.interview-photo { flex: none; height: 260px; }
.interview-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
/* 顔写真が届いていない職員のカードは、写真と同じ高さの色面を置いて隣のカードと高さを揃える */
.interview-card:not(:has(.interview-photo))::before {
  content: "\201C"; flex: none; height: 260px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--navy-600) 0%, var(--navy-800) 100%);
  color: var(--orange-400); font-family: var(--font-en); font-weight: 700; font-size: 120px; line-height: 1;
}
.interview-body { padding: 24px 24px 8px; flex: 1; }
.tag {
  display: inline-block; font-family: var(--font-dis); font-size: 12px; font-weight: 700;
  padding: 5px 11px; border-radius: var(--r-xs);
}
.interview-body h3 { font-weight: 700; color: var(--navy-700); font-size: 19px; line-height: 1.55; margin: 15px 0 12px; }
.interview-meta { font-size: 13px; color: var(--ink-mute); line-height: 1.75; }
/* カード内は常に「読む」ボタンのみ。本文はモーダル側に渡すだけで、ここでは開閉しない
   → 誰かの本文が長くても、他のカードの高さには一切影響しない */
.interview-toggle {
  margin: 8px 24px 22px; background: none; border: 1px solid var(--hairline); border-radius: var(--r-sm);
  padding: 12px; font-family: var(--font-dis); font-size: 14px; font-weight: 700;
  color: var(--orange-600); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.interview-toggle:hover { border-color: var(--orange-500); background: var(--orange-50); }
.interview-toggle .chev { font-size: 16px; }

/* 前後矢印（デスクトップ・タブレット向け。モバイルはスワイプ操作） */
.interview-nav {
  display: none;
  position: absolute; top: 130px; z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--hairline); box-shadow: var(--sh-card);
  color: var(--navy-700); font-size: 20px; line-height: 1; cursor: pointer;
  align-items: center; justify-content: center;
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.interview-nav:hover { border-color: var(--orange-500); color: var(--orange-600); transform: translateY(-2px); }
.interview-nav-prev { left: -8px; }
.interview-nav-next { right: -8px; }
@media (min-width: 641px) {
  .interview-nav { display: flex; }
  .interview-nav-prev { left: -22px; }
  .interview-nav-next { right: -22px; }
}

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hairline); border: none; padding: 0; cursor: pointer;
  transition: background 0.15s ease, width 0.15s ease;
}
.carousel-dot.is-active { background: var(--orange-500); width: 20px; border-radius: var(--r-pill); }

/* ===== Interview modal（独立ポップアップ。長文でも他カードに影響しない） ===== */
.interview-modal { position: fixed; inset: 0; z-index: 95; display: flex; align-items: center; justify-content: center; padding: 24px; }
.interview-modal[hidden] { display: none; }
.interview-modal-backdrop { position: absolute; inset: 0; background: rgba(18, 40, 58, 0.72); }
.interview-modal-panel {
  position: relative; z-index: 1;
  background: var(--white); border-radius: var(--r-lg);
  width: 100%; max-width: 640px; max-height: 86vh; overflow-y: auto;
  box-shadow: var(--sh-card-hover);
  display: flex; flex-direction: column;
}
/* 冒頭は「横長バナー」にしない。人物写真を横長に切ると顔が極端なアップになるため、
   縦位置（3:4）のポートレートとして置き、見出しを横に並べる */
.interview-modal-head {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 30px 30px 0;
}
.interview-modal-photo {
  flex: none; width: 150px; aspect-ratio: 3 / 4;
  border-radius: var(--r-md); overflow: hidden; background: var(--cream);
}
.interview-modal-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: saturate(1.12) contrast(1.05);
}
.interview-modal-head-text { flex: 1; min-width: 0; padding-top: 2px; }
.interview-modal-head-text h3 {
  font-weight: 700; color: var(--navy-700); font-size: 21px; line-height: 1.5;
  margin: 14px 0 12px; text-wrap: balance;
}
.interview-modal-body { padding: 22px 30px 32px; }
.interview-modal-text {
  padding-top: 20px; border-top: 1px solid var(--hairline);
  font-size: 15.5px; line-height: 2; color: var(--ink-body); white-space: pre-line;
}
.interview-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--hairline); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--ink-mute);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.interview-modal-close:hover { background: var(--orange-50); color: var(--orange-600); border-color: var(--orange-500); }

/* 狭い画面：写真を丸アイコンにして縦積み */
@media (max-width: 560px) {
  .interview-modal { padding: 16px; }
  .interview-modal-head {
    flex-direction: column; align-items: center; text-align: center;
    padding: 30px 22px 0; gap: 16px;
  }
  .interview-modal-photo { width: 104px; aspect-ratio: 1; border-radius: 50%; }
  .interview-modal-head-text h3 { font-size: 19px; margin: 12px 0 10px; }
  .interview-modal-body { padding: 18px 22px 26px; }
  .interview-modal-text { font-size: 15px; line-height: 1.95; }
}

/* ===== Culture（求人票で確認できた事実＋院内の日常写真） ===== */
.culture-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 28px; margin-top: 44px; border-top: 2px solid var(--navy-700); }
.culture-fact { padding: 22px 0; border-bottom: 1px solid var(--hairline); }
.culture-fact h3 {
  font-weight: 900; color: var(--navy-700); font-size: 17px; line-height: 1.5;
  margin: 0 0 8px; word-break: auto-phrase;
}
.culture-fact h3::before { content: ""; display: block; width: 22px; height: 3px; background: var(--orange-500); margin-bottom: 12px; }
.culture-fact p { font-size: 14px; line-height: 1.85; color: var(--ink-body); }
/* 届いた写真が何枚でも最終行が間延びしないよう、flexで行を埋める（1枚目だけ幅を2倍にする） */
.culture-gallery { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.culture-gallery:not(:has(figure)) { display: none; }
.culture-gallery figure {
  position: relative; margin: 0; flex: 1 1 240px; height: clamp(180px, 19vw, 240px);
  border-radius: var(--r-md); overflow: hidden; background: var(--cream);
}
.culture-gallery figure:first-child { flex: 2 1 480px; }
.culture-gallery img { width: 100%; height: 100%; object-fit: cover; }
.culture-gallery figcaption {
  position: absolute; left: 10px; bottom: 10px; max-width: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.94); color: var(--navy-700); border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; line-height: 1.3; padding: 6px 12px;
}
@media (max-width: 960px) { .culture-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 860px) {
  .culture-gallery figure { flex: 1 1 40%; height: 150px; }
  .culture-gallery figure:first-child { flex-basis: 100%; height: 210px; }
}
@media (max-width: 560px) { .culture-facts { grid-template-columns: 1fr; } }

/* ===== A Day ===== */
.day-timeline { margin-top: 44px; position: relative; }
.day-row { display: flex; gap: 20px; align-items: stretch; }
.day-time {
  flex: none; width: 74px; text-align: right;
  font-family: var(--font-en); font-size: 17px; font-weight: 600;
  color: var(--orange-500); letter-spacing: 0.02em; padding-top: 2px;
}
.day-dot-wrap { flex: none; display: flex; flex-direction: column; align-items: center; }
.day-dot { flex: none; width: 13px; height: 13px; border-radius: 50%; background: var(--orange-500); margin-top: 7px; }
.day-line { flex: 1; width: 2px; min-height: 20px; background: rgba(255, 255, 255, 0.28); margin-bottom: -6px; }
.day-label-wrap { flex: 1; padding-top: 2px; padding-bottom: 32px; }
.day-row-last .day-label-wrap { padding-bottom: 0; }
.day-label { margin: 0; color: var(--white); font-size: 16.5px; font-weight: 500; line-height: 1.6; }

/* ===== Career ===== */
.career-layout { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 48px; align-items: flex-start; }
.career-main, .career-branch { flex: 1 1 300px; min-width: 260px; }
.career-col-label {
  font-family: var(--font-en); font-size: 12.5px; font-weight: 600;
  color: var(--ink-mute); letter-spacing: 0.12em; margin-bottom: 18px;
}
.career-boxes { display: flex; flex-direction: column; }
.career-box-wrap { display: flex; flex-direction: column; align-items: flex-start; }
.career-box {
  background: linear-gradient(150deg, var(--navy-600), var(--navy-800));
  color: var(--white); font-family: var(--font-dis);
  font-weight: 700; font-size: 17px; padding: 17px 22px; border-radius: var(--r-md); width: 100%;
  box-shadow: 0 10px 22px -12px rgba(18, 40, 58, 0.5);
}
.career-arrow { color: #c9cdd4; font-size: 18px; padding: 6px 0 6px 22px; }
.career-branch-list { display: flex; flex-direction: column; gap: 12px; }
.branch-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--cream); border-left: 3px solid var(--green-600);
  border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 17px 19px;
}
.branch-item .arrow { color: var(--green-600); font-weight: 700; flex: none; }
.branch-item p { font-size: 15px; line-height: 1.65; color: var(--ink-body); }
.career-note { margin-top: 30px; font-size: 15px; line-height: 1.85; color: var(--ink-mute); max-width: 780px; }

/* ===== Numbers ===== */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 44px; }
.stat-card {
  background: linear-gradient(165deg, var(--white) 0%, #FCFAF7 100%);
  border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 26px 22px; box-shadow: var(--sh-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--sh-card-hover); }
.stat-label { font-size: 13px; color: var(--ink-mute); font-weight: 500; margin-bottom: 10px; }
.stat-value {
  font-family: var(--font-en); font-weight: 700; color: var(--navy-700);
  font-size: clamp(32px, 3.6vw, 42px); line-height: 1; letter-spacing: 0.01em;
}
.stat-unit { font-family: var(--font-jp); font-size: 15px; color: var(--ink-mute); font-weight: 500; margin-left: 3px; }

/* ===== Benefits ===== */
.benefits-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.benefit-item {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--cream); border: 1px solid var(--hairline); border-radius: var(--r-pill);
  padding: 8px 18px 8px 8px;
  font-size: 14px; color: var(--ink-body); font-weight: 500; line-height: 1.3;
}
.check {
  flex: none; width: 25px; height: 25px; border-radius: 50%;
  background: var(--green-50); color: var(--green-600);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
}

/* U・Iターン（福利厚生セクション内のサブブロック） */
.uturn-block {
  margin-top: 48px; border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px);
  background: var(--orange-50); border: 1px solid #F6D9C4;
}
.uturn-badge {
  display: inline-block; background: var(--orange-500); color: var(--white);
  font-family: var(--font-dis); font-weight: 700; font-size: 13px; line-height: 1;
  padding: 7px 14px; border-radius: var(--r-pill);
}
.uturn-head h3 { font-weight: 900; color: var(--navy-700); font-size: clamp(21px, 2.8vw, 28px); line-height: 1.35; margin: 14px 0 10px; text-wrap: balance; }
.uturn-head p { font-size: 15px; line-height: 1.85; color: var(--ink-body); max-width: 680px; }
.uturn-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.uturn-item { background: var(--white); border-radius: var(--r-md); padding: 20px 18px; box-shadow: var(--sh-card); }
.uturn-item h4 { font-family: var(--font-dis); font-weight: 700; color: var(--orange-600); font-size: 16px; line-height: 1.4; margin: 0 0 8px; }
.uturn-item p { font-size: 13.5px; line-height: 1.75; color: var(--ink-body); }
@media (max-width: 900px) { .uturn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .uturn-grid { grid-template-columns: 1fr; } }

/* ===== Fit ===== */
.fit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 44px; }
.fit-card { background: var(--white); border-radius: var(--r-md); padding: 30px; border-top: 4px solid; box-shadow: var(--sh-card); }
.fit-card-yes { border: 1px solid #D9E6DD; border-top: 4px solid var(--green-600); }
.fit-card-yes h3 { font-weight: 900; color: var(--green-600); font-size: 21px; margin: 0 0 20px; }
.fit-card-no { border: 1px solid var(--hairline); border-top: 4px solid #c9cdd4; }
.fit-card-no h3 { font-weight: 900; color: var(--ink-mute); font-size: 21px; margin: 0 0 20px; }
.fit-list { display: flex; flex-direction: column; gap: 14px; }
.fit-item { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.65; color: var(--ink-body); }
.fit-item-no { color: var(--ink-mute); }
.fit-mark { flex: none; color: var(--green-600); font-weight: 700; }
.fit-mark-no { color: #b0b5bd; }

/* ===== FAQ ===== */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-md); overflow: hidden; }
.faq-toggle {
  width: 100%; background: none; border: none; padding: 19px 22px;
  display: flex; gap: 14px; align-items: flex-start; text-align: left; cursor: pointer;
}
.faq-q { flex: none; color: var(--orange-500); font-family: var(--font-en); font-weight: 700; font-size: 19px; line-height: 1.35; }
.faq-question { flex: 1; font-family: var(--font-dis); font-size: 15.5px; font-weight: 700; color: var(--ink); line-height: 1.55; }
.faq-toggle .chev { flex: none; color: #b0b5bd; font-size: 18px; line-height: 1.3; }
.faq-answer { padding: 0 22px 22px 56px; }
.faq-answer p { font-size: 14.5px; line-height: 1.9; color: var(--ink-body); }

/* ===== Flow ===== */
.flow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 44px; }
.flow-card {
  background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 20px 18px; box-shadow: var(--sh-card);
}
.flow-head { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.flow-step {
  width: 34px; height: 34px; border-radius: 50%; background: var(--navy-700); color: var(--white);
  font-family: var(--font-en); font-weight: 600;
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex: none;
}
.flow-head h3 { font-weight: 700; color: var(--navy-700); font-size: 16px; line-height: 1.35; }
.flow-card p { font-size: 13px; line-height: 1.65; color: var(--ink-mute); }
.flow-note {
  margin-top: 30px; background: var(--green-50); border: 1px solid #d6e7da; border-radius: var(--r-md);
  padding: 22px 26px; display: flex; gap: 13px; align-items: center;
}
.flow-note-mark { color: var(--green-600); font-size: 20px; font-weight: 700; }
.flow-note p { font-size: 15px; line-height: 1.75; color: #2f5c3e; font-weight: 500; }

/* ===== Final CTA ===== */
/* 写真を使わず、グラデーション＋細かなドット＋大きな欧文の透かしで奥行きを出す */
.final-cta { position: relative; background: linear-gradient(160deg, var(--navy-600) 0%, var(--navy-800) 55%, var(--navy-900) 100%); overflow: hidden; }
.final-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 780px 480px at 50% -5%, rgba(242, 107, 29, 0.24), transparent 65%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.09) 1px, transparent 1.4px) 0 0 / 18px 18px;
}
.final-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.final-cta:has(.final-bg) .final-overlay {
  background:
    radial-gradient(ellipse 780px 480px at 50% -5%, rgba(242, 107, 29, 0.18), transparent 65%),
    linear-gradient(180deg, rgba(18, 40, 58, 0.86), rgba(18, 40, 58, 0.84));
}
.final-cta:has(.final-bg)::after { display: none; }
.final-cta::after {
  content: "COME AND SEE"; position: absolute; left: 50%; bottom: -0.16em; transform: translateX(-50%);
  font-family: var(--font-en); font-weight: 700; font-size: clamp(64px, 13vw, 190px); line-height: 1;
  color: var(--white); opacity: 0.045; white-space: nowrap; pointer-events: none;
}
.final-inner {
  position: relative; z-index: 2; max-width: 860px; margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 20px; text-align: center;
}
.final-inner h2 {
  font-weight: 900; color: var(--white);
  font-size: clamp(28px, 4.8vw, 50px); line-height: 1.3; text-wrap: balance;
}
.final-inner > p { color: rgba(255, 255, 255, 0.84); font-size: 16.5px; line-height: 2; margin: 26px auto 0; max-width: 660px; }
.final-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.final-link { display: inline-block; margin-top: 24px; color: rgba(255, 255, 255, 0.72); font-size: 14.5px; text-decoration: underline; text-underline-offset: 3px; }
.final-link:hover { color: var(--white); }

/* ===== Footer ===== */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.72); padding: clamp(52px, 6vw, 76px) 20px 40px; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer-col { flex: 1 1 180px; min-width: 160px; }
.footer-col-main { flex: 1 1 280px; min-width: 240px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-badge { background: var(--white); color: var(--navy-700); }
.footer-logo-text { font-family: var(--font-dis); font-weight: 900; font-size: 16px; color: var(--white); }
.footer-col-main p { font-size: 13.5px; line-height: 1.85; }
.footer-col-main p .footer-tel { display: inline; color: var(--white); font-size: inherit; margin: 0; }
.footer-col-title { font-family: var(--font-en); font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; margin-bottom: 15px; }
.footer-col a { display: block; color: rgba(255, 255, 255, 0.8); font-size: 14px; margin-bottom: 11px; }
.footer-col a:last-child { margin-bottom: 0; }
.footer-col a:hover { color: var(--orange-500); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 38px; padding-top: 22px;
  font-family: var(--font-en); font-size: 12px; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.42);
}

/* ===== Mobile bottom bar ===== */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--white); border-top: 1px solid var(--hairline); box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}
.mbar-line, .mbar-primary {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--white); font-family: var(--font-dis); font-weight: 900; font-size: 15.5px;
  padding: 16px 8px; min-height: 58px;
}
.mbar-line { background: var(--line-green); }
.mbar-primary { background: var(--orange-500); }

/* ===== Requirements ===== */
.req-table { margin-top: 40px; border: 1px solid var(--hairline); border-radius: var(--r-md); overflow: hidden; }
.req-row { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--hairline); }
.req-row:last-child { border-bottom: none; }
.req-row:nth-child(even) { background: var(--cream); }
.req-label { flex: 0 0 168px; min-width: 130px; padding: 16px 22px; font-family: var(--font-dis); font-size: 14px; font-weight: 700; color: var(--navy-700); background: var(--cream); }
.req-value { flex: 1 1 260px; min-width: 220px; padding: 16px 22px; font-size: 14.5px; line-height: 1.75; color: var(--ink-body); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .desk-nav { display: none !important; }
  .head-cta { display: none !important; }
  .burger { display: inline-flex !important; }
  .mobile-bar { display: grid !important; }
  body { padding-bottom: 78px; }

  /* セクション見出し：透かしは小さいと読めないため、ラベル表示に切り替える */
  .sec-en {
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.14em;
    color: var(--orange-600);
    opacity: 1;
    margin: 0 0 10px;
  }
  .sec-en-light { color: var(--orange-400); opacity: 1; }

  /* 全体の縦間延び対策：セクション余白を詰める */
  .section { padding: 48px 20px; }
  .center-cta { margin-top: 38px; }

  /* マーキー帯：モバイルでは高さを抑える */
  .marquee { padding: 11px 0; }

  /* インタビュー：モバイルは1枚ずつ・次のカードが少し覗く幅に調整（矢印は非表示、スワイプ操作） */
  .interview-nav-wrap { margin-top: 32px; }
  .interview-grid { gap: 16px; padding-bottom: 4px; }
  .interview-card { flex: 0 0 82%; scroll-snap-align: center; }

  /* NUMBERS：実数値が確定したため、モバイルもカード一覧（2列）で表示 */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 30px; }
  .stat-card { padding: 18px 16px; }
  .stat-label { font-size: 12px; }

  /* 募集要項：ラベルを上・値を下に積む */
  .req-label { flex-basis: 100%; padding: 12px 18px 4px; background: transparent; }
  .req-value { min-width: 0; padding: 0 18px 14px; background: inherit; }

  /* FAQ：文字・余白を詰めてコンパクトに */
  .faq-list { gap: 8px; margin-top: 30px; }
  .faq-toggle { padding: 15px 17px; gap: 10px; }
  .faq-q { font-size: 16px; }
  .faq-question { font-size: 14.5px; }
  .faq-toggle .chev { font-size: 16px; }
  .faq-answer { padding: 0 17px 17px 44px; }
  .faq-answer p { font-size: 13.5px; line-height: 1.8; }
}

/* =========================================================
   BLOG（職員ブログ）
   WordPress移行時の対応：
     blog.html        → home.php / archive.php（投稿一覧）
     blog-single.html → single.php（投稿詳細）
     .post-body       → the_content() の出力を受けるスタイル
   ========================================================= */

/* ===== ページヘッダー（下層ページ共通） ===== */
.page-hero {
  background: var(--navy-800);
  padding: clamp(48px, 7vw, 88px) 20px clamp(40px, 5vw, 64px);
}
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.page-hero .sec-en { color: var(--white); opacity: 0.15; }
.page-hero h1 {
  font-weight: 900; color: var(--white);
  font-size: clamp(28px, 4.6vw, 48px); line-height: 1.24;
}
.page-hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px; line-height: 1.9; margin: 18px 0 0; max-width: 640px;
}

/* ページヘッダー直後のセクションは上余白を詰める（帯と本文が離れすぎるため） */
.page-hero + .section { padding-top: clamp(24px, 3vw, 36px); }

/* ===== パンくず ===== */
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: var(--font-en); font-size: 12.5px; color: var(--ink-mute);
  padding: 18px 0 0; letter-spacing: 0.01em;
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--orange-600); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

/* ===== カテゴリ絞り込み ===== */
.cat-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.cat-pill {
  display: inline-block; background: var(--white); color: var(--ink-mute);
  border: 1px solid var(--hairline); border-radius: var(--r-pill);
  padding: 9px 18px; font-family: var(--font-dis); font-size: 13.5px; font-weight: 700;
  cursor: pointer; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cat-pill:hover { border-color: var(--orange-500); color: var(--orange-600); }
.cat-pill.is-active { background: var(--navy-700); color: var(--white); border-color: var(--navy-700); }

/* ===== 記事カード一覧 ===== */
.post-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 40px;
}
.post-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--hairline);
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--sh-card-hover); }
.post-card-thumb { position: relative; aspect-ratio: 16/10; background: var(--cream); flex: none; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* カテゴリ別カバー：アイキャッチ写真が無い記事でも一覧が単調にならないようにする。
   WordPress化後は「アイキャッチあり→img／なし→このカバー」を single・archive テンプレートで出し分ける */
.post-cover {
  --cover: linear-gradient(150deg, var(--navy-600) 0%, var(--navy-700) 55%, var(--navy-900) 100%);
  position: relative; overflow: hidden; color: var(--white);
  background: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.16) 1px, transparent 1.4px) 0 0 / 14px 14px, var(--cover);
}
.post-cover-orange { --cover: linear-gradient(150deg, #FF9354 0%, var(--orange-500) 50%, var(--orange-600) 100%); }
.post-cover-green  { --cover: linear-gradient(150deg, #5A9B75 0%, var(--green-600) 55%, #2F5F44 100%); }
.post-cover-slate  { --cover: linear-gradient(150deg, #4A5561 0%, #38434D 55%, var(--ink) 100%); }
.post-cover-icon {
  position: absolute; top: 18px; left: 18px; width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.16);
}
.post-cover-icon svg { width: 25px; height: 25px; }
.post-cover-en {
  position: absolute; right: -0.05em; bottom: -0.18em;
  font-family: var(--font-en); font-weight: 700; font-size: clamp(58px, 6.4vw, 80px); line-height: 1;
  letter-spacing: 0.01em; color: var(--white); opacity: 0.18; white-space: nowrap; pointer-events: none;
}
.post-card:hover .post-cover-en { opacity: 0.26; }
.post-card-thumb .post-cat { z-index: 1; background: rgba(18, 40, 58, 0.88); }
.post-cat {
  position: absolute; left: 12px; bottom: 12px;
  background: var(--navy-700); color: var(--white);
  font-family: var(--font-dis); font-size: 11.5px; font-weight: 700;
  padding: 5px 11px; border-radius: var(--r-xs); line-height: 1.4;
}
.post-cat-orange { background: var(--orange-500); }
.post-cat-green  { background: var(--green-600); }
.post-card-body { padding: 20px 20px 0; flex: 1; }
.post-date {
  font-family: var(--font-en); font-size: 12.5px; font-weight: 500;
  color: var(--ink-mute); letter-spacing: 0.04em;
}
/* タイトルはスタッフが自由に付けるため、長くても3行で切る */
.post-card-body h3 {
  font-weight: 700; color: var(--navy-700); font-size: 17.5px;
  line-height: 1.55; margin: 8px 0 10px; text-wrap: pretty;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card:hover h3 { color: var(--orange-600); }
.post-excerpt {
  font-size: 14px; line-height: 1.8; color: var(--ink-mute);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card-foot {
  display: flex; align-items: center; gap: 9px;
  padding: 16px 20px; margin-top: 16px; border-top: 1px solid var(--hairline);
}
.post-author-avatar {
  width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex: none;
  background: var(--cream);
}
/* 執筆者の顔写真が無い場合のアイコン */
.avatar-empty {
  width: 100%; height: 100%; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--navy-700); color: var(--white);
}
.avatar-empty svg { width: 58%; height: 58%; }
.post-byline > .avatar-empty { width: 42px; height: 42px; flex: none; }
.author-box > .avatar-empty { width: 64px; height: 64px; flex: none; }
.post-author-name { font-size: 12.5px; color: var(--ink-mute); line-height: 1.4; }

/* ===== ページネーション ===== */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 12px;
  border: 1px solid var(--hairline); border-radius: var(--r-sm);
  font-family: var(--font-en); font-size: 15px; font-weight: 500; color: var(--ink-body);
  background: var(--white);
}
.pagination a:hover { border-color: var(--orange-500); color: var(--orange-600); }
.pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pagination .is-current, .pagination .current { background: var(--navy-700); color: var(--white); border-color: var(--navy-700); font-weight: 600; }
.pagination .prev, .pagination .next { font-family: var(--font-dis); font-size: 14px; font-weight: 700; padding: 0 16px; }
.pagination .is-disabled { opacity: 0.4; pointer-events: none; }

/* ===== 記事詳細 ===== */
.post-layout { display: flex; flex-wrap: wrap; gap: 48px; align-items: flex-start; }
.post-main { flex: 1 1 620px; min-width: 300px; }
.post-side { flex: 0 1 280px; min-width: 240px; position: sticky; top: 92px; }

.post-header { border-bottom: 1px solid var(--hairline); padding-bottom: 26px; }
.post-header-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.post-header-meta .post-cat { position: static; }
.post-title {
  font-weight: 900; color: var(--navy-700);
  font-size: clamp(24px, 3.4vw, 36px); line-height: 1.4; margin: 16px 0 0; text-wrap: balance;
}
.post-byline { display: flex; align-items: center; gap: 11px; margin-top: 22px; }
.post-byline img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; background: var(--cream); }
.post-byline-name { font-family: var(--font-dis); font-weight: 700; font-size: 14.5px; color: var(--ink); line-height: 1.4; }
.post-byline-role { font-size: 12.5px; color: var(--ink-mute); line-height: 1.5; margin-top: 2px; }

.post-eyecatch { margin-top: 30px; border-radius: var(--r-md); overflow: hidden; }
.post-eyecatch img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-eyecatch.post-cover { aspect-ratio: 16 / 7; }
.post-eyecatch .post-cover-icon { top: 24px; left: 24px; width: 58px; height: 58px; border-radius: 14px; }
.post-eyecatch .post-cover-icon svg { width: 32px; height: 32px; }
.post-eyecatch .post-cover-en { font-size: clamp(72px, 13vw, 150px); }

/* ===== 本文（WordPressのブロックエディタ出力を受ける） ===== */
.post-body { margin-top: 36px; font-size: 16.5px; line-height: 2; color: var(--ink-body); }
.post-body > * + * { margin-top: 1.4em; }
.post-body h2 {
  font-family: var(--font-dis); font-weight: 900; color: var(--navy-700);
  font-size: clamp(21px, 2.6vw, 26px); line-height: 1.45;
  margin-top: 2.2em; padding-left: 14px; border-left: 5px solid var(--orange-500);
}
.post-body h3 {
  font-family: var(--font-dis); font-weight: 700; color: var(--navy-700);
  font-size: clamp(18px, 2.1vw, 21px); line-height: 1.5; margin-top: 1.9em;
}
.post-body h4 { font-family: var(--font-dis); font-weight: 700; color: var(--ink); font-size: 17px; margin-top: 1.7em; }
.post-body p { text-wrap: pretty; }
.post-body a { text-decoration: underline; text-underline-offset: 3px; }
.post-body strong { font-weight: 700; color: var(--ink); }
.post-body ul, .post-body ol { padding-left: 1.4em; }
.post-body li + li { margin-top: 0.6em; }
.post-body ul li::marker { color: var(--orange-500); }
.post-body ol li::marker { color: var(--orange-500); font-family: var(--font-en); font-weight: 600; }
/* スマホで撮った縦長写真がそのまま貼られても画面を占領しないよう、高さに上限を設ける */
.post-body img { max-width: 100%; height: auto; border-radius: var(--r-md); }
.post-body figure { margin: 0; }
.post-body .wp-block-image { margin-top: 2em; }
.post-body .wp-block-image img { display: block; margin: 0 auto; width: auto; max-height: 70vh; }
.post-body .aligncenter { margin-left: auto; margin-right: auto; text-align: center; }
.post-body .alignleft { float: left; max-width: 48%; margin: 0.4em 1.4em 1em 0; }
.post-body .alignright { float: right; max-width: 48%; margin: 0.4em 0 1em 1.4em; }
.post-body .has-text-align-center { text-align: center; }
.post-body .wp-block-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.post-body .wp-block-gallery figure { margin: 0; }
.post-body .wp-block-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; max-height: none; }
.post-body .wp-block-table { overflow-x: auto; }
.post-body .wp-block-embed iframe, .post-body iframe { width: 100%; height: auto; aspect-ratio: 16 / 9; border: 0; border-radius: var(--r-md); }
.post-body .wp-block-separator { border: none; border-top: 1px solid var(--hairline); margin-top: 2.4em; }
.post-body .wp-block-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.post-body .wp-block-button__link {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 26px;
  border-radius: var(--r-md); background: var(--orange-500); color: var(--white); font-family: var(--font-dis); font-weight: 900; text-decoration: none;
}
.post-body::after { content: ""; display: block; clear: both; }
.post-body figcaption, .post-body .wp-element-caption {
  font-size: 13px; color: var(--ink-mute); line-height: 1.7; margin-top: 10px; text-align: center;
}
.post-body blockquote {
  margin-left: 0; margin-right: 0;
  background: var(--cream); border-left: 4px solid var(--navy-600);
  border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 22px 24px;
  font-size: 15.5px; line-height: 1.9;
}
.post-body blockquote p + p { margin-top: 1em; }
.post-body hr { border: none; border-top: 1px solid var(--hairline); margin-top: 2.4em; }
.post-body table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.post-body th, .post-body td { border: 1px solid var(--hairline); padding: 12px 14px; text-align: left; line-height: 1.7; }
.post-body th { background: var(--cream); font-family: var(--font-dis); font-weight: 700; color: var(--navy-700); }
/* 表・コードは横スクロールで逃がす */
.post-body .table-scroll { overflow-x: auto; }

/* 注意書きボックス（広告規制まわりの補足などに使う） */
.post-note {
  background: var(--orange-50); border: 1px solid #FFDFC6; border-radius: var(--r-md);
  padding: 18px 20px; font-size: 14px; line-height: 1.85; color: var(--ink-body);
}

/* ===== 執筆者プロフィール ===== */
.author-box {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: flex-start;
  background: var(--cream); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 24px; margin-top: 48px;
}
.author-box img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: none; background: var(--white); }
.author-box-text { flex: 1 1 260px; min-width: 220px; }
.author-box-label {
  font-family: var(--font-en); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--orange-600); margin-bottom: 6px;
}
.author-box-name { font-family: var(--font-dis); font-weight: 900; font-size: 17px; color: var(--navy-700); }
.author-box-role { font-size: 13px; color: var(--ink-mute); margin-top: 3px; }
.author-box-bio { font-size: 14px; line-height: 1.85; color: var(--ink-body); margin-top: 12px; }

/* ===== サイドバー ===== */
.side-block + .side-block { margin-top: 32px; }
.side-title {
  font-family: var(--font-en); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--navy-700); padding-bottom: 12px;
  border-bottom: 2px solid var(--navy-700); margin-bottom: 16px;
}
.side-list { display: flex; flex-direction: column; gap: 14px; }
.side-post { display: flex; gap: 12px; align-items: flex-start; }
.side-post img { width: 72px; height: 54px; border-radius: var(--r-xs); object-fit: cover; flex: none; background: var(--cream); }
.side-post-thumb { width: 72px; height: 54px; border-radius: var(--r-xs); flex: none; display: flex; align-items: center; justify-content: center; }
.side-post-thumb svg { width: 22px; height: 22px; }
.side-post-text { flex: 1; min-width: 0; }
.side-post-date { font-family: var(--font-en); font-size: 11.5px; color: var(--ink-mute); letter-spacing: 0.03em; }
.side-post-title {
  font-size: 13.5px; font-weight: 700; color: var(--navy-700); line-height: 1.55; margin-top: 3px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.side-post:hover .side-post-title { color: var(--orange-600); }
.side-cats { display: flex; flex-wrap: wrap; gap: 7px; }
.side-cats a {
  background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-pill);
  padding: 7px 14px; font-size: 12.5px; font-weight: 700; color: var(--ink-mute);
}
.side-cats a:hover { border-color: var(--orange-500); color: var(--orange-600); }

/* サイドバーの応募誘導 */
.side-cta {
  background: linear-gradient(150deg, var(--navy-600), var(--navy-800));
  border-radius: var(--r-md); padding: 24px 22px; text-align: center;
  box-shadow: var(--sh-navy);
}
.side-cta h3 { font-weight: 900; color: var(--white); font-size: 17px; line-height: 1.5; }
.side-cta p { color: rgba(255, 255, 255, 0.78); font-size: 13px; line-height: 1.8; margin-top: 10px; }
.side-cta .btn { width: 100%; margin-top: 16px; min-height: 50px; font-size: 15px; padding: 14px 18px; }

/* ===== 記事下ナビ ===== */
.post-nav { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.post-nav a {
  flex: 1 1 240px; min-width: 220px;
  border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 18px 20px;
  background: var(--white);
}
.post-nav a:hover { border-color: var(--orange-500); }
.post-nav-label {
  font-family: var(--font-en); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--orange-600);
}
.post-nav-title { font-size: 14.5px; font-weight: 700; color: var(--navy-700); line-height: 1.6; margin-top: 7px; }
.post-nav-next { text-align: right; }

/* ===== 空状態（記事がまだ無いとき） ===== */
.post-empty {
  text-align: center; padding: 64px 20px; margin-top: 40px;
  background: var(--cream); border: 1px dashed var(--hairline); border-radius: var(--r-md);
}
.post-empty p { color: var(--ink-mute); font-size: 15px; line-height: 1.9; }

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
  .post-layout { gap: 40px; }
  .post-side { position: static; flex: 1 1 100%; }
}
@media (max-width: 860px) {
  .page-hero { padding: 36px 20px 32px; }
  .page-hero .sec-en { color: var(--orange-400); opacity: 1; }
  .breadcrumb { font-size: 11.5px; padding-top: 14px; }
  .post-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
  .cat-filter { margin-top: 26px; }
  .post-body { font-size: 16px; line-height: 1.95; }
  .author-box { padding: 20px; gap: 14px; }
  .post-nav-next { text-align: left; }
  .pagination { margin-top: 36px; }
}

/* 募集要項の注釈 */
.req-note { display: inline-block; margin-top: 8px; font-size: 13px; color: var(--ink-mute); line-height: 1.7; }

/* 申込・相談はLINEに集約したため、オレンジのボタンは使わない。
   申込ではない導線（ブログ一覧など）は枠線ボタンにする */
.btn-ghost { background: transparent; color: var(--navy-700); border: 1px solid var(--hairline); }
.btn-ghost:hover { border-color: var(--navy-700); color: var(--navy-700); }
.mbar-tel {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--navy-700); color: var(--white);
  font-family: var(--font-dis); font-weight: 900; font-size: 15.5px; padding: 16px 8px; min-height: 58px;
}

/* スマホ下部の固定バー：2行に折り返さない大きさに */
.mbar-line, .mbar-primary, .mbar-tel { font-size: 14.5px; letter-spacing: 0; }

/* 記事がまだ無い期間の案内 */
.blog-soon {
  margin-top: 36px; padding: 40px 28px; text-align: center;
  background: var(--white); border: 1px dashed var(--hairline); border-radius: var(--r-md);
}
.blog-soon p { font-size: 15px; line-height: 1.9; color: var(--ink-mute); }

/* 個人情報の取り扱いページ */
.legal { margin-top: 32px; }
.legal h2 { font-family: var(--font-dis); font-weight: 900; color: var(--navy-700); font-size: 19px; line-height: 1.5; margin: 40px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal p { font-size: 15px; line-height: 2; color: var(--ink-body); }
.legal ul { margin: 12px 0 0; padding-left: 1.3em; }
.legal li { font-size: 15px; line-height: 1.95; color: var(--ink-body); }
.legal li + li { margin-top: 6px; }
.legal-box { margin-top: 44px; padding: 24px 26px; background: var(--cream); border-radius: var(--r-md); }
.legal-box-title { font-family: var(--font-dis); font-weight: 700; color: var(--navy-700); font-size: 15px; margin-bottom: 10px; }
.legal-date { margin-top: 28px; font-size: 13px; color: var(--ink-mute); }

/* ヘッダーロゴ（クライアント支給のロゴ画像） */
.logo { gap: 12px; }
.logo-img { height: 46px; width: auto; display: block; }
.logo-tag {
  font-family: var(--font-en); font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em;
  color: var(--ink-mute); border-left: 1px solid var(--hairline); padding-left: 12px; white-space: nowrap;
}
@media (max-width: 560px) {
  .logo-img { height: 34px; }
  .logo-tag { display: none; }
}
