/* ================================================================
   育德会採用サイト — main.css
   カラー：深緑 × 白 × クリーム（参考：みらいリハビリテーションクリニック）
================================================================ */

/* ===== リセット・ベース ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  color: #1a1a1a;
  line-height: 1.75;
  overflow-x: hidden;
  background: #fff;
  padding-bottom: 72px; /* sticky-bar 分 */
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CSS カスタムプロパティ ===== */
:root {
  --green:       #3a8c5f;
  --green-d:     #2d6a4f;
  --green-l:     #52b788;
  --green-bg:    #f0f7f4;
  --green-light: #d8f3dc;
  --line-green:  #06C755;
  --line-green-d:#05a849;
  --cream:       #fdf9f5;
  --cream-d:     #f5efe8;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-sub:    #666666;
  --text-light:  #999999;
  --border:      #e8e8e8;
  --border-l:    #f0f0f0;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.12);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --max-width:   1200px;
  --section-pad: 80px 20px;
}

/* ================================================================
   固定底部CTAバー
================================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--cream-d);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 32px;
  min-height: 72px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.sticky-bar-message {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sticky-bar-leaf { font-size: 22px; }
.sticky-bar-lead {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-d);
  display: block;
  line-height: 1.3;
}
.sticky-bar-sub {
  font-size: 12px;
  color: var(--text-sub);
  display: block;
}
.sticky-bar-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.sbar-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s, background .2s;
}
.sbar-btn:hover { transform: translateY(-2px); }
.sbar-btn-visit {
  background: var(--green);
  color: #fff;
  box-shadow: 0 3px 12px rgba(58,140,95,.3);
}
.sbar-btn-visit:hover { background: var(--green-d); box-shadow: 0 5px 18px rgba(58,140,95,.4); color: #fff; }
.sbar-btn-line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 3px 12px rgba(6,199,85,.3);
}
.sbar-btn-line:hover { background: var(--line-green-d); box-shadow: 0 5px 18px rgba(6,199,85,.4); color: #fff; }
.sbar-btn-entry {
  background: var(--white);
  color: var(--green-d);
  border: 2px solid var(--green);
  box-shadow: var(--shadow-sm);
}
.sbar-btn-entry:hover { background: var(--green-bg); box-shadow: var(--shadow-md); color: var(--green-d); }


/* ================================================================
   ヘッダー
================================================================ */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border-l);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ロゴ */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.header-logo-img img {
  height: 48px;
  width: auto;
  display: block;
}
.header-logo-icon { font-size: 26px; }
.header-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.header-logo-corp  { font-size: 10px; font-weight: 700; color: var(--green-d); letter-spacing: .1em; }
.header-logo-name  { font-size: 13px; font-weight: 800; color: var(--text); }
.header-logo-badge {
  font-size: 9px;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 1px 6px;
  border-radius: 3px;
  letter-spacing: .12em;
  width: fit-content;
  margin-top: 2px;
}

/* ナビ */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav .current-menu-item > a { background: var(--green-bg); color: var(--green-d); }

/* ヘッダーボタン */
.header-btns { display: flex; gap: 8px; flex-shrink: 0; }
.hbtn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s, background .2s;
}
.hbtn:hover { transform: translateY(-1px); }
.hbtn-visit {
  background: var(--green);
  color: #fff;
  box-shadow: 0 3px 10px rgba(58,140,95,.25);
}
.hbtn-visit:hover { background: var(--green-d); color: #fff; box-shadow: 0 5px 14px rgba(58,140,95,.35); }
.hbtn-line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 3px 10px rgba(6,199,85,.25);
}
.hbtn-line:hover { background: var(--line-green-d); color: #fff; box-shadow: 0 5px 14px rgba(6,199,85,.35); }

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  border-radius: 6px;
  transition: background .2s;
}
.hamburger:hover { background: var(--green-bg); }
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ================================================================
   ヒーロー
================================================================ */
.hero {
  background: var(--cream);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 560px;
}

/* 左カラム */
.hero-text-col {
  padding: 60px 40px 60px 0;
}
.hero-catch {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 20px;
}
.hero-title-quote {
  display: block;
  font-style: italic;
  color: var(--green-d);
}
.hero-desc {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-cta-circles {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 108px; height: 108px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .02em;
}
.hero-cta-btn svg { width: 24px; height: 24px; }
.hero-cta-btn:hover { transform: translateY(-4px); }
.hero-cta-visit {
  background: var(--white);
  color: var(--green-d);
  border: 2px solid var(--green);
  box-shadow: 0 3px 14px rgba(58,140,95,.2);
}
.hero-cta-visit:hover { background: var(--green-bg); box-shadow: 0 6px 20px rgba(58,140,95,.3); color: var(--green-d); }
.hero-cta-line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 3px 14px rgba(6,199,85,.3);
}
.hero-cta-line:hover { background: var(--line-green-d); box-shadow: 0 6px 20px rgba(6,199,85,.4); color: #fff; }

/* エントリーボタン */
.hero-cta-entry {
  background: #e07a8c;
  color: #fff;
  box-shadow: 0 3px 14px rgba(224,122,140,.35);
}
.hero-cta-entry:hover { background: #c9637a; box-shadow: 0 6px 20px rgba(224,122,140,.5); color: #fff; }

/* 募集要項ボタン — 横長メインCTA */
.hero-cta-job {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: auto;
  border-radius: 50px;
  padding: 16px 28px;
  background: var(--green-d);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 5px 20px rgba(45,106,79,.4);
  letter-spacing: .04em;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.hero-cta-job svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero-cta-job:hover {
  background: #1e4d36;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45,106,79,.5);
  color: #fff;
}

/* 右カラム */
.hero-photo-col { position: relative; height: 100%; }
.hero-photo-wrap {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}
.hero-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ヒーロースライダー */
.hero-slider {
  position: relative;
  width: 100%; height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative; /* 最初だけ高さを確保 */
}
.hero-slider-dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 10;
}
.hero-slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none; cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}
.hero-slider-dot.is-active {
  background: #fff;
  transform: scale(1.3);
}
.hero-badge {
  position: absolute;
  bottom: 40px; right: 24px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid rgba(255,255,255,.6);
}
.hero-badge p {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-d);
  line-height: 1.7;
}
.hero-badge-line {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  color: var(--green-l);
}


/* ================================================================
   数字で見る育德会
================================================================ */
.numbers-section {
  background: #f2ede8;
  padding: 40px 24px;
}
.numbers-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.numbers-label-col {
  flex-shrink: 0;
  text-align: center;
  padding-right: 32px;
  border-right: 1px solid var(--border);
}
.numbers-heading {
  font-size: 15px;
  font-weight: 800;
  color: var(--green-d);
  line-height: 1.5;
}
.numbers-leaf { font-size: 22px; display: block; margin-top: 6px; }
.numbers-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.num-item {
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--border-l);
}
.num-item:last-child { border-right: none; }
.num-icon-wrap {
  color: var(--green);
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}
.num-value {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}
.num-count {
  font-size: 36px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.num-prefix {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-right: 1px;
}
.num-unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}
.num-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.num-note {
  font-size: 11px;
  color: var(--text-light);
}


/* ================================================================
   セクション共通
================================================================ */
.section {
  padding: var(--section-pad);
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-head {
  margin-bottom: 40px;
}
.section-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.section-en {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .15em;
}
.section-more {
  text-align: right;
  margin-top: 24px;
}
.more-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .2s;
}
.more-link:hover { color: var(--green-d); }


/* ================================================================
   スタッフインタビュー
================================================================ */
.interview-section { background: var(--white); }
.interview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.interview-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-l);
  transition: transform .25s, box-shadow .25s;
}
.interview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.interview-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--green-bg);
}
.interview-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.interview-card:hover .interview-photo img { transform: scale(1.04); }
.interview-body { padding: 16px; }
.interview-quote {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 10px;
}
.interview-meta {
  font-size: 12px;
  color: var(--text-sub);
}


/* ================================================================
   1日の流れ
================================================================ */
.schedule-section { background: var(--green-bg); }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sch-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.sch-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ヘッダー — 白背景＋カラーテキスト（参考サイト準拠） */
.sch-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-l);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sch-icon { font-size: 20px; }
.sch-role-name { font-size: 13px; font-weight: 800; color: var(--green); }

/* 職種別カラー */
.sch-color-1 .sch-role-name { color: #d9534f; }
.sch-color-2 .sch-role-name { color: #5b9bd5; }
.sch-color-3 .sch-role-name { color: var(--green); }
.sch-color-4 .sch-role-name { color: #e09a3a; }

/* ボディ — 丸写真 ＋ タイムライン 横並び */
.sch-body {
  display: flex;
  gap: 12px;
  padding: 16px;
  align-items: flex-start;
}
.sch-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--green-bg);
  border: 2px solid var(--border-l);
}
.sch-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.sch-timeline {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0;
}
.sch-timeline li {
  display: flex;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
}
.sch-time {
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  width: 34px;
  font-size: 11px;
}
.sch-task { color: var(--text); font-size: 12px; }


/* ================================================================
   情報カード
================================================================ */
.info-section { background: var(--cream); }
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.info-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-l);
  transition: transform .25s, box-shadow .25s;
  color: var(--text);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--text); }
.info-card-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--green-bg);
}
.info-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.info-card:hover .info-card-photo img { transform: scale(1.04); }
.info-card-body { padding: 18px 16px; }
.info-card-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.info-card-text {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.65;
}


/* ================================================================
   フッター
================================================================ */
.site-footer {
  background: var(--green-d);
  color: rgba(255,255,255,.85);
  padding: 56px 24px 32px;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-icon { font-size: 28px; }
.footer-logo-img img { height: 48px; width: auto; display: block; }
.footer-corp {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: .1em;
}
.footer-name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.footer-address {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}
.footer-address a { color: rgba(255,255,255,.65); }
.footer-address a:hover { color: #fff; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-nav-col { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-head {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-nav-col a {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.footer-nav-col a:hover { color: #fff; }

/* フッターCTAボタン */
.footer-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  margin-bottom: 24px;
}
.footer-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .15s, box-shadow .15s, background .2s;
}
.footer-cta-btn:hover { transform: translateY(-2px); }
.footer-cta-visit {
  background: var(--green-l);
  color: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,.2);
}
.footer-cta-visit:hover { background: var(--green); color: #fff; }
.footer-cta-line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 3px 12px rgba(6,199,85,.3);
}
.footer-cta-line:hover { background: var(--line-green-d); color: #fff; }
.footer-cta-entry {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.footer-cta-entry:hover { background: rgba(255,255,255,.25); color: #fff; }

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
.footer-disclaimer {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.3);
}


/* ================================================================
   スクロールアニメーション
================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: .1s; }
.fade-in:nth-child(3) { transition-delay: .2s; }
.fade-in:nth-child(4) { transition-delay: .3s; }


/* ================================================================
   レスポンシブ
================================================================ */

/* タブレット（〜1024px） */
@media (max-width: 1024px) {
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .num-item:nth-child(3) { border-right: none; }
  .num-item:nth-child(4) { border-right: 1px solid var(--border-l); }

  .interview-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid  { grid-template-columns: repeat(2, 1fr); }
  .info-cards-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

/* スマホ（〜768px） */
@media (max-width: 768px) {
  :root { --section-pad: 52px 16px; }
  body { padding-bottom: 68px; }

  /* ヘッダー */
  .header-inner { padding: 0 16px; }
  .header-nav {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 12px 16px; width: 100%; border-radius: 8px; }
  .header-btns { display: none; }
  .hamburger { display: flex; }
  .header-logo-corp { display: none; }

  /* ヒーロー */
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-photo-col { order: -1; }
  .hero-photo-wrap { min-height: 280px; }
  .hero-text-col { padding: 36px 16px 40px; }
  .hero-badge { bottom: 16px; right: 16px; padding: 12px 16px; }
  .hero-badge p { font-size: 12px; }

  /* 数字 */
  .numbers-inner { flex-direction: column; gap: 24px; }
  .numbers-label-col { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 16px; }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .num-item:nth-child(3) { border-right: none; }
  .num-item:nth-child(4) { border-right: 1px solid var(--border-l); }
  .num-count { font-size: 28px; }

  /* インタビュー */
  .interview-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* スケジュール */
  .schedule-grid { grid-template-columns: 1fr; gap: 16px; }

  /* 情報カード */
  .info-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* 固定底部バー */
  .sticky-bar {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
    min-height: auto;
  }
  .sticky-bar-message { display: none; }
  .sticky-bar-btns { width: 100%; justify-content: center; }
  .sbar-btn { padding: 10px 16px; font-size: 12px; flex: 1; justify-content: center; }

  /* フッター */
  .footer-nav { grid-template-columns: 1fr; gap: 16px; }
  .footer-cta { flex-direction: column; align-items: center; gap: 10px; }
  .footer-cta-btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* 小スマホ（〜480px） */
@media (max-width: 480px) {
  .interview-grid { grid-template-columns: 1fr; }
  .info-cards-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .num-item:nth-child(2) { border-right: none; }
  .num-item:nth-child(3) { border-right: 1px solid var(--border-l); }
  .num-item:nth-child(4) { border-right: none; }
}