@charset "UTF-8";

/* =========================================================
   5GRFX / Sports Support LP
   管理しやすい整理版 CSS
   ---------------------------------------------------------
   【設計ルール】
   1. 変数
   2. ベース
   3. 共通レイアウト
   4. ヘッダー
   5. HERO
   6. 共通ボタン / CTA
   7. 共通セクション見出し
   8. 共通カード
   9. 各セクション個別
   10. フォーム
   11. フッター
   12. レスポンシブ
   ---------------------------------------------------------
   【注意】
   - 既存HTMLに合わせて class名は変えていません
   - 見た目を壊さないことを最優先で整理しています
   - 重複していた指定は統合済み
========================================================= */


/* =========================================================
   1. Design Tokens / 変数
   ---------------------------------------------------------
   サイト全体で使う色・サイズ・影をここで管理
   後で色味を変えるならまずここを見る
========================================================= */
:root{
  /* 背景 */
  --bg:#f4f7fa;
  --bg-soft:#f6f4ef;
  --panel:#ffffff;
  --panel-soft:#fbfaf7;

  /* 文字 */
  --text:#111111;
  --muted:#66605a;

  /* 線 */
  --line:rgba(0,0,0,.08);

  /* ブランドカラー */
  --accent:#b51f26;
  --accent-strong:#d62f38;
  --gold:#b99654;
  --gold-soft:#d6be8f;

  /* サイズ */
  --max:1240px;
  --radius:24px;

  /* 影 */
  --shadow:0 18px 45px rgba(0,0,0,.10);
}


/* =========================================================
   2. Base / 全体の基本設定
   ---------------------------------------------------------
   body, a, img など全ページ共通の土台
========================================================= */
*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,"Hiragino Sans","Yu Gothic",sans-serif;
  line-height:1.7;
  letter-spacing:.02em;
}

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

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


/* =========================================================
   3. Common Layout / 共通レイアウト
   ---------------------------------------------------------
   container, section など余白や幅の共通設定
========================================================= */

/* 全セクション共通 */
section{
  padding:96px 0;
  border-top:1px solid rgba(0,0,0,.06);
}

/* セクション背景を交互にする */
section:nth-of-type(odd){
  background:#ffffff;
}

section:nth-of-type(even){
  background:#f6f6f4;
}

/* 中央寄せ幅 */
.container{
  width:min(calc(100% - 40px), var(--max));
  margin:0 auto;
}

/* 少し狭い幅にしたい箇所用 */
.narrow{
  max-width:980px;
}


/* =========================================================
   4. Header / ヘッダー
========================================================= */
.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1000;
  background:#ffffff;
  border-bottom:1px solid rgba(0,0,0,.08);
  transition:background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:78px;
  transition:min-height .25s ease;
}

/* ロゴ */
.brand{
  z-index:1200;
  display:flex;
  flex-direction:column;
  gap:2px;
}

.brand-mark{
  font-size:38px;
  font-weight:900;
  line-height:.9;
  letter-spacing:-.05em;
}

.brand-sub{
  color:var(--muted);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

/* PCナビ */
.nav{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:22px;
}

.nav a{
  color:var(--text);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  transition:.25s ease;
}

.nav a:hover,
.nav a:focus-visible{
  color:var(--accent);
}

/* スクロールで少しコンパクトに */
.site-header.is-compact{
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.site-header.is-compact .site-header-inner{
  min-height:60px;
}

.site-header.is-compact .brand-mark{
  font-size:30px;
}


/* =========================================================
   5. Mobile Menu Button / ハンバーガーボタン
========================================================= */
.menu-toggle{
  display:none;
  z-index:1200;
  align-items:center;
  gap:12px;
  min-width:92px;
  height:48px;
  padding:0 16px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:999px;
  background:#fff;
  color:var(--text);
  cursor:pointer;
  transition:background .25s ease, border-color .25s ease, transform .25s ease;
}

.menu-toggle:hover{
  background:#f5f5f5;
  border-color:rgba(0,0,0,.22);
  transform:translateY(-1px);
}

.menu-label{
  color:var(--muted);
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.menu-icon{
  position:relative;
  display:block;
  width:18px;
  height:14px;
}

.menu-icon span{
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  border-radius:999px;
  background:var(--text);
  transition:transform .25s ease, opacity .25s ease, top .25s ease;
}

.menu-icon span:nth-child(1){ top:0; }
.menu-icon span:nth-child(2){ top:6px; }
.menu-icon span:nth-child(3){ top:12px; }

.menu-toggle.is-active .menu-icon span:nth-child(1){
  top:6px;
  transform:rotate(45deg);
}

.menu-toggle.is-active .menu-icon span:nth-child(2){
  opacity:0;
}

.menu-toggle.is-active .menu-icon span:nth-child(3){
  top:6px;
  transform:rotate(-45deg);
}


/* =========================================================
   6. Hero Section / ファーストビュー
   ---------------------------------------------------------
   最重要エリア
   背景写真・文字・右側パネルを管理
========================================================= */
.hero-sports{
  position:relative;
  display:flex;
  align-items:end;
  min-height:100svh;
  overflow:hidden;
  background:#000;
}

/* 背景写真 */
.hero-sports-photo{
  position:absolute;
  inset:0;
  background:url("boxing-top.webp") center center / cover no-repeat;
  filter:brightness(.72) contrast(1.03);
  transform:scale(1.03);
}
/* スマホ調整 */
@media (max-width:760px){
  .hero-sports-photo{
    background-position: 75% center;
  }
}

/* オーバーレイ */
.hero-sports-bg{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.58) 42%, rgba(0,0,0,.88)),
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.18) 42%, rgba(0,0,0,.78)),
    radial-gradient(58% 58% at 75% 18%, rgba(214,47,56,.22), rgba(214,47,56,0) 70%);
}

/* 中身 */
.hero-sports-inner{
  position:relative;
  z-index:2;
  width:100%;
  padding:140px 0 72px;
}

.hero-sports-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  align-items:end;
  gap:28px;
}

/* 上の小さい英字 */
.eyebrow{
  display:inline-block;
  margin:0 0 16px;
  color:var(--gold-soft);
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
}

/* 限定バッジ */
.limited-badge{
  display:inline-block;
  margin:0 0 18px;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent), var(--accent-strong));
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
}

/* メイン見出し */
.hero-sports h1{
  margin:0;
  max-width:16ch;
  color:#fff;
  font-size:clamp(40px, 6.4vw, 76px);
  font-weight:800;
  line-height:1.08;
  letter-spacing:-.035em;
  text-wrap:balance;
}

.hero-sports h1 strong{
  color:#fff;
}

/* リード文 */
.hero-lead{
  max-width:760px;
  margin:18px 0 0;
  color:#ece6db;
  font-size:clamp(15px, 1.8vw, 19px);
}

/* 右側のガラス風パネル */
.hero-panel{
  padding:28px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  background:linear-gradient(180deg, rgba(20,20,22,.78), rgba(14,14,16,.60));
  backdrop-filter:blur(10px);
  box-shadow:0 20px 50px rgba(0,0,0,.35);
  color:#fff;
}

.hero-panel h2{
  margin:0 0 12px;
  font-size:20px;
  font-weight:800;
  line-height:1.2;
}

.hero-list{
  display:grid;
  gap:10px;
  margin:18px 0 0;
  padding:0;
  list-style:none;
}

.hero-list li{
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#eee5d9;
  font-size:14px;
}


/* =========================================================
   7. Common Buttons / 共通ボタン
========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border:1px solid transparent;
  border-radius:999px;
  cursor:pointer;
  font-size:13px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:.25s ease;
}

.btn-primary{
  background:linear-gradient(135deg, var(--accent), var(--accent-strong));
  color:#fff;
  box-shadow:0 10px 30px rgba(214,47,56,.18);
}

.btn-primary:hover,
.btn-primary:focus-visible{
  transform:translateY(-1px);
  box-shadow:0 14px 34px rgba(214,47,56,.26);
}

.btn-secondary,
.btn-outline{
  background:#fff;
  color:var(--text);
  border-color:rgba(0,0,0,.12);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-outline:hover,
.btn-outline:focus-visible{
  color:var(--accent);
  border-color:var(--accent);
}


/* =========================================================
   8. CTA Buttons / 問い合わせ導線
   ---------------------------------------------------------
   HEROやセクション下の大きめボタン
========================================================= */
.cta-group{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  padding:16px 28px;
  border:1px solid transparent;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  letter-spacing:.02em;
  transition:all .25s ease;
}

.cta-btn.primary{
  background:#111;
  color:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.16);
}

.cta-btn.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(0,0,0,.22);
}

.cta-btn.secondary{
  background:#fff;
  color:#111;
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.cta-btn.secondary:hover{
  transform:translateY(-2px);
  border-color:rgba(0,0,0,.22);
  box-shadow:0 14px 30px rgba(0,0,0,.10);
}

.cta-note{
  margin-top:14px;
  color:#666;
  font-size:13px;
  line-height:1.7;
}

.cta-center{
  margin-top:36px;
  text-align:center;
}

.cta-center .cta-group{
  justify-content:center;
}


/* =========================================================
   9. Section Common / 見出し・導入文
========================================================= */
.section-light{
  background:#fff;
}

.intro-section,
.benefit-section{
  background:var(--bg-soft);
}

.contact-section{
  background:#fff;
}

.section-head{
  display:grid;
  grid-template-columns:.92fr 1.18fr;
  align-items:end;
  gap:30px;
  margin-bottom:30px;
}

.section-head.center{
  grid-template-columns:1fr;
  text-align:center;
}

.section-kicker{
  margin-bottom:10px;
  color:var(--gold);
  font-size:12px;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.section-title{
  margin:0 0 12px;
  font-size:clamp(28px, 3.1vw, 42px);
  font-weight:800;
  line-height:1.2;
  letter-spacing:-.02em;
}

.section-lead{
  max-width:760px;
  margin:0;
  color:var(--muted);
  font-size:16px;
}

.section-cta-mini{
  margin-top:28px;
  text-align:center;
}


/* =========================================================
   10. Common Cards / 共通カード
   ---------------------------------------------------------
   step, benefit, price などの白カードの基本形
========================================================= */
.card,
.price-card,
.step-card,
.sample-card,
.benefit-card,
.contact-wrap{
  background:#ffffff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:all .3s ease;
}

.card,
.price-card,
.step-card,
.sample-card,
.benefit-card{
  padding:30px;
}

.card:hover,
.price-card:hover,
.step-card:hover,
.sample-card:hover,
.benefit-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.contact-wrap{
  border:1px solid rgba(0,0,0,.05);
  box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.card h3{
  margin:0 0 12px;
  font-size:22px;
  font-weight:700;
  line-height:1.3;
  letter-spacing:-.01em;
}

.card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

.card ul{
  margin:18px 0 0;
  padding:0;
  list-style:none;
}

.card li{
  padding:10px 0;
  border-top:1px solid rgba(0,0,0,.08);
  color:#2a2622;
  font-size:14px;
}

.card li:first-child{
  padding-top:0;
  border-top:none;
}

.small{
  display:inline-block;
  margin-bottom:10px;
  color:var(--gold);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.featured{
  border-color:rgba(185,150,84,.36);
  box-shadow:0 0 0 1px rgba(185,150,84,.12) inset, var(--shadow);
}


/* =========================================================
   11. Design Samples / デザインサンプル
========================================================= */
.design-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.design-card{
  margin:0;
  padding:10px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:20px;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.design-card img{
  width:100%;
  border-radius:14px;
}

.design-card figcaption{
  display:grid;
  gap:4px;
  padding:14px 8px 6px;
}

.design-card figcaption strong{
  font-size:16px;
}

.design-card figcaption span{
  color:var(--muted);
  font-size:14px;
}


/* =========================================================
   12. Steps / 3ステップ
========================================================= */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
}


/* =========================================================
   13. Before / After
   ---------------------------------------------------------
   暗いドラマゾーン
========================================================= */
#before-after{
  background:linear-gradient(180deg, #0f0f10, #1a1a1c);
  color:#fff;
}

#before-after .section-title,
#before-after .section-lead{
  color:#fff;
}

.ba-list{
  display:flex;
  flex-direction:column;
  gap:24px;
  margin-top:40px;
}

.ba-card{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  background:linear-gradient(180deg, #1c1c1f, #141416);
  box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.ba-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
}

.ba-col{
  padding:28px;
}

/* BEFORE側は少し弱く見せる */
.ba-col.before{
  background:#202024;
  border-right:1px solid rgba(255,255,255,.08);
  opacity:.85;
}

/* AFTER側は少し勝たせる */
.ba-col.after{
  background:linear-gradient(180deg, #111, #0c0c0d);
  border-left:2px solid #b99654;
  box-shadow:-10px 0 30px rgba(185,150,84,.08);
}

.ba-head{
  display:inline-block;
  margin-bottom:16px;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.03em;
}

#before-after .ba-col.before .ba-head{
  background:rgba(255,255,255,.10);
  color:rgba(255,255,255,.72);
}

#before-after .ba-col.after .ba-head{
  background:linear-gradient(135deg, #b99654, #e2c88d);
  color:#fff;
}

#before-after .ba-title{
  margin-bottom:12px;
  color:#fff;
  font-size:20px;
  font-weight:800;
}

#before-after .ba-text{
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.85;
}

#before-after .ba-points{
  margin-top:16px;
  padding-left:18px;
  color:rgba(255,255,255,.88);
}

#before-after .ba-points li{
  margin-bottom:8px;
  line-height:1.7;
}

/* 暗い背景用の白枠ボタン */
#before-after .cta-btn.secondary{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}

#before-after .cta-btn.secondary:hover{
  background:rgba(255,255,255,.06);
}


/* =========================================================
   14. Price Section / 料金プラン
   ---------------------------------------------------------
   特別感を出す赤背景ゾーン
========================================================= */
#price{
  background:linear-gradient(135deg, #1a0f10, #3b1215, #6a1c21);
}

#price .section-title,
#price .section-lead{
  color:#fff;
}

#price .section-kicker{
  color:#d6be8f;
}

.price-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
}

.price-card{
  display:flex;
  flex-direction:column;
  height:100%;
}

.price-card.featured{
  border:1px solid rgba(185,150,84,.35);
  box-shadow:
    0 0 0 1px rgba(185,150,84,.12) inset,
    0 18px 45px rgba(0,0,0,.12);
}

.price-old{
  margin:10px 0 4px;
  color:#9f9990;
  font-size:16px;
  text-decoration:line-through;
}

.price-now{
  margin:0 0 16px;
  color:var(--accent);
  font-size:34px;
  font-weight:800;
  line-height:1;
  letter-spacing:-.04em;
}

.price-now{
  color:#d6be8f; /* 少し強めのゴールド寄り */

}

.price-card .btn{
  margin-top:auto;
  align-self:flex-start;
}

.price-note{
  margin:24px 0 0;
  color:#f8f8f8;
  font-size:14px;
}


/* =========================================================
   15. Premium Plan / 一番売りたい真ん中プラン
   ---------------------------------------------------------
   金縁 + 少し浮かせる
========================================================= */
.premium-plan{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,1), rgba(251,249,244,1));
  border:1px solid rgba(185,150,84,.55);
  box-shadow:
    0 18px 40px rgba(0,0,0,.10),
    0 0 0 1px rgba(185,150,84,.18) inset,
    0 0 0 6px rgba(185,150,84,.06);
  transform:translateY(-8px) scale(1.02);
}

.premium-plan::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:inherit;
  background:linear-gradient(
    135deg,
    rgba(214,190,143,.95),
    rgba(185,150,84,1),
    rgba(240,226,190,.95)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.plan-badge{
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  background:linear-gradient(135deg, #b99654, #e2c88d);
  color:#fff;
  box-shadow:0 8px 18px rgba(185,150,84,.28);
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.premium-plan .small{
  color:#9f7a34;
}

.premium-plan h3{
  padding-right:76px;
}

.premium-plan .price-now{
  color:#8f6a27;
  text-shadow:0 1px 0 rgba(255,255,255,.65);
}

.premium-plan .btn-primary{
  background:linear-gradient(135deg, #111, #2a2a2a);
  color:#fff;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}

.premium-plan .btn-primary:hover,
.premium-plan .btn-primary:focus-visible{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,0,0,.24);
}

.premium-plan:hover{
  transform:translateY(-12px) scale(1.025);
  box-shadow:
    0 24px 48px rgba(0,0,0,.13),
    0 0 0 1px rgba(185,150,84,.24) inset,
    0 0 0 8px rgba(185,150,84,.07);
}


/* =========================================================
   16. Benefit / メリット
========================================================= */
.benefit-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:20px;
}


/* =========================================================
   17. Form / お問い合わせフォーム
========================================================= */
.contact-form{
  padding:32px;
  background:var(--panel-soft);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.full{
  grid-column:1 / -1;
}

label{
  display:block;
  margin-bottom:8px;
  color:var(--muted);
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
}

input,
select,
textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid rgba(0,0,0,.10);
  border-radius:16px;
  outline:none;
  background:#fff;
  color:var(--text);
  font:inherit;
  transition:.2s ease;
}

input:focus,
select:focus,
textarea:focus{
  border-color:rgba(181,31,38,.36);
  box-shadow:0 0 0 4px rgba(181,31,38,.06);
}

textarea{
  min-height:150px;
  resize:vertical;
}


/* =========================================================
   18. Footer / フッター
========================================================= */
.site-footer{
  background:#0d0d0e;
  color:#ccc;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-inner{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:50px;
  padding:70px 0;
}

.footer-logo{
  margin-bottom:10px;
  font-size:34px;
  font-weight:900;
  letter-spacing:-.04em;
}

.footer-brand p{
  color:#aaa;
  font-size:14px;
  line-height:1.7;
}

.site-footer h3{
  margin-bottom:14px;
  color:#999;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.site-footer a{
  display:block;
  margin-bottom:8px;
  color:#ddd;
  font-size:14px;
  opacity:.75;
  transition:.25s;
}

.site-footer a:hover{
  color:#fff;
  opacity:1;
}

.footer-bottom{
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.06);
  color:var(--muted);
  font-size:12px;
  text-align:center;
}


/* =========================================================
   19. Responsive / レスポンシブ
   ---------------------------------------------------------
   上から順に
   1100px以下
   980px以下
   768px以下
   760px以下（スマホ本体）
========================================================= */

/* ---------- Tablet large ---------- */
@media (max-width:1100px){
  .hero-sports-grid,
  .section-head{
    grid-template-columns:1fr;
  }

  .grid-4{
    grid-template-columns:repeat(2,1fr);
  }

  .grid-3,
  .steps-grid,
  .price-grid,
  .benefit-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero-panel{
    max-width:460px;
  }
}

/* ---------- Tablet ---------- */
@media (max-width:980px){
  .ba-inner{
    grid-template-columns:1fr;
  }

  .ba-col.before{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .ba-col.after{
    border-left:none;
    border-top:2px solid #b99654;
    box-shadow:none;
  }
}

/* ---------- CTA整理 ---------- */
@media (max-width:768px){
  .cta-group{
    flex-direction:column;
  }

  .cta-btn{
    width:100%;
    min-width:auto;
  }
}

/* ---------- Smartphone main ---------- */
@media (max-width:760px){
  /* ハンバーガー表示 */
  .menu-toggle{
    display:flex;
  }

  /* 開閉ナビ */
  .nav{
    position:absolute;
    top:78px;
    left:20px;
    right:20px;
    z-index:1100;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:18px;
    border:1px solid rgba(0,0,0,.08);
    border-radius:20px;
    background:rgba(255,255,255,.98);
    box-shadow:0 14px 36px rgba(0,0,0,.12);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-10px);
    transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .nav.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }

  .nav a{
    width:100%;
    padding:14px 6px;
    border-bottom:1px solid rgba(0,0,0,.08);
  }

  .nav a:last-child{
    border-bottom:none;
  }

  .site-header.is-compact .site-header-inner{
    min-height:58px;
  }

  .site-header.is-compact .brand-mark{
    font-size:28px;
  }

  .site-header.is-compact .nav{
    top:58px;
  }

  /* HEROスマホ最適化 */
  .hero-sports-inner{
    padding:132px 0 56px;
  }

  .hero-sports-photo{
    background-size: cover;
    background-position: center top;  /* ←これ重要 */
  }

  .hero-copy{
    width:100%;
  }

  .hero-sports h1{
    width:100%;
    max-width:none;
    font-size:clamp(34px, 9vw, 52px);
    line-height:1.12;
    letter-spacing:-.03em;
    text-wrap:balance;
  }

	
	

  .hero-sports h1{
    max-width:none;        /* ←これが一番重要 */
    width:100%;
  }

  .hero-sports h1 br{
    display:none;          /* ←強制改行を消す */
  }


	
	
	
  .hero-lead{
    max-width:none;
  }

  /* 各グリッドを1列化 */
  .grid-3,
  .grid-4,
  .steps-grid,
  .price-grid,
  .benefit-grid,
  .design-grid,
  .form-grid{
    grid-template-columns:1fr;
  }

  .full{
    grid-column:auto;
  }

  /* ボタンは幅いっぱい */
  .btn{
    width:100%;
  }

  /* フッター1列 */
  .footer-inner{
    grid-template-columns:1fr;
  }

  /* プレミアムプランはスマホで浮かせすぎない */
  .premium-plan,
  .premium-plan:hover{
    transform:none;
  }

  .plan-badge{
    top:14px;
    right:14px;
  }
}

/* ---------- PC only ---------- */
@media (min-width:761px){
  .menu-toggle{
    display:none;
  }
}





/* =========================
   CTA強化・成約率アップ用 追記
========================= */

/* Hero内の補足 */
.urgency{
  margin:14px 0 0;
  font-size:13px;
  line-height:1.8;
  color:#d6be8f;
}

.cta-sub{
  margin:12px 0 0;
  font-size:12px;
  line-height:1.8;
  color:#cfc7ba;
}

.cta-note-small{
  margin-top:8px;
  font-size:11px;
  line-height:1.7;
  color:#aaa;
  text-align:center;
}

/* セクション間のCTA */
.cta-inline-section{
  padding-top:28px;
  padding-bottom:28px;
}

.cta-center{
  text-align:center;
}

.cta-center .cta-group{
  justify-content:center;
}

/* Price上の価値説明 */
.price-value{
  max-width:760px;
  margin:0 0 24px;
  font-size:14px;
  line-height:1.9;
  color:#cfc7ba;
}

/* 不安解消セクション */
.faq-lite{
  padding-top:44px;
  padding-bottom:44px;
}

.faq-lite ul{
  list-style:none;
  padding:0;
  margin:0;
}

.faq-lite li{
  font-size:14px;
  line-height:2;
  color:#d2cabd;
}

/* 最終CTA */
.final-cta-section{
  padding-top:72px;
}

.final-cta-section .section-title{
  margin-bottom:14px;
}

.final-cta-section .section-lead{
  margin:0 auto 24px;
  max-width:760px;
}

/* HeroまわりのCTA見栄え調整 */
.hero-copy .cta-group{
  margin-top:24px;
}

.hero-copy .cta-note{
  margin-top:12px;
}

/* Priceセクション内のCTA余白 */
#price .cta-center{
  margin-top:26px;
}

/* Before / After 下のCTA調整 */
#before-after .cta-center{
  margin-top:28px;
}

/* ボタン周りの縦並び補足 */
.cta-center .cta-btn{
  min-width:220px;
}

/* モバイル調整 */
@media (max-width:760px){

  .urgency{
    font-size:12px;
    line-height:1.8;
  }

  .cta-sub{
    font-size:11px;
    line-height:1.8;
  }

  .cta-note-small{
    font-size:10px;
  }

  .price-value{
    font-size:13px;
    line-height:1.85;
    margin-bottom:20px;
  }

  .faq-lite{
    padding-top:34px;
    padding-bottom:34px;
  }

  .faq-lite li{
    font-size:13px;
    line-height:1.9;
  }

  .final-cta-section{
    padding-top:56px;
  }

  .cta-center .cta-btn{
    width:100%;
    min-width:0;
  }
}

.contact-section .section-lead{
  text-align:center;
  max-width:720px;
  margin:0 auto;
	  line-height:1.9;
}
.intro-section .section-lead{
  text-align:center;
  max-width:720px;
  margin:0 auto;
  line-height:1.9;
}



/* FAQライト（安心セクション） */
.faq-lite{
  padding:70px 0;
}

.faq-box{
  max-width:720px;
  margin:0 auto;
  padding:32px 36px;

  background:#111; /* ←ここ変えるのがポイント */
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
}

.faq-title{
  text-align:center;
  font-size:12px;
  letter-spacing:.15em;
  color:#aaa;
  margin-bottom:18px;
}

.faq-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.faq-box li{
  font-size:15px;
  color:#fff; /* ←ここ重要（白にする） */
  line-height:1.9;
  text-align:center;
}

/* 区切り */
.faq-box li + li{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.06);
}



/* =========================
   5GRFX SPORTS - Readability Upgrade
   （そのままコピペでOK）
========================= */

/* ---------- HERO改善 ---------- */

/* 背景写真を少しだけ抑える */
.hero-sports-photo{
  filter: brightness(.58) contrast(1.05);
}

/* オーバーレイ強化（可読性アップ） */
.hero-sports-bg{
  background:
    linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.66) 42%, rgba(0,0,0,.92)),
    linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.24) 42%, rgba(0,0,0,.82)),
    radial-gradient(58% 58% at 75% 18%, rgba(214,47,56,.18), rgba(214,47,56,0) 70%);
}

/* 見出しを少しだけ浮かせる */
.hero-sports h1{
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
}

/* 本文をしっかり読ませる */
.hero-lead{
  color: rgba(255,255,255,.92);
}

/* 強調文 */
.urgency{
  color: #ead7ab;
}

/* CTA周り */
.cta-sub{
  color: rgba(255,255,255,.82);
}

.cta-note{
  color: rgba(255,255,255,.72);
}

.cta-note-small{
  color: #8a8176;
}

/* メインCTAを沈ませない */
.hero-copy .cta-btn.primary{
  background: linear-gradient(135deg, #c52a33, #df3a44);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}


/* ---------- Before / After ---------- */

#before-after .section-lead{
  color: rgba(255,255,255,.86);
}

#before-after .ba-text{
  color: rgba(255,255,255,.86);
}


/* ---------- Price ---------- */

.price-value{
  color: rgba(255,255,255,.88);
}

.price-note{
  color: rgba(255,255,255,.86);
}


/* ---------- FAQ ---------- */

.faq-box{
  background: #141414;
}

.faq-title{
  color: #d8d0c2;
}


/* ---------- 下部テキスト微調整 ---------- */

.contact-section .section-lead,
.intro-section .section-lead{
  color: #5f5851;
}