@charset "UTF-8";
/* ==========================================================================
   ミッツ隊長 パーソナルトレーニング｜スタイルシート

   【この中身の並び順】
    1. 設定（色・文字・余白）← 色や文字サイズを変えたいときはここ
    2. 土台（リセット・共通の書式）
    3. 共通パーツ（ボタン・見出し・カードなど）
    4. ヘッダー／メニュー
    5. ① ファーストビュー
    6. ② お悩み
    7. ③ コンセプト＋プロフィール
    8. ④ サービス
    9. ⑤ 選ばれる理由
   10. ⑥ 体験トレーニングの流れ
   11. ⑦ お客様が目指す未来
   12. ⑧ 対応エリア
   13. ⑨ よくある質問
   14. ⑩ お問い合わせ（CTA）
   15. フッター／スマホ用の固定バー
   16. 動きの設定（アニメーション）

   ※スマホ表示が基本です。「PC表示（○○px以上）」と書いてある部分が
     画面の広いときだけ適用される設定です。
   ========================================================================== */


/* ==========================================================================
   1. 設定（色・文字・余白）
   ========================================================================== */
:root {
  /* --- 色 --- */
  --ink:        #161A14;   /* 文字・濃い背景（黒に近いオリーブ） */
  --ink-soft:   #4A5145;   /* 補足の文字 */
  --olive:      #4B5320;   /* ブランドカラー（自衛隊のオリーブ） */
  --olive-deep: #22271A;   /* 濃い背景 */
  --olive-mid:  #333A26;   /* 濃い背景の中のカード */
  --signal:     #D2461B;   /* 申し込みボタンなど、目立たせたい所だけ */
  --signal-dark:#B23A15;   /* ボタンにマウスを乗せたとき */
  --paper:      #FCFBF7;   /* 基本の背景（白に近い） */
  --sand:       #F1EDE0;   /* 1つおきのセクション背景（生成り） */
  --line:       #D8D2C0;   /* 罫線 */

  /* --- 文字 --- */
  /* 日本語は端末に入っているフォントを使います（読み込みが速く、表示崩れも起きません） */
  --font-base: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  /* 英字ラベル・数字用（等幅フォント）。書類のような雰囲気を出すために使っています */
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Courier New", monospace;

  /* --- 余白・その他 --- */
  --container: 1080px;     /* 中身の最大幅 */
  --header-h: 60px;        /* ヘッダーの高さ（スマホ） */
  --notch: 18px;           /* カード右上の「切り欠き」の大きさ */
}


/* ==========================================================================
   2. 土台（リセット・共通の書式）
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

body, h1, h2, h3, p, ul, ol, li, figure, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol { list-style: none; }

html {
  scroll-behavior: smooth;          /* メニューを押したときになめらかに移動 */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }

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

/* キーボード操作のとき、今どこにいるかが分かるようにする */
:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

/* 画面外に隠しておく「本文へスキップ」リンク */
.skip-link {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

/* アイコンのまとめ置き場は表示しない */
.icon-sprite { display: none; }

/* 中身の横幅をそろえる箱 */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.container--narrow { max-width: 760px; }

/* メニューから飛んだとき、見出しがヘッダーの下に隠れないようにする */
section[id] { scroll-margin-top: var(--header-h); }

/* セクション（大きな区切り）の上下の余白 */
.section { padding-block: 64px; }
.section--sand { background: var(--sand); }

.center { text-align: center; }

/* スマホだけ改行したいときに使う（PCでは改行しない） */
.br-sp { display: inline; }


/* ==========================================================================
   3. 共通パーツ（ボタン・見出し・カード）
   ========================================================================== */

/* --- 英字の小見出し（TROUBLE / SERVICE など） --- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--olive);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--signal);
}
.eyebrow--light { color: #C7CBAE; }          /* 濃い背景の上で使うとき */
.sec-head .eyebrow { justify-content: center; }

/* --- セクションの見出し --- */
.sec-head { text-align: center; margin-bottom: 34px; }

.sec-title {
  font-size: clamp(23px, 6vw, 34px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
.sec-title--left { text-align: left; }

.sec-note {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* 見出しの下に置く説明文 */
.sec-lead {
  max-width: 40em;
  margin: 14px auto 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
}

/* --- ボタン --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #fff;
  background: var(--ink);
  border: none;
  cursor: pointer;
  transition: background-color .2s, transform .2s;
}
.btn:hover { background: #000; transform: translateY(-2px); }

.btn--signal { background: var(--signal); }
.btn--signal:hover { background: var(--signal-dark); }

.btn--dark { background: var(--ink); }

.btn--sm { padding: 11px 18px; font-size: 13px; }
.btn--block { display: flex; width: 100%; }

.btn__icon {
  width: 18px; height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s;
}
.btn:hover .btn__icon { transform: translateX(4px); }

/* --- アイコン --- */
.icon {
  width: 26px; height: 26px;
  flex: none;
  fill: none;
  stroke: var(--olive);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--lg { width: 34px; height: 34px; }

/* --- 右上の角を切り落とした「タグ」風の形（このサイトの特徴的なデザイン） --- */
.notch {
  clip-path: polygon(0 0, calc(100% - var(--notch)) 0, 100% var(--notch), 100% 100%, 0 100%);
}

/* --- カード（サービス・選ばれる理由で使用） --- */
.cards { display: grid; gap: 16px; }

.card {
  background: var(--sand);                 /* 白い背景のセクションで使うとき */
  border-top: 2px solid var(--olive);
  padding: 26px 22px 28px;
}
.section--sand .card { background: #fff; } /* 生成りの背景のセクションでは白に */

.card__title {
  margin: 14px 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}
.card__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* PC表示（768px以上） */
@media (min-width: 768px) {
  .section { padding-block: 96px; }
  .sec-head { margin-bottom: 48px; }
  .br-sp { display: none; }
  .cards { gap: 22px; }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .container { padding-inline: 32px; }
}
@media (min-width: 1000px) {
  .cards--4 { grid-template-columns: repeat(4, 1fr); }
}


/* ==========================================================================
   4. ヘッダー／メニュー
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(252, 251, 247, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
/* 少しスクロールしたら影をつける（JavaScriptでクラスを付け外ししています） */
.header.is-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }

.header__inner {
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* --- ロゴ --- */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__img {
  width: 34px; height: 34px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  background: var(--sand);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__name { font-size: 16px; font-weight: 700; letter-spacing: 0.06em; }
.logo__sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--olive);
}

/* --- メニュー（スマホでは画面右から出てくる） --- */
.nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  width: min(320px, 84%);
  height: calc(100dvh - var(--header-h));
  padding: 26px 24px 40px;
  background: var(--paper);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(105%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.nav.is-open { transform: translateX(0); }

.nav__list { display: flex; flex-direction: column; }
.nav__list a {
  display: block;
  padding: 14px 4px;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.nav__list a:hover { color: var(--signal); }

.nav__cta { margin-top: 20px; }

/* メニューを開いたときの黒い幕 */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(22, 26, 20, .5);
  opacity: 0;
  transition: opacity .3s;
}
.nav-overlay.is-visible { opacity: 1; }

/* --- 三本線ボタン --- */
.menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 46px;
  padding: 6px 0;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}
.menu-btn__bars,
.menu-btn__bars::before,
.menu-btn__bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .2s;
}
.menu-btn__bars { position: relative; }
.menu-btn__bars::before,
.menu-btn__bars::after { content: ""; position: absolute; left: 0; }
.menu-btn__bars::before { top: -7px; }
.menu-btn__bars::after  { top: 7px; }

/* 開いているときは「×」に変形 */
.menu-btn[aria-expanded="true"] .menu-btn__bars { background: transparent; }
.menu-btn[aria-expanded="true"] .menu-btn__bars::before { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-btn__bars::after  { transform: translateY(-7px) rotate(-45deg); }

.menu-btn__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

/* PC表示（900px以上）：メニューを横並びに戻す */
@media (min-width: 900px) {
  :root { --header-h: 74px; }
  .menu-btn, .nav-overlay { display: none; }

  .nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: none;
    border: none;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    transform: none;
    overflow: visible;
  }
  .nav__list { flex-direction: row; gap: 22px; }
  .nav__list a { padding: 6px 0; font-size: 14px; border-bottom: none; }
  .nav__cta { margin-top: 0; }

  .logo__img { width: 40px; height: 40px; }
  .logo__name { font-size: 18px; }
  .header__inner { padding-inline: 32px; }
}


/* ==========================================================================
   5. ① ファーストビュー
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  padding-top: calc(var(--header-h) + 44px);
  padding-bottom: 48px;
  background: var(--olive-deep);
  color: #fff;
  overflow: hidden;
}

/* --- 背景写真 --- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 42%;   /* 写真のどこを見せるか（左右% 上下%）。人物が隠れるときはここを調整 */
}
/* 写真の上に重ねる暗い幕。文字を読みやすくするためのものです */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,27,18,.80) 0%, rgba(22,27,18,.68) 45%, rgba(22,27,18,.92) 100%);
}

/* 背景のうっすらした斜めのライン */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 9px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.hero__title {
  font-size: clamp(26px, 7.2vw, 46px);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.hero__title em {
  font-style: normal;
  color: #E9DF9C;                     /* 「生命力」だけ色を変えて強調 */
}
/* h1の中に入れた、サービス内容を説明する小さい行 */
.hero__title-sub {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #C7CBAE;
}

.hero__lead {
  font-size: 15px;
  line-height: 1.9;
  color: #D5D8C8;
  margin-bottom: 28px;
}

/* --- 価格カード --- */
.price-card {
  background: var(--olive-mid);
  border-top: 2px solid var(--signal);
  padding: 20px 22px 22px;
  text-align: center;
}
.price-card__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #D5D8C8;
}
.price-card__price {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 4px 0 16px;
}
.price-card__yen { font-size: 24px; margin-right: 2px; }
.price-card__tax { font-size: 12px; margin-left: 6px; font-family: var(--font-base); color: #C7CBAE; }

/* PC表示（900px以上）：文章を左に寄せ、写真の人物が右に見えるようにする */
@media (min-width: 900px) {
  .hero {
    min-height: 700px;
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 72px;
  }
  .hero__inner { max-width: 1180px; padding-inline: 32px; }
  .hero__body { max-width: 620px; }

  /* 左（文字側）を濃く、右（人物側）を明るく残す */
  .hero__bg::after {
    background: linear-gradient(90deg,
      rgba(22,27,18,.94) 0%,
      rgba(22,27,18,.86) 38%,
      rgba(22,27,18,.45) 68%,
      rgba(22,27,18,.30) 100%);
  }
  .hero__bg img { object-position: 60% 22%; }

  .hero__lead { max-width: 30em; }
  .price-card { max-width: 430px; text-align: left; }
  .price-card__price { margin-bottom: 18px; }
}


/* ==========================================================================
   6. ② お悩み
   ========================================================================== */
.trouble__list {
  display: grid;
  gap: 12px;
}
.trouble__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.trouble__closing {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
}
.trouble__closing strong {
  border-bottom: 3px solid var(--signal);
  padding-bottom: 2px;
}

@media (min-width: 768px) {
  .trouble__list { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .trouble__item { flex-direction: column; text-align: center; gap: 10px; padding: 26px 18px; }
  .trouble__closing { margin-top: 40px; font-size: 18px; }
}


/* ==========================================================================
   7. ③ コンセプト＋プロフィール
   ========================================================================== */
.concept__figure { margin-top: 26px; }
/* 縦長の写真なので、切り抜いて横長に見せています */
.concept__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 22%;   /* 顔の位置に合わせて上下を調整できます */
}

.concept__text {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
}
.concept__text + .concept__text { margin-top: 1em; }
.concept .sec-title { margin-bottom: 18px; }

/* --- プロフィール --- */
.profile {
  margin-top: 48px;
  padding: 26px 22px 28px;
  background: var(--sand);
  border-left: 4px solid var(--olive);
}
.profile__figure { margin-bottom: 20px; }
.profile__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.profile__role {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--olive);
  margin-top: 4px;
}
.profile__text { font-size: 14px; line-height: 1.9; color: var(--ink-soft); }

@media (min-width: 768px) {
  .concept {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }
  .concept__figure { margin-top: 0; }
  .concept__figure img { aspect-ratio: 5 / 6; }   /* PCでは縦長のまま見せる */

  .profile {
    margin-top: 72px;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    gap: 32px;
    padding: 32px;
  }
  .profile__figure { margin-bottom: 0; }
}


/* ==========================================================================
   8. ④ サービス
   ========================================================================== */
/* カードの基本デザインは「3. 共通パーツ」の .card にまとめています */


/* ==========================================================================
   9. ⑤ 選ばれる理由
   ========================================================================== */
.card--reason { text-align: center; }
.card--reason .icon { margin-inline: auto; }


/* ==========================================================================
   10. ⑥ 体験トレーニングの流れ
   ========================================================================== */
.flow {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}
.flow__step {
  position: relative;
  background: #fff;
  border-top: 2px solid var(--olive);
  padding: 20px 22px 24px;
}
.flow__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-family: var(--font-mono);
}
.flow__num {
  font-size: 26px;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: 0.02em;
}
.flow__time {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--olive);
  padding: 3px 10px;
}
.flow__title {
  margin: 10px 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}
.flow__text { font-size: 14px; line-height: 1.8; color: var(--ink-soft); }

@media (min-width: 768px) {
  .flow { grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 48px; }
  .flow__step { padding: 24px 20px 28px; }
  /* 各ステップの間に矢印を表示 */
  .flow__step + .flow__step::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -13px;
    width: 8px; height: 8px;
    border-top: 2px solid var(--olive);
    border-right: 2px solid var(--olive);
    transform: translateY(-50%) rotate(45deg);
  }
}


/* ==========================================================================
   11. ⑦ お客様が目指す未来
   ========================================================================== */
.future__list {
  display: grid;
  gap: 12px;
}
.future__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--sand);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .future__list { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .future__item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 28px 14px;
    font-size: 14px;
  }
}


/* ==========================================================================
   12. ⑧ 対応エリア
   ========================================================================== */
.area__list { display: grid; gap: 16px; }
.area__item {
  background: #fff;
  border-top: 2px solid var(--olive);
  padding: 26px 22px;
  text-align: center;
}
.area__item .icon { margin-inline: auto; }
.area__title { margin: 12px 0 4px; font-size: 18px; font-weight: 700; }
.area__text { font-size: 15px; font-weight: 700; color: var(--olive); }
.area__detail {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.area__note {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}

/* --- サービス概要の表 --- */
.spec {
  margin-top: 34px;
  border-top: 2px solid var(--olive);
  background: #fff;
}
.spec__row {
  display: grid;
  gap: 2px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.spec__key {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--olive);
}
.spec__val { font-size: 14px; line-height: 1.8; }

@media (min-width: 768px) {
  .area__list { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .area__item { padding: 34px 24px; }

  .spec { margin-top: 44px; }
  .spec__row {
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 16px 24px;
  }
  .spec__key { padding-top: 2px; }
}


/* ==========================================================================
   13. ⑨ よくある質問
   ========================================================================== */
.faq__list { border-top: 1px solid var(--line); }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__q {
  position: relative;
  display: block;
  padding: 20px 44px 20px 30px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;                    /* 標準の三角マークを消す */
}
.faq__q::-webkit-details-marker { display: none; }

/* 頭の「Q.」 */
.faq__q::before {
  content: "Q.";
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  color: var(--signal);
}
/* 右側の開閉マーク（＋ / −） */
.faq__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--olive);
  border-bottom: 2px solid var(--olive);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s;
}
.faq__item[open] .faq__q::after { transform: translateY(-20%) rotate(-135deg); }

.faq__a {
  padding: 0 44px 22px 30px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.faq__a::before { content: none; }

@media (min-width: 768px) {
  .faq__q { font-size: 16px; padding-block: 24px; }
}


/* ==========================================================================
   14. ⑩ お問い合わせ（CTA）
   ========================================================================== */
.cta {
  position: relative;
  padding-block: 72px;
  color: #fff;
  background:
    linear-gradient(rgba(22,27,18,.86), rgba(22,27,18,.9)),
    url("../images/training-sandbag.webp") center/cover no-repeat;
  background-attachment: scroll;
}
.cta__inner { text-align: center; }
.cta .eyebrow { justify-content: center; }

.cta__title {
  font-size: clamp(23px, 6.2vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.cta__text {
  margin-top: 14px;
  font-size: 15px;
  color: #D5D8C8;
}

.price-card--dark {
  max-width: 460px;
  margin: 28px auto 0;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
  .cta { padding-block: 104px; }
  .price-card--dark { text-align: center; }
}


/* ==========================================================================
   15. フッター／スマホ用の固定バー
   ========================================================================== */
.footer {
  background: var(--ink);
  color: #fff;
  padding-block: 36px;
  padding-bottom: 100px;               /* スマホの固定バーに隠れないよう余白を確保 */
}
.footer__inner { text-align: center; }

.footer__logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer__logo span {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #A8AD8E;
  margin-top: 4px;
}

.footer__info {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.9;
  color: #C7CBAE;
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 24px 0;
  font-size: 13px;
}
.footer__nav a:hover { color: #E9DF9C; }

.footer__copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #A8AD8E;
}

/* --- スマホで下に固定される申し込みバー --- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(34,39,26,.96);
  border-top: 2px solid var(--signal);
  transform: translateY(110%);
  transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta__price {
  font-size: 12px;
  line-height: 1.4;
  color: #D5D8C8;
}
.sticky-cta__price strong {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 19px;
  color: #fff;
}
.sticky-cta__price span { font-size: 10px; margin-left: 3px; }

/* PC表示（900px以上）では固定バーは出しません */
@media (min-width: 900px) {
  .sticky-cta { display: none; }
  .footer { padding-bottom: 36px; }
}


/* ==========================================================================
   16. 動きの設定（アニメーション）
   ========================================================================== */
/* スクロールして画面に入ったら、ふわっと表示する */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-shown { opacity: 1; transform: none; }

/* 並んだ要素を少しずつ遅らせて表示 */
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }

/* 「動きを減らす」設定にしている人には、アニメーションを止める */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
