/* styles.css — ギガ漏れ診断 */
/* 固有ビジュアルID: SIMトレイ × データ残量メーター（ギガ漏れ計） */
/* 姉妹アプリ（模試成績表/コイン貯金瓶/請求書圧縮ゲージ/アプリタイル）と一切被らせない */
/* AIデフォルト3類型（cream+セリフ/near-black+acid/新聞hairline）に寄せない */
/* 黒背景一辺倒を避け #14213D ＋ SIM/紙/物理メーターの質感を出す */

/* ===== デザイントークン ===== */
:root {
  --base:    #14213D;   /* ミッドナイトネイビー（真っ黒にしない）*/
  --surface: #1E2D4D;   /* カード面・少し浮き上がる */
  --accent:  #2BB3FF;   /* 電波シアン・1色に絞る */
  --leak:    #FF6B81;   /* 漏れコーラル・使いすぎない */
  --ok:      #34D399;   /* 節約グリーン */
  --ink:     #E8EEF7;   /* メインテキスト */
  --muted:   #8FA3C0;   /* サブテキスト */
  --rule:    #2A3D5E;   /* 罫線 */
  --surface2: #253450;  /* 少し明るいカード面（入力背景等） */

  /* SIMトレイ質感: 微細ノイズ感（グラデーション演出） */
  --sim-bg:  linear-gradient(135deg, #1E2D4D 0%, #1A2845 50%, #1E2D4D 100%);

  /* タイポグラフィ（Webフォント不使用） */
  --font-jp:  "Hiragino Sans", "Yu Gothic", "Noto Sans JP", "Meiryo", sans-serif;
  --font-num: "DIN Alternate", "Bahnschrift", "Helvetica Neue", Arial, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.32);
  --shadow-glow: 0 0 20px rgba(43,179,255,0.12);
}

/* ===== リセット ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-jp);
  background: var(--base);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
}

/* SIMトレイの溝パターン（背景テクスチャ） */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 59px,
      rgba(43,179,255,0.04) 59px,
      rgba(43,179,255,0.04) 60px
    );
  pointer-events: none;
  z-index: 0;
}

.container { max-width: 680px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* ===== ヘッダ ===== */
.site-header {
  background: var(--surface);
  border-bottom: 3px solid var(--accent);
  padding: 16px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.site-header .container { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.site-logo {
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: bold;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.site-logo .logo-icon {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid var(--accent);
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.site-tagline { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* ===== ヒーロー ===== */
.hero {
  padding: 52px 0 44px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}
.hero-title {
  font-family: var(--font-jp);
  font-size: clamp(26px, 5vw, 38px);
  font-weight: bold;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 14px;
}
.hero-title .accent { color: var(--accent); }
.hero-title .leak-word { color: var(--leak); }
.hero-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ヒーロー：SIMトレイ＋ギガ漏れメータープレビュー */
.hero-meter-preview {
  max-width: 440px;
  margin: 0 auto 28px;
  background: var(--sim-bg);
  border: 1.5px solid rgba(43,179,255,0.25);
  border-radius: var(--radius);
  padding: 20px 28px 22px;
  box-shadow: var(--shadow), var(--shadow-glow);
}
.hero-meter-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: left;
}
/* データ残量バー（SIMトレイ内のゲージ） */
.hero-meter-bar-wrap {
  position: relative;
  height: 28px;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  border: 1px solid rgba(43,179,255,0.2);
  overflow: hidden;
  margin-bottom: 10px;
}
.hero-meter-bar-fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--ok) 0%, var(--accent) 100%);
  border-radius: 4px;
  opacity: 0.7;
}
.hero-meter-leak-indicator {
  position: absolute;
  top: 0; right: 0;
  height: 100%; width: 22%;
  background: var(--leak);
  opacity: 0.45;
  border-radius: 0 4px 4px 0;
}
.hero-meter-ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-num);
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.hero-meter-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.btn-hero {
  display: inline-block;
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: bold;
  padding: 14px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(43,179,255,0.35);
  transition: background 0.15s, box-shadow 0.15s;
}
.btn-hero:hover, .btn-hero:focus {
  background: #1E9DE0;
  box-shadow: 0 6px 24px rgba(43,179,255,0.5);
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ===== セクション共通 ===== */
.input-section { padding: 40px 0; }
.section-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.section-step {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: bold;
  color: var(--base);
  background: var(--accent);
  border-radius: 3px;
  padding: 2px 8px;
  margin-right: 8px;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.section-note {
  font-size: 12px;
  color: var(--muted);
  margin-left: 4px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}

/* ===== 月額入力 ===== */
.amount-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.amount-yen-label {
  font-family: var(--font-num);
  font-size: 28px;
  font-weight: bold;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.amount-input {
  font-family: var(--font-num);
  font-size: 28px;
  font-weight: bold;
  color: var(--ink);
  background: rgba(0,0,0,0.3);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 160px;
  text-align: right;
  appearance: none;
  -moz-appearance: textfield;
  font-variant-numeric: tabular-nums;
}
.amount-input:focus {
  outline: 3px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
  background: rgba(43,179,255,0.05);
}
.amount-input.invalid { border-color: var(--leak); background: rgba(255,107,129,0.08); }
.amount-unit { font-size: 15px; color: var(--muted); }
.amount-err {
  font-size: 12px;
  color: var(--leak);
  margin-top: 6px;
}
.amount-err.hidden { display: none; }

/* ===== 選択肢チップ（シングル選択） ===== */
.choice-group { margin-bottom: 14px; }
.choice-group-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.choice-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.choice-chip {
  background: rgba(0,0,0,0.25);
  border: 1.5px solid var(--rule);
  border-radius: 20px;
  padding: 8px 16px;
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.choice-chip:hover { border-color: var(--accent); color: var(--ink); }
.choice-chip.is-active {
  background: rgba(43,179,255,0.15);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: bold;
}
.choice-chip:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* 任意選択肢 */
.optional-row {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.optional-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
.optional-note {
  font-size: 11px;
  color: var(--muted);
  display: inline-block;
  margin-left: 4px;
}

/* ===== 診断ボタン ===== */
.diagnose-wrap {
  text-align: center;
  margin: 28px 0;
}
#diagnose-btn {
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius);
  padding: 16px 40px;
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(43,179,255,0.35);
  transition: background 0.12s, box-shadow 0.12s;
}
#diagnose-btn:hover:not(:disabled) {
  background: #1E9DE0;
  box-shadow: 0 6px 28px rgba(43,179,255,0.5);
}
#diagnose-btn:disabled { background: #2A4060; color: var(--muted); cursor: not-allowed; }
#diagnose-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ===== 結果セクション ===== */
#result-section.hidden { display: none; }
#result-card.hidden { display: none; }
#result-null-msg {
  padding: 20px;
  background: rgba(255,107,129,0.1);
  border: 1.5px solid var(--leak);
  border-radius: var(--radius);
  color: var(--leak);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
#result-null-msg.hidden { display: none; }

/* ===== ギガ漏れメーター（signature）===== */
.leak-meter-card {
  background: var(--sim-bg);
  border: 1.5px solid rgba(43,179,255,0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
/* SIMトレイの刻み線演出 */
.leak-meter-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.leak-meter-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.leak-meter-track-wrap {
  position: relative;
  height: 40px;
  background: rgba(0,0,0,0.35);
  border-radius: 6px;
  border: 1px solid rgba(43,179,255,0.15);
  overflow: hidden;
  margin-bottom: 8px;
}
.leak-meter-ok-fill {
  position: absolute;
  top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, var(--ok), rgba(52,211,153,0.6));
  border-radius: 6px 0 0 6px;
  transition: width 0.7s cubic-bezier(0.34,1.56,0.64,1);
}
@media (prefers-reduced-motion: reduce) { .leak-meter-ok-fill { transition: none; } }

.leak-meter-leak-fill {
  position: absolute;
  top: 0; right: 0; height: 100%;
  background: linear-gradient(90deg, rgba(255,107,129,0.3), var(--leak));
  border-radius: 0 6px 6px 0;
  transition: width 0.7s cubic-bezier(0.34,1.56,0.64,1);
}
@media (prefers-reduced-motion: reduce) { .leak-meter-leak-fill { transition: none; } }

.leak-meter-ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-num);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.leak-score-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.leak-score-number {
  font-family: var(--font-num);
  font-size: 80px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}
.leak-score-number.score-low    { color: var(--ok); }
.leak-score-number.score-mid    { color: var(--accent); }
.leak-score-number.score-high   { color: var(--leak); }
.leak-score-suffix {
  font-family: var(--font-num);
  font-size: 22px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.leak-type-chip {
  margin-left: auto;
  padding: 6px 14px;
  border: 2px solid var(--leak);
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  color: var(--leak);
  white-space: nowrap;
  transform: rotate(-1.5deg);
  flex-shrink: 0;
}
.leak-type-chip.chip-ok {
  border-color: var(--ok);
  color: var(--ok);
}
.leak-type-chip.chip-mid {
  border-color: var(--accent);
  color: var(--accent);
}
.leak-score-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== 年間スマホ代 ===== */
.annual-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 18px;
}
.annual-label { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.annual-amount {
  font-family: var(--font-num);
  font-size: 44px;
  font-weight: bold;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}
.annual-unit { font-size: 16px; color: var(--muted); font-family: var(--font-jp); margin-left: 4px; }

/* ===== 見直し目安（レンジ）===== */
.save-card {
  background: var(--surface);
  border: 1.5px solid var(--ok);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 18px;
}
.save-label { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.save-range {
  font-family: var(--font-num);
  font-size: 36px;
  font-weight: bold;
  color: var(--ok);
  line-height: 1;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}
.save-range-sep { font-size: 20px; color: var(--muted); margin: 0 6px; }
.save-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}

/* ===== 免責（常時表示）===== */
.disclaimer-card {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}
.disclaimer-card p + p { margin-top: 6px; }

/* ===== タイプ ===== */
.type-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 18px;
}
.type-name {
  font-size: 20px;
  font-weight: bold;
  color: var(--leak);
  margin-bottom: 8px;
}
.type-name.name-ok { color: var(--ok); }
.type-name.name-mid { color: var(--accent); }
.type-body { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== データミスマッチ表示 ===== */
.mismatch-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.mismatch-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mismatch-body { color: var(--ink); font-size: 14px; }

/* ===== 複利テーブル ===== */
.fv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 10px;
}
.fv-table th {
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--rule);
  padding: 8px 10px;
  text-align: left;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.fv-table td {
  padding: 10px 10px;
  border-bottom: 1px solid rgba(42,61,94,0.5);
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.fv-table tr:last-child td { border-bottom: none; }
.td-muted { color: var(--muted); }
.td-fv { font-weight: bold; color: var(--accent); }
.fv-note { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.5; }

/* ===== シェアカード ===== */
#share-card-preview {
  display: none;
  max-width: 100%;
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.share-preview-wrap { margin-bottom: 16px; }
.share-preview-label { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.share-preview-img { max-width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.share-variant-chooser { margin-bottom: 16px; }
.share-variant-label { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.share-variant-preview {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink);
  white-space: pre-wrap;
  margin-top: 8px;
  min-height: 60px;
}
.share-image-notice { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.share-image-hint { font-size: 12px; color: var(--muted); margin-top: 10px; line-height: 1.5; }

#share-panel { margin-top: 16px; }
#share-panel.hidden { display: none; }

.share-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 10px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.12s;
}
.share-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.share-btn.btn-primary { background: var(--accent); color: #FFFFFF; }
.share-btn.btn-primary:hover { opacity: 0.88; }
.share-btn.btn-secondary { background: rgba(0,0,0,0.2); border: 1.5px solid var(--rule); color: var(--ink); }
.share-btn.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.share-btn.btn-variant {
  display: inline-block;
  width: auto;
  padding: 6px 14px;
  margin-right: 6px;
  margin-bottom: 6px;
  background: rgba(0,0,0,0.2);
  border: 1.5px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}
.share-btn.btn-variant.is-active { border-color: var(--accent); color: var(--accent); background: rgba(43,179,255,0.08); }
.share-btn.btn-x { background: #000000; color: #FFFFFF; }
.share-btn.btn-x:hover { opacity: 0.85; }
.share-btn.btn-line { background: #06C755; color: #FFFFFF; }
.share-btn.btn-line:hover { opacity: 0.88; }

/* ===== CTA（アフィリエイト）===== */
.cta-section { display: none; margin-bottom: 20px; }
.cta-heading { font-size: 16px; font-weight: bold; margin-bottom: 12px; color: var(--ink); }
.affi-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.affi-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
}
.ad-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  color: var(--muted);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 1px 5px;
  flex-shrink: 0;
}
.affi-link {
  font-size: 14px;
  color: var(--accent);
  text-decoration: underline;
  word-break: break-all;
}
.affi-note { font-size: 12px; color: var(--muted); }

/* ===== 相互送客 ===== */
#crosspromo { margin: 40px 0 20px; }
#crosspromo.hidden { display: none; }
.crosspromo-heading {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 6px;
}
/* promo-meter: 通信メーターchip（固有ID） */
.promo-meter-row {
  margin-bottom: 8px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  transition: border-color 0.12s;
}
.promo-meter-row:hover { border-left-color: var(--ok); }
.promo-meter-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  color: inherit;
}
.promo-meter-title { font-size: 14px; font-weight: bold; color: var(--ink); }
.promo-meter-blurb { font-size: 12px; color: var(--muted); }

/* ===== フッタ ===== */
.site-footer {
  background: rgba(0,0,0,0.3);
  color: var(--muted);
  padding: 40px 0;
  margin-top: 60px;
  font-size: 13px;
  line-height: 1.7;
  border-top: 1px solid var(--rule);
}
.site-footer h3 { font-size: 13px; color: var(--ink); margin-bottom: 8px; }
.site-footer p { margin-bottom: 8px; }
.site-footer a { color: var(--muted); text-decoration: underline; }
.site-footer a:hover { color: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-disclaimer { border-top: 1px solid var(--rule); padding-top: 20px; }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== リトライ ===== */
#retry-btn {
  display: block;
  margin: 16px auto 0;
  background: transparent;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: 10px 24px;
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
}
#retry-btn:hover { border-color: var(--accent); color: var(--accent); }
#retry-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ===== 注記 ===== */
.slim-band-note {
  font-size: 12px;
  color: var(--muted);
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ===== スロット ===== */
#ad-slot-result { display: none; }
#list-slot { display: none; }
#paid-slot { display: none; }
.list-link-btn, .paid-link-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: rgba(43,179,255,0.1);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.list-disclosure, .paid-disclosure, .paid-note { font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 6px; }

/* ===== レスポンシブ ===== */
@media (max-width: 480px) {
  .leak-score-number { font-size: 60px; }
  .save-range { font-size: 28px; }
  .annual-amount { font-size: 34px; }
  .choice-chips { flex-direction: column; }
  .choice-chip { text-align: left; border-radius: var(--radius-sm); }
}
