/* =============================================================
   練馬ベース（NERIMA BASE TOKYO）スタイルシート
   デザイン方針：A＋ 洗練モノクロ（写真と余白で温度を出す）
   依存：なし（外部フォント/ライブラリ不使用）
   ============================================================= */

/* ---------- デザイントークン（変数） ---------- */
:root {
  /* 色：モノクロ＋温かいオフホワイト。差し色はLINE緑のみ */
  --c-text:      #111111;   /* 文字（主） */
  --c-text-sub:  #5c5c5c;   /* 文字（補助） */
  --c-bg:        #faf9f7;   /* 背景（温かいオフホワイト） */
  --c-bg-alt:    #f1efea;   /* 区切り背景 */
  --c-white:     #ffffff;
  --c-border:    #e5e1d8;   /* 罫線（温かいグレー） */
  --c-line:      #06c755;   /* LINE緑（LINEボタン専用） */
  --c-line-dark: #05a648;

  /* フォント：端末標準（システムフォント） */
  --font-jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic",
             "YuGothic", "Noto Sans JP", Meiryo, system-ui, sans-serif;
  --font-en: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;

  /* 余白スケール */
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3.5rem;
  --space-section: 4.5rem;   /* セクション上下余白（モバイル） */

  --container: 1080px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 6px 28px rgba(17,17,17,0.07);
  --shadow-soft: 0 2px 12px rgba(17,17,17,0.05);
}

/* ---------- リセット & ベース ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 17px;             /* 40〜80代の可読性を優先（大きめ） */
  line-height: 1.85;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

/* 文字選択・フォーカスのアクセシビリティ */
:focus-visible { outline: 3px solid #111; outline-offset: 3px; }

/* ---------- レイアウト ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.4rem; }
.section { padding-block: var(--space-section); }
.section--alt { background: var(--c-bg-alt); }

/* セクション見出し（英語アイブロウ＋日本語大見出し） */
.section-head { text-align: center; margin-bottom: 2.6rem; }
.eyebrow {
  font-family: var(--font-en);
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--c-text-sub); display: block; margin-bottom: .7rem;
}
.section-title { font-size: clamp(1.5rem, 5vw, 2.1rem); font-weight: 800; line-height: 1.4; letter-spacing: .02em; }
.section-lead { color: var(--c-text-sub); margin-top: 1rem; font-size: 1rem; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 56px; padding: .9rem 1.8rem;
  border-radius: var(--radius); border: 1.5px solid transparent;
  font-family: var(--font-jp); font-size: 1.05rem; font-weight: 700; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-line { background: var(--c-line); color: #fff; box-shadow: 0 6px 18px rgba(6,199,85,.28); }
.btn-line:hover { background: var(--c-line-dark); }
.btn-primary { background: var(--c-text); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-outline { background: transparent; color: var(--c-text); border-color: var(--c-text); }
.btn-outline:hover { background: var(--c-text); color: #fff; }
.btn-full { width: 100%; }
.btn-icon { width: 1.2em; height: 1.2em; flex: none; }

/* ---------- ヘッダー ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,249,247,.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: .6rem; color: var(--c-text); }
.brand__mark { width: 40px; height: 40px; }
.brand__text { font-family: var(--font-en); font-weight: 700; letter-spacing: .14em; font-size: .95rem; line-height: 1.1; }
.brand__text small { display: block; font-size: .6rem; letter-spacing: .3em; color: var(--c-text-sub); }

.nav { display: none; }
.nav a { font-size: .95rem; padding: .4rem .2rem; color: var(--c-text-sub); transition: color .15s; }
.nav a:hover { color: var(--c-text); }
.header__cta { display: none; }

/* ハンバーガー */
.hamburger {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 46px; height: 46px; background: none; border: 1px solid var(--c-border);
  border-radius: 10px; cursor: pointer; padding: 0; align-items: center;
}
.hamburger span { width: 22px; height: 2px; background: var(--c-text); transition: .25s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-menu {
  position: fixed; inset: 68px 0 0 0; z-index: 49;
  background: var(--c-bg); padding: 1.5rem 1.4rem 3rem;
  transform: translateX(100%); transition: transform .28s ease; overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a { display: block; padding: 1rem .5rem; font-size: 1.15rem; border-bottom: 1px solid var(--c-border); }
.mobile-menu .btn { margin-top: 1.6rem; }

/* ---------- ヒーロー（S1） ---------- */
.hero { position: relative; }
.hero__media { position: relative; }
.hero__inner { display: grid; gap: 1.6rem; padding-block: 2.5rem 3rem; }
.hero__copy h1 {
  font-size: clamp(1.9rem, 8vw, 3.2rem); font-weight: 800; line-height: 1.32; letter-spacing: .01em;
}
.hero__copy h1 .accent { display: inline-block; }
.hero__sub { color: var(--c-text-sub); margin-top: 1.1rem; font-size: 1.05rem; }
.hero__actions { display: grid; gap: .8rem; margin-top: 1.6rem; }
.hero__note { font-size: .85rem; color: var(--c-text-sub); display: flex; align-items: center; gap: .4rem; }

/* ---------- 悩み（S2） ---------- */
.worries__grid { display: grid; gap: .8rem; }
.worry {
  display: flex; align-items: flex-start; gap: .8rem;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 1rem 1.2rem; box-shadow: var(--shadow-soft);
}
.worry__check { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--c-bg-alt);
  display: grid; place-items: center; font-size: .9rem; margin-top: .15rem; }
.worry p { font-size: 1.02rem; }
.worries__after { text-align: center; margin-top: 2rem; font-size: 1.15rem; font-weight: 700; }

/* ---------- 共通：メディア＋テキストの2カラム ---------- */
.feature { display: grid; gap: 1.6rem; align-items: center; }
.feature__body h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .9rem; line-height: 1.45; }
.feature__body p + p { margin-top: 1rem; }
.feature__list { margin-top: 1.2rem; display: grid; gap: .6rem; }
.feature__list li { padding-left: 1.6rem; position: relative; }
.feature__list li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; }
.feature__cta { margin-top: 1.5rem; }

/* ---------- トレーナー（S4） ---------- */
.trainer { display: grid; gap: 1.6rem; }
.trainer__quote { font-size: 1.2rem; font-weight: 700; line-height: 1.7; }
.trainer__name { margin-top: 1.2rem; font-weight: 700; }
.trainer__name span { display: block; font-size: .85rem; color: var(--c-text-sub); font-weight: 400; }

/* ---------- 選ばれる理由（S8） ---------- */
.reasons__grid { display: grid; gap: 1.1rem; }
.reason { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-soft); }
.reason__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--c-bg-alt);
  display: grid; place-items: center; font-size: 1.3rem; margin-bottom: .9rem; }
.reason h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.reason p { color: var(--c-text-sub); font-size: .98rem; }

/* ---------- お客様の声（S9） ---------- */
.voices__grid { display: grid; gap: 1.2rem; }
.voice { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-soft); }
.voice__head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.voice__avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex: none; }
.voice__meta strong { font-size: .98rem; }
.voice__meta span { display: block; font-size: .82rem; color: var(--c-text-sub); }
.voice__text { font-size: 1rem; line-height: 1.8; }
.voice__tag { display: inline-block; margin-bottom: .7rem; font-size: .78rem; color: var(--c-text-sub);
  background: var(--c-bg-alt); padding: .2rem .7rem; border-radius: 999px; }

/* ---------- 料金（S10） ---------- */
.pricing__grid { display: grid; gap: 1.2rem; }
.plan { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem; box-shadow: var(--shadow-soft); text-align: center; }
.plan h3 { font-size: 1.2rem; font-weight: 800; }
.plan__price { font-size: 2rem; font-weight: 800; margin: .6rem 0 .2rem; }
.plan__price small { font-size: .9rem; font-weight: 400; color: var(--c-text-sub); }
.plan__note { font-size: .85rem; color: var(--c-text-sub); }
.pricing__cta { text-align: center; margin-top: 2rem; }
/* 将来「無料体験」を差し込むスロット */
.trial-slot { margin-top: 1.5rem; border: 2px dashed var(--c-border); border-radius: var(--radius);
  padding: 1.2rem; text-align: center; color: var(--c-text-sub); font-size: .92rem; }

/* ---------- FAQ（S11） ---------- */
.faq__list { display: grid; gap: .8rem; }
.faq__item { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 1.2rem 1.3rem; font-size: 1.05rem; font-weight: 700; font-family: var(--font-jp); color: var(--c-text); }
.faq__q::after { content: "＋"; flex: none; font-weight: 400; transition: transform .2s; }
.faq__item.is-open .faq__q::after { content: "−"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a-inner { padding: 0 1.3rem 1.3rem; color: var(--c-text-sub); }

/* ---------- アクセス（S12） ---------- */
.access { display: grid; gap: 1.6rem; }
.access__table { width: 100%; border-collapse: collapse; }
.access__table th, .access__table td { text-align: left; padding: .9rem .4rem; border-bottom: 1px solid var(--c-border); vertical-align: top; }
.access__table th { width: 6.5em; color: var(--c-text-sub); font-weight: 700; }

/* ---------- 最終CTA（S13） ---------- */
.final-cta { background: var(--c-text); color: #fff; text-align: center; }
.final-cta .section-title { color: #fff; }
.final-cta .eyebrow { color: rgba(255,255,255,.6); }
.final-cta p { color: rgba(255,255,255,.8); margin-top: 1rem; }
.final-cta__actions { display: grid; gap: .8rem; max-width: 420px; margin: 2rem auto 0; }
.final-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.final-cta .btn-outline:hover { background: #fff; color: var(--c-text); }

/* ---------- フッター ---------- */
.footer { background: var(--c-bg-alt); padding-block: 2.5rem; border-top: 1px solid var(--c-border); }
.footer__inner { display: grid; gap: 1.2rem; text-align: center; }
.footer .brand { justify-content: center; }
.footer__links { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; font-size: .9rem; color: var(--c-text-sub); }
.footer__copy { font-size: .8rem; color: var(--c-text-sub); }

/* ---------- スマホ追従LINEボタン ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: flex; gap: .6rem; padding: .7rem .9rem;
  background: rgba(250,249,247,.95); backdrop-filter: blur(8px);
  border-top: 1px solid var(--c-border);
}
.sticky-cta .btn { min-height: 52px; flex: 1; }
.sticky-cta .btn-phone { flex: 0 0 56px; padding: 0; }

/* ---------- 仮画像プレースホルダ（撮影指示を兼ねる） ---------- */
.ph {
  position: relative; width: 100%; border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, #ece9e2 0 12px, #f3f1ea 12px 24px);
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.ph-wide   { aspect-ratio: 16 / 10; }
.ph-tall   { aspect-ratio: 3 / 4; }
.ph-square { aspect-ratio: 1 / 1; }
.ph-hero   { aspect-ratio: 4 / 3; }
.ph__inner { text-align: center; padding: 1rem; color: #6b675e; max-width: 90%; }
.ph__id { font-family: var(--font-en); font-weight: 700; letter-spacing: .12em; font-size: .8rem;
  background: var(--c-text); color: #fff; padding: .2rem .6rem; border-radius: 6px; display: inline-block; }
.ph__cam { font-size: 1.6rem; display: block; margin-bottom: .4rem; }
.ph__desc { font-size: .9rem; margin-top: .5rem; line-height: 1.6; }
.ph__orient { font-size: .72rem; margin-top: .4rem; letter-spacing: .1em; color: #8a857a; }

/* ---------- ユーティリティ ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.spacer-cta { height: 84px; }   /* 追従ボタンと重ならない余白（モバイル） */

/* =============================================================
   レスポンシブ（タブレット〜PC）
   ============================================================= */
@media (min-width: 768px) {
  body { font-size: 18px; }
  :root { --space-section: 6rem; }

  .nav { display: flex; gap: 1.4rem; align-items: center; }
  .header__cta { display: inline-flex; }
  .hamburger, .mobile-menu { display: none; }

  .hero__inner { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 2.5rem; padding-block: 3.5rem 4rem; }
  .hero__actions { grid-template-columns: 1fr 1fr; max-width: 520px; }

  .worries__grid { grid-template-columns: 1fr 1fr; }
  .feature { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .feature--reverse .feature__media { order: 2; }
  .reasons__grid { grid-template-columns: repeat(3, 1fr); }
  .voices__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
  .trainer { grid-template-columns: .8fr 1.2fr; gap: 2.5rem; align-items: center; }
  .access { grid-template-columns: 1fr 1fr; }

  .sticky-cta { display: none; }      /* PCでは追従ボタン非表示 */
  .spacer-cta { display: none; }
}

@media (min-width: 1024px) {
  .hero__copy h1 { font-size: 3.4rem; }
}

/* =============================================================
   B案：人（若井トレーナー）を主役にしたフルスクリーン・ヒーロー
   ※TTBの構成を参考。色は練馬ベースのモノクロを厳守（オレンジ不使用）
   ※A案の既存スタイルには影響しない（B案専用クラスのみ）
   ============================================================= */
.hero-b {
  position: relative; min-height: 86vh; display: flex; align-items: stretch;
  color: #fff; overflow: hidden; isolation: isolate;
}
@media (min-width: 768px) { .hero-b { min-height: 90vh; } }

/* 背景スライド（写真の代わりに“写真風”グラデ。実写真入手後に差し替え） */
.hero-b__slides { position: absolute; inset: 0; z-index: -2; }
.hero-b__slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease;
  background-size: cover; background-position: center;
}
.hero-b__slide.is-active { opacity: 1; }
/* ヒーロー実写3枚（5秒ごとフェード）。background-positionで顔・身体が切れないよう調整 */
.hero-b__slide--1 { background: #ddd6c8 url("../images/hero/hero-01-female-personal-web.jpg") center 28% / cover no-repeat; }
.hero-b__slide--2 { background: #cfc8bb url("../images/hero/hero-02-male-bench-web.jpg") center 32% / cover no-repeat; }
/* 施設：最初の構図（全景）。看板は後日、修正版画像に差し替え予定のため大きなトリミングはしない */
.hero-b__slide--3 { background: #d8d1c4 url("../images/hero/hero-03-gym-facility-web.jpg") center center / cover no-repeat; }
/* スマホ（縦長）は左右が切れるため、各スライドの表示位置を最適化 */
@media (max-width: 767px) {
  .hero-b__slide--1 { background-position: 60% 26%; }   /* 女性＋トレーナーの顔を残す */
  .hero-b__slide--2 { background-position: center 24%; }
  .hero-b__slide--3 { background-position: center center; } /* 施設は中央（全景） */
}
/* 文字を読みやすくする暗幕 */
.hero-b__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(17,17,17,.52) 0%, rgba(17,17,17,.36) 45%, rgba(17,17,17,.62) 100%);
}
/* 撮影指示ラベル（隅に小さく＝撮影指示書を兼ねる） */
.hero-b__shoot {
  position: absolute; right: .8rem; bottom: .8rem; z-index: 1;
  font-size: .72rem; letter-spacing: .04em; color: rgba(255,255,255,.9);
  background: rgba(17,17,17,.5); border: 1px solid rgba(255,255,255,.35);
  padding: .3rem .6rem; border-radius: 6px;
}
.hero-b__content { position: relative; z-index: 1; width: 100%; padding-block: 3.4rem 3rem; display: flex; flex-direction: column; justify-content: space-between; }
/* 説明文：ヒーロー下部・人物に被らない・少し小さめ */
.hero-b__lead { max-width: 40rem; margin: 0 auto; font-size: .98rem; line-height: 1.8; color: rgba(255,255,255,.95); text-shadow: 0 1px 10px rgba(0,0,0,.55); }

/* 装飾付きアイブロウ（両側に線） */
.eyebrow-deco {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  font-size: .95rem; letter-spacing: .14em; margin-bottom: 1.1rem; color: #fff;
}
.eyebrow-deco::before, .eyebrow-deco::after {
  content: ""; height: 1px; width: clamp(28px, 8vw, 64px); background: rgba(255,255,255,.75);
}
.hero-b h1 {
  text-align: center; font-size: clamp(1.7rem, 5.6vw, 3rem); font-weight: 800;
  line-height: 1.42; letter-spacing: .02em; text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-b__sub {
  text-align: center; max-width: 40rem; margin: 1.2rem auto 0;
  color: rgba(255,255,255,.94); font-size: 1.05rem; text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
.hero-b__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.9rem; }

/* 特徴バッジ（TTB参考・モノクロ：すりガラス白） */
.badges {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem;
  max-width: 900px; margin: 2.2rem auto 0;
}
@media (min-width: 768px) { .badges { grid-template-columns: repeat(4, 1fr); } }
.badge {
  background: rgba(255,255,255,.93); color: var(--c-text); border-radius: 12px;
  padding: .95rem .6rem; text-align: center; font-weight: 700; font-size: .95rem;
  line-height: 1.45; box-shadow: 0 10px 28px rgba(0,0,0,.2); backdrop-filter: blur(3px);
}

/* 悩みパネル（ヒーローに重なる白パネル） */
.worries-panel {
  position: relative; z-index: 2; background: var(--c-white);
}
/* ヒーロー直下：導入文＋特徴（写真主役のためヒーローから移動） */
.intro-lead .container { max-width: 860px; text-align: center; }
.intro-lead__text { font-size: 1.15rem; line-height: 1.95; }
.intro-points { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: 1.8rem; }
@media (min-width: 768px) { .intro-points { grid-template-columns: repeat(4, 1fr); } }
.intro-points li { background: var(--c-white); border: 1px solid var(--c-border); border-radius: 12px; padding: .85rem .6rem; font-weight: 700; font-size: .95rem; box-shadow: var(--shadow-soft); }
.worries-panel__inner { padding: 2.6rem 0 3rem; }

/* ヒーロー内テキストの読み込み時フェード */
.hero-b__content > * { animation: fadeUp .8s ease both; }
.hero-b__content > *:nth-child(1) { animation-delay: .05s; }
.hero-b__content > *:nth-child(2) { animation-delay: .15s; }
.hero-b__content > *:nth-child(3) { animation-delay: .25s; }
.hero-b__content > *:nth-child(4) { animation-delay: .35s; }
.hero-b__content > *:nth-child(5) { animation-delay: .45s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* スクロール出現アニメ（JS有効時のみ。失敗時は常に表示＝堅牢） */
.reveal-on [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal-on [data-reveal].is-visible { opacity: 1; transform: none; }

/* B案：トレーナー写真を大きく見せる */
.trainer--b .trainer__media .ph { aspect-ratio: 4 / 5; }
@media (min-width: 768px) { .trainer--b { grid-template-columns: 1fr 1fr; } }

/* 動きを減らす設定の人には演出を無効化 */
@media (prefers-reduced-motion: reduce) {
  .hero-b__slide { transition: none; }
  .hero-b__content > * { animation: none; }
  .reveal-on [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =============================================================
   B案・改善：ヒーロー情景イラスト対応／スマホ最適化／トレーナー人柄
   ============================================================= */
/* ヒーロー見出しを少し大きく（中高年の可読性） */
.hero-b h1 { font-size: clamp(1.7rem, 6vw, 2.7rem); }
/* スマホはボタンを縦full幅（押しやすさ）。PCで横並びに戻す */
.hero-b__actions { flex-direction: column; align-items: center; flex-wrap: nowrap; }
.hero-b__actions .btn { width: 100%; max-width: 380px; }
@media (min-width: 768px) {
  .hero-b__actions { flex-direction: row; }
  .hero-b__actions .btn { width: auto; }
}

/* トレーナー写真（仮イラスト／実写真） */
.trainer__photo { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--c-border); display: block; }
.trainer__caption { text-align: center; margin-top: .6rem; font-size: .8rem; color: var(--c-text-sub); }

/* 人柄が伝わる「約束」リスト */
.trainer__message {
  background: var(--c-bg-alt); border-left: 3px solid var(--c-text);
  border-radius: 10px; padding: 1.2rem 1.3rem; margin-top: 1.2rem; font-size: 1rem;
}
.trainer-promise { display: grid; gap: .7rem; margin: 1.4rem 0; }
.trainer-promise li {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 12px; padding: .9rem 1.1rem; box-shadow: var(--shadow-soft);
}
.trainer-promise .ic {
  flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--c-bg-alt);
  display: grid; place-items: center; font-size: 1.05rem; margin-top: .1rem;
}
.trainer-promise strong { display: block; font-size: 1.02rem; line-height: 1.5; }
.trainer-promise span { color: var(--c-text-sub); font-size: .95rem; }

/* 実写写真（about / rental / access などのセクション） */
.section-photo {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--c-border); display: block;
}
/* トレーナー実写（横位置1448×1086）：縦長カード寄り＋全体を約91%に縮小して、
   右側の文章との存在感バランス（約50:50）を整える。顔・左胸ロゴ（中央）は保持 */
.trainer__photo { aspect-ratio: 4 / 5; object-fit: cover; object-position: center; width: 91%; margin-inline: auto; }

/* =============================================================
   体験トレーニング（CTA・料金）※2026-06-01 確定：無料体験は無し／体験¥4,400
   ============================================================= */
/* ヒーロー内の体験ひとこと */
.hero-b__trial {
  margin-top: 1.1rem; font-size: .98rem; font-weight: 700; color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.hero-b__trial b { font-size: 1.15em; }

/* 体験トレーニング 案内バンド（CTA） */
.trial-band .container { max-width: 760px; text-align: center; }
.trial-band__card {
  background: var(--c-white); border: 2px solid var(--c-text);
  border-radius: var(--radius-lg); padding: 2.2rem 1.5rem; box-shadow: var(--shadow);
}
.trial-band__price { font-size: clamp(1.7rem, 6vw, 2.4rem); font-weight: 800; margin: .5rem 0 .2rem; }
.trial-band__price b { font-size: 1.25em; }
.trial-band__price small { font-size: .5em; font-weight: 400; color: var(--c-text-sub); }
.trial-band__note { color: var(--c-text-sub); margin: .5rem auto 1.4rem; max-width: 34rem; }

/* キャンペーンの強調ピル（モノクロ） */
.campaign-badge {
  display: inline-block; background: var(--c-text); color: #fff;
  font-weight: 700; font-size: .9rem; letter-spacing: .02em;
  padding: .45rem 1.1rem; border-radius: 999px;
}

/* 料金内の体験ブロック（trial-slot を実データ化） */
.trial-slot {
  margin-top: 1.6rem; border: 2px solid var(--c-text); border-radius: var(--radius);
  padding: 1.8rem 1.4rem; text-align: center; background: var(--c-white); color: var(--c-text);
}
.trial-slot__title { font-weight: 700; }
.trial-slot__price { font-size: 2rem; font-weight: 800; margin: .3rem 0; }
.trial-slot__price small { font-size: .5em; font-weight: 400; color: var(--c-text-sub); }
.trial-slot__note { color: var(--c-text-sub); font-size: .95rem; margin: .7rem 0 1.2rem; }

/* トレーナープロフィール（資格・歴・得意分野） */
.profile { margin: 1.4rem 0 0; }
.profile > div { display: grid; grid-template-columns: 5.5em 1fr; gap: .8rem; padding: .7rem 0; border-bottom: 1px solid var(--c-border); }
.profile dt { margin: 0; color: var(--c-text-sub); font-weight: 700; font-size: .9rem; }
.profile dd { margin: 0; font-size: .95rem; line-height: 1.7; }
.trainer__who-title { font-weight: 800; font-size: 1.12rem; margin: 1.6rem 0 .9rem; }

/* お客様の声：差出人表記 */
.voice__by { margin-top: 1.1rem; color: var(--c-text-sub); font-size: .9rem; font-weight: 700; }

/* =============================================================
   下層ページ（プライバシーポリシー等）の本文スタイル
   ============================================================= */
.nav-back { font-size: .95rem; color: var(--c-text-sub); }
.nav-back:hover { color: var(--c-text); }
.page-title { text-align: center; margin-bottom: 2.4rem; }
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { font-size: 1.25rem; font-weight: 800; margin: 2.4rem 0 .8rem; line-height: 1.5; }
.legal h2:first-of-type { margin-top: 0; }
.legal p { margin-bottom: 1rem; }
.legal ul, .legal ol { padding-left: 1.4rem; margin: 0 0 1rem; }
.legal li { margin-bottom: .45rem; }
.legal a { text-decoration: underline; }
.legal .updated { color: var(--c-text-sub); font-size: .9rem; margin-top: 2.4rem; }
.legal dl.info { border: 1px solid var(--c-border); border-radius: var(--radius); padding: 1.2rem 1.4rem; background: var(--c-white); }
.legal dl.info > div { display: grid; grid-template-columns: 7em 1fr; gap: .8rem; padding: .5rem 0; }
.legal dl.info dt { color: var(--c-text-sub); font-weight: 700; font-size: .92rem; margin: 0; }
.legal dl.info dd { margin: 0; }
