/* ============================================================
   eスピ！ 夏期講習LP — デザイントークン
   ------------------------------------------------------------
   配色はメールのヒーローバナー画像のパレットに統一。
   ・青（空/波）＝構造アクセント・CTA・バッジ
   ・オレンジ（価格）＝強調・大きな装飾
   ・黄（ひまわり）＝見出しハイライト、緑＝副アクセント
   ※トークン名は従来のまま値のみ差し替え：
     --red* = オレンジ強調系、--teal* = 青の構造系。
   ============================================================ */
:root {
  --red: #FA5A0A;            /* オレンジ（価格・強調・大きな装飾） */
  --red-rgb: 250, 90, 10;
  --red-ink: #0A63B8;        /* 濃い青（CTA地色・テキスト・バッジ／白地AA約5.9:1） */
  --red-deep: #084E92;       /* 濃紺（ホバー・グラデ終点） */

  --teal: #0E8CE8;           /* 空の青（構造アクセント：キッカー線・枠・バッジ地） */
  --teal-deep: #0A63B8;      /* 濃い青（構造テキスト・ラベル／AA） */
  --teal-tint: #E6F4FF;      /* 淡い空色（バンド・チップ） */

  --sky: #38BBFE;            /* 明るい水色（波・ハイライトドット） */
  --sun: #FFC728;            /* 夏の黄（見出しハイライト下線） */
  --orange: #FA5A0A;         /* オレンジ差し色 */
  --orange-ink: #C24A00;     /* 小サイズのオレンジ文字用（白地AA約4.9:1） */
  --green: #43B02A;          /* 緑（副アクセント／マイクラ的） */
  --blue-rgb: 14, 140, 232;  /* 青系の影 */

  --ink: #223A52;            /* 主テキスト & ダーク面（やや紺寄り） */
  --paper: #FFFFFF;
  --cream: #F2F8FF;          /* 淡い空色の面（旧クリーム→青系へ） */
  --cream-2: #E4EFFB;        /* 一段濃い淡青 */
  --border: #E1E8F0;         /* 区切り線（クール寄り） */

  --gray-700: #45464C;
  --gray-600: #585962;
  --gray-500: #6A6B73;
  --gray-400: #8A8B93;
  --gray-300: #B9B9C2;

  --shadow: 30, 45, 70;      /* 影のベース色（やや紺寄り） */
}

/* ===== Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.85;
}
img, picture, svg { display: block; }
a { color: inherit; }
::selection { background: var(--teal); color: #fff; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--teal-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

.page { overflow-x: hidden; width: 100%; }
.wrap { max-width: 1080px; margin: 0 auto; padding-inline: 24px; }
.wrap-narrow { max-width: 840px; margin: 0 auto; padding-inline: 24px; }

/* ===== Keyframes ===== */
@keyframes s-float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
@keyframes s-in { from { opacity: 0; transform: translateY(22px) } to { opacity: 1; transform: none } }

[data-reveal] { transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.js [data-reveal] { opacity: 0; transform: translateY(24px); }
.js [data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ===== セクション共通 ===== */
.section { padding: clamp(64px, 8vw, 104px) 0; }
.band-cream { background: var(--cream); }
.band-mist { background: var(--teal-tint); }
.sec-head { text-align: center; margin-bottom: 48px; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 13px;
  letter-spacing: .2em; color: var(--teal-deep); margin-bottom: 14px;
}
.kicker::before, .kicker::after { content: ""; width: 22px; height: 2px; background: var(--teal); border-radius: 2px; }
.h2 {
  font-size: clamp(25px, 3.6vw, 38px); font-weight: 900; line-height: 1.38; color: var(--ink);
}
.h2 .em { font-weight: 400; }
.h2 .u {
  background: linear-gradient(transparent 62%, var(--sun) 62%);
  padding: 0 .06em;
}
.np { display: inline-block; }

/* ===== ボタン ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; font-weight: 800; letter-spacing: .02em;
  border-radius: 999px; transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-primary {
  background: var(--red-ink); color: #fff;
  box-shadow: 0 14px 30px -12px rgba(var(--blue-rgb),.55);
}
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-lg { font-size: 17px; padding: 18px 40px; }
.btn-sm { font-size: 14px; padding: 11px 22px; }
.btn-ghost {
  background: #fff; color: var(--teal-deep); border: 2px solid var(--teal);
}
.btn-ghost:hover { background: var(--teal-tint); }

/* ===== ヘッダー ===== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: 0 6px 24px -16px rgba(var(--shadow),.4); }
.header-in { max-width: 1180px; margin: 0 auto; padding: 11px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand img { height: 42px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 26px; }
.header-nav a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--gray-700); }
.header-nav a:hover { color: var(--teal-deep); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: none; border: 0; cursor: pointer; padding: 0; }
.burger span { display: block; width: 24px; height: 2px; margin: 0 auto; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.header.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.menu-open .burger span:nth-child(2) { opacity: 0; }
.header.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .header-nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 16px 30px -18px rgba(var(--shadow),.3); display: none; }
  .header.menu-open .header-nav { display: flex; }
  .header-nav a { padding: 15px 24px; font-size: 15px; }
  .js .burger { display: flex; }
  .header-cta .btn-ghost { display: none; }
  /* SPはロゴを一回り小さくし、ヘッダー内の余白バランスを整える */
  .header-in { padding: 10px 18px; gap: 12px; }
  .brand img { height: 34px; }
}

/* ===== ヒーロー（メールバナー画像をFVに） ===== */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hero { padding: 84px 0 44px; background: linear-gradient(180deg, #EAF5FF 0%, var(--teal-tint) 100%); }
.hero-banner {
  display: block; max-width: 1160px; margin: 0 auto; padding-inline: 24px;
  border-radius: 0; text-decoration: none;
}
.hero-banner picture { display: block; border-radius: 22px; overflow: hidden; box-shadow: 0 34px 70px -30px rgba(var(--shadow),.45); }
.hero-banner img { width: 100%; height: auto; transition: transform .3s ease; }
.hero-banner:hover img { transform: scale(1.012); }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; padding-inline: 24px; }

/* SP用ネイティブFV（既定は非表示。PCは画像バナーを使用） */
.hero-native { display: none; }

@media (max-width: 880px) {
  .hero { padding: 78px 0 36px; }
  /* SPでは画像バナーを隠し、抽出要素のネイティブFVを表示 */
  .hero-banner { display: none; }
  /* 白枠なし・写真はページ全面（フルブリード）。文字は写真上に重ね、顔を避けて上端／下端に配置 */
  .hero-native { display: block; text-align: center; padding: 0; }
  .hn-stage { position: relative; overflow: hidden; }
  /* 上端＝空へ馴染ませる＋バッジの下地、下端＝波を明るくしてキャプションの下地 */
  .hn-stage::before, .hn-stage::after {
    content: ""; position: absolute; left: 0; right: 0; z-index: 1; pointer-events: none;
  }
  .hn-stage::before {
    top: 0; height: 128px;
    background: linear-gradient(180deg,
      var(--teal-tint) 0%, rgba(230,244,255,.8) 26%, rgba(230,244,255,.4) 56%, rgba(230,244,255,0) 100%);
  }
  .hn-stage::after {
    bottom: 0; height: 230px;
    background: linear-gradient(0deg,
      var(--teal-tint) 0%, rgba(230,244,255,.92) 22%, rgba(230,244,255,.66) 48%, rgba(230,244,255,.22) 78%, rgba(230,244,255,0) 100%);
  }
  .hn-photo-bg { display: block; }
  .hn-photo-bg img { display: block; width: 100%; height: auto; }
  /* バッジ：元バナーから切り出したリボン画像を写真上部に配置 */
  .hn-badge {
    position: absolute; top: 34px; left: 14px; z-index: 2;
    width: min(66%, 268px); line-height: 0;
    transform: rotate(-6deg); transform-origin: left center;
    filter: drop-shadow(0 8px 14px rgba(180,70,0,.4));
  }
  .hn-badge img { display: block; width: 100%; height: auto; }
  /* キャプション：写真下部（波の上）に配置 */
  .hn-caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0 16px 16px; text-align: center; }
  /* タイトル：バナー画像に寄せた極太・白フチ・濃紺の立体ロゴ風文字 */
  .hn-title {
    font-size: clamp(30px, 9.2vw, 44px); font-weight: 900; line-height: 1.14;
    color: var(--red-ink); letter-spacing: -.02em; margin-bottom: 8px;
    -webkit-text-stroke: 8px #fff; paint-order: stroke fill;
  }
  .hn-title .hn-big {
    color: var(--red); font-size: 1.28em;
  }
  .hn-title .hn-mark { /* 「特別講習！」も同じ立体スタイルで統一（黄色ハイライトは廃止） */
    color: var(--red-ink);
  }
  .hn-sub {
    position: relative; display: inline-block;
    font-size: clamp(16px, 5vw, 21px); font-weight: 900; color: var(--red-ink);
    line-height: 1.35; letter-spacing: -.01em;
    -webkit-text-stroke: 6px #fff; paint-order: stroke fill;
    padding: 0 .06em .08em;
  }
  /* 「概要」見出しと同じ黄色マーカー下線（白フチに分断されないよう文字背面に連続した帯で敷く） */
  .hn-sub::after {
    content: ""; position: absolute; z-index: -1;
    left: 0; right: 0; bottom: 0; height: .34em;
    background: var(--sun);
  }
  .hn-info { padding: 22px 20px 0; }
  .hn-price {
    display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 12px;
    background: #fff; border: 2px solid var(--teal); border-radius: 16px;
    padding: 16px 22px; margin-bottom: 20px;
    box-shadow: 0 18px 40px -24px rgba(var(--shadow),.4);
  }
  .hn-pl { font-size: 13px; font-weight: 800; color: #fff; background: var(--orange); padding: 6px 12px; border-radius: 8px; line-height: 1.3; }
  .hn-pn { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(40px, 12vw, 54px); color: var(--red); line-height: 1; }
  .hn-yen { font-family: 'Noto Sans JP', sans-serif; font-size: .42em; font-weight: 900; margin-left: 2px; }
  .hn-tax { font-family: 'Noto Sans JP', sans-serif; font-size: .3em; font-weight: 800; color: var(--ink); margin-left: 3px; }
  .hn-ps { width: 100%; text-align: center; font-size: 15px; font-weight: 800; color: var(--ink); }
  .hn-games { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .hn-chip { font-size: 12.5px; font-weight: 800; color: #fff; padding: 7px 14px; border-radius: 999px; }
  .hn-chip.fn { background: var(--red-ink); }
  .hn-chip.mc { background: var(--green); }
  .hn-chip.rb { background: var(--orange); }

  .hero-cta-row { flex-direction: column; align-items: stretch; margin-top: 26px; padding-inline: 20px; }
  .btn-lg { width: 100%; }
}

/* ===== 概要（1パネルに項目を並べる仕様リスト） ===== */
.ov-panel {
  max-width: 820px; margin: 0 auto;
  background: #fff; border-radius: 20px; padding: 12px clamp(20px, 4vw, 40px);
  border: 1px solid var(--border); box-shadow: 0 20px 50px -34px rgba(var(--shadow),.32);
}
.ov-row {
  display: grid; grid-template-columns: 44px 168px 1fr; align-items: center;
  gap: 20px; padding: 20px 0;
}
.ov-row + .ov-row { border-top: 1px solid var(--border); }
.ov-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 22px; background: var(--teal-tint); }
.ov-term { font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: .02em; }
.ov-desc { font-size: 15.5px; font-weight: 700; line-height: 1.6; color: var(--ink); }
.ov-desc small { display: block; font-size: 13px; font-weight: 500; color: var(--gray-600); margin-top: 3px; }

@media (max-width: 600px) {
  .ov-row { grid-template-columns: 40px 1fr; gap: 8px 14px; row-gap: 4px; padding: 18px 0; }
  .ov-ic { width: 40px; height: 40px; font-size: 20px; grid-row: span 2; align-self: start; }
  .ov-term { grid-column: 2; font-size: 12.5px; color: var(--gray-600); }
  .ov-desc { grid-column: 2; }
}

/* ===== スケジュール（カードグリッド） ===== */
.sc-intro { text-align: center; font-size: 15px; color: var(--gray-700); margin-bottom: 30px; }
.sc-intro strong { color: var(--red-ink); }
.sc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.sc-card { position: relative; background: #fff; border-radius: 16px; padding: 22px 22px 20px; border: 1px solid var(--border); box-shadow: 0 16px 40px -30px rgba(var(--shadow),.3); }
.sc-card .badge { display: inline-block; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 800; color: #fff; background: var(--red-ink); padding: 4px 14px; border-radius: 999px; margin-bottom: 14px; }
.sc-card .days { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.sc-card .day { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; }
.sc-card .day .n { flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--teal-tint); color: var(--teal-deep); font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.sc-card .time { display: inline-block; font-size: 13px; font-weight: 700; color: var(--teal-deep); background: var(--teal-tint); padding: 5px 12px; border-radius: 8px; margin-bottom: 16px; }
.sc-card .meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border-top: 1px solid var(--border); padding-top: 14px; }
.sc-card .meta .lbl { font-size: 11px; font-weight: 700; color: var(--gray-500); margin-bottom: 3px; }
.sc-card .meta .val { font-size: 14px; font-weight: 800; color: var(--ink); }
.callout { display: flex; gap: 14px; align-items: flex-start; border-radius: 14px; padding: 20px 22px; margin-top: 26px; background: #fff; border: 1px solid var(--border); }
.callout .ic { flex: none; font-size: 22px; }
.callout .bd { font-size: 14.5px; line-height: 1.9; }
.callout .bd .accent { color: var(--red-ink); font-weight: 700; }
.fine { font-size: 12.5px; color: var(--gray-500); line-height: 1.9; margin-top: 16px; text-align: left; }

/* ===== 参加の流れ（横型タイムライン） ===== */
.flow { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.flow::before { content: ""; position: absolute; top: 27px; left: 8%; right: 8%; height: 3px; background: repeating-linear-gradient(90deg, var(--teal) 0 14px, transparent 14px 26px); z-index: 0; }
.fstep { position: relative; z-index: 1; text-align: center; }
.fstep .n { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; background: var(--red-ink); color: #fff; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px; display: grid; place-items: center; box-shadow: 0 10px 24px -12px rgba(var(--red-rgb),.6); border: 4px solid var(--cream); }
.band-cream .fstep .n { border-color: var(--cream); }
.fstep .ft { font-size: 15px; font-weight: 800; margin-bottom: 8px; line-height: 1.5; }
.fstep .fb { font-size: 13px; line-height: 1.8; color: var(--gray-600); text-align: left; }
.fstep .fb a { color: var(--red-ink); font-weight: 700; word-break: break-all; }
.fstep .fb .sub { display: block; font-size: 12px; color: var(--gray-500); margin-top: 6px; }

@media (max-width: 880px) {
  .sc-intro { text-align: left; } /* SPは左寄せ、PCは中央寄せ */
  .flow { grid-template-columns: 1fr; gap: 0; }
  /* SPは全高1本ではなく、各ステップ間を個別コネクタで結ぶ（最後の円の下に線を残さない） */
  .flow::before { display: none; }
  .fstep { position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 16px; text-align: left; align-items: start; padding-bottom: 26px; }
  .fstep:not(:last-child)::before {
    content: ""; position: absolute; left: 27px; top: 27px; bottom: 0; width: 3px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(180deg, var(--teal) 0 14px, transparent 14px 26px);
    z-index: 0;
  }
  .fstep .n { margin: 0; position: relative; z-index: 1; }
  .fstep .ft, .fstep .fb { grid-column: 2; }
}

/* ===== 特典 ===== */
.offer { position: relative; overflow: hidden; max-width: 860px; margin: 0 auto; border-radius: 24px; padding: clamp(34px, 5vw, 52px); text-align: center; background: linear-gradient(150deg, #fff 0%, var(--cream) 100%); border: 2px dashed var(--orange); }
.offer .ribbon { display: inline-block; font-size: 12px; font-weight: 800; color: #fff; background: var(--teal-deep); padding: 6px 16px; border-radius: 999px; letter-spacing: .04em; margin-bottom: 18px; }
.offer .icon { font-size: 46px; margin-bottom: 10px; }
.offer .lead { font-size: 15px; color: var(--gray-700); margin-bottom: 8px; }
.offer .big { font-size: clamp(20px, 3.2vw, 28px); font-weight: 900; color: var(--red); line-height: 1.5; margin-bottom: 14px; }
.offer .desc { font-size: 14.5px; line-height: 1.9; color: var(--gray-700); }
.offer .cond { margin-top: 24px; text-align: left; background: #fff; border-radius: 14px; padding: 20px 22px; border: 1px solid var(--border); }
.offer .cond .ct { font-size: 14px; font-weight: 800; color: var(--teal-deep); margin-bottom: 6px; }
.offer .cond .cb { font-size: 14px; line-height: 1.9; color: var(--gray-700); }
.offer .cond .cb small { display: block; font-size: 12.5px; color: var(--gray-500); margin-top: 4px; }

/* ===== 注意事項 ===== */
.notes { max-width: 840px; margin: 0 auto; background: #fff; border-radius: 18px; padding: clamp(26px, 4vw, 38px); border: 1px solid var(--border); box-shadow: 0 16px 40px -32px rgba(var(--shadow),.28); }
.notes ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.notes li { position: relative; padding-left: 30px; font-size: 14.5px; line-height: 1.9; color: var(--gray-700); }
.notes li::before { content: "!"; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 6px; background: var(--cream-2); color: var(--red-ink); font-size: 12px; font-weight: 800; line-height: 20px; text-align: center; }

/* ===== FAQ ===== */
.faq { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.qa { background: #fff; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 12px 34px -30px rgba(var(--shadow),.28); }
.qa summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 20px 22px; font-size: 15.5px; font-weight: 700; line-height: 1.6; }
.qa summary::-webkit-details-marker { display: none; }
.qa .q { flex: none; width: 27px; height: 27px; border-radius: 8px; display: grid; place-items: center; background: var(--teal); color: #fff; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 14px; }
.qa .chev { flex: none; margin-left: auto; width: 18px; height: 18px; color: var(--gray-400); transition: transform .3s ease; }
.qa[open] .chev { transform: rotate(180deg); }
.qa .a { display: flex; gap: 14px; padding: 0 22px 22px; font-size: 14.5px; line-height: 1.95; color: var(--gray-700); }
.qa .a .am { flex: none; width: 27px; height: 27px; border-radius: 8px; display: grid; place-items: center; background: var(--teal-tint); color: var(--teal-deep); font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 14px; }

/* ===== お問い合わせ ===== */
.contact { max-width: 700px; margin: 0 auto; text-align: center; background: #fff; border-radius: 18px; padding: clamp(30px, 4vw, 42px); border: 1px solid var(--border); }
.contact .lead { font-size: 15px; color: var(--gray-700); margin-bottom: 16px; }
.contact .org { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.contact a.mail { display: inline-block; font-size: 17px; font-weight: 800; color: var(--red-ink); text-decoration: none; word-break: normal; overflow-wrap: break-word; }
.contact a.mail:hover { text-decoration: underline; }

/* ===== 最終CTA ===== */
.final { position: relative; overflow: hidden; padding: clamp(72px, 9vw, 112px) 0; background: linear-gradient(150deg, var(--teal) 0%, var(--red-deep) 100%); color: #fff; text-align: center; }
.final .orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,.09); }
.final .orb.o1 { top: -70px; left: -50px; width: 260px; height: 260px; animation: s-float 8s ease-in-out infinite; }
.final .orb.o2 { bottom: -90px; right: -40px; width: 300px; height: 300px; }
.final .in { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding-inline: 24px; }
.final .fk { font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: .18em; opacity: .9; margin-bottom: 16px; }
.final .ft { font-size: clamp(24px, 4vw, 38px); font-weight: 900; line-height: 1.5; margin-bottom: 20px; }
.final .fb { font-size: 15px; line-height: 2; opacity: .94; margin-bottom: 26px; }
.final .fprice { display: inline-flex; align-items: baseline; gap: 10px; margin-bottom: 26px; font-weight: 800; }
.final .fprice .m { font-family: 'Manrope', sans-serif; font-size: clamp(30px, 6vw, 42px); color: var(--sun); }
.final .btn-white { background: #fff; color: var(--red-ink); box-shadow: 0 18px 40px -16px rgba(0,0,0,.4); }
.final .btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ===== フッター ===== */
/* ===== 公式SNS（フッター上部・濃紺で地続き） ===== */
.sns { background: var(--ink); padding: 44px 24px 32px; text-align: center; }
.sns-lead { color: #fff; font-size: 14px; font-weight: 800; letter-spacing: .04em; opacity: .95; margin-bottom: 18px; }
.sns-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; list-style: none; margin: 0; padding: 0; }
.sns-list a { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; transition: background .2s, transform .2s; }
.sns-list a:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.sns-list svg { display: block; width: 21px; height: 21px; fill: currentColor; }

.footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.09); padding: 32px 24px 44px; text-align: center; }
.footer img { height: 46px; width: auto; margin: 0 auto 16px; }
.footer .legal { font-size: 11px; line-height: 1.9; color: var(--gray-400); }

/* ===== スティッキーCTA（モバイル） ===== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px -18px rgba(var(--shadow),.4);
  transform: translateY(110%); transition: transform .3s ease;
}
.sticky-cta.show { transform: none; }
.sticky-cta .row { display: flex; align-items: center; gap: 12px; max-width: 640px; margin: 0 auto; }
.sticky-cta .price { flex: none; line-height: 1.2; }
.sticky-cta .price .m { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 20px; color: var(--red); }
.sticky-cta .price .s { display: block; font-size: 10px; font-weight: 700; color: var(--gray-500); }
.sticky-cta .btn { flex: 1; }
@media (max-width: 880px) { .js .sticky-cta { display: block; } }

@media (max-width: 560px) {
  .sc-grid { grid-template-columns: 1fr; }
  /* iPhone SE等の狭幅でメールアドレスが変な位置で折り返さないよう、少し縮めて1行に収める */
  .contact { padding: clamp(24px, 5vw, 42px) 18px; }
  .contact a.mail { font-size: 15px; }
}
