/* =========================================================
   AI-search AIO サイト 共通スタイル（リデザイン版）
   Brand #C92B7E / White / Dark Gray
   Aesthetic: editorial-tech ― 上品で信頼感のある余白設計＋
   欧文サンセリフ(Inter)でブランドガイド準拠の中立的な印象
   3テーマ: clear / deep / soft
   画像: assets/img/ のメッシュ・グレイン・SVG・写真スロット
   ========================================================= */

:root {
  --brand: #C92B7E;
  --brand-2: #a31f64;
  --brand-3: #7c1549;
  --radius: 14px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --maxw: 1180px;
  --gut: clamp(22px, 5vw, 48px);
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-jp: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, sans-serif;
  --font-body: "Noto Sans JP", system-ui, sans-serif;
  --font-en: "Inter", "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  --img-noise: url("img/noise.png");
  /* フッター固定ダークパレット（白ロゴ用） */
  --footer-bg: #17171c;
  --footer-bg-2: #101014;
  --footer-text: #cdc7cd;
  --footer-muted: #847e88;
  --footer-line: #2a2a32;
}

/* ---- クリア（既定／白基調・シャープ） ---- */
:root,
[data-theme="clear"] {
  --bg: #ffffff;
  --bg-alt: #faf6f9;
  --surface: #ffffff;
  --surface-2: #f6f0f5;
  --text: #221f25;
  --text-muted: #6a6470;
  --border: #ece3eb;
  --hair: #f1e9ef;
  --accent: var(--brand);
  --accent-strong: var(--brand-2);
  --tint: #fbe9f2;
  --tint-2: #f5edf4;
  --header-bg: rgba(255,255,255,.78);
  --header-border: #efe6ed;
  --shadow-sm: 0 2px 8px rgba(60,20,45,.05), 0 10px 24px rgba(60,20,45,.05);
  --shadow: 0 8px 18px rgba(60,20,45,.06), 0 30px 60px rgba(60,20,45,.10);
  --shadow-brand: 0 14px 34px rgba(201,43,126,.30);
  --on-brand: #ffffff;
  --card-radius: 16px;
  --hero-img: url("img/hero-mesh.jpg");
  --pagehead-img: url("img/pagehead.jpg");
  --hero-veil: rgba(255,255,255,.18);
  --pagehead-veil: rgba(255,255,255,.30);
  --noise-op: .5;
}

/* ---- ディープ（ダークグレー基調） ---- */
[data-theme="deep"] {
  --bg: #131318;
  --bg-alt: #191920;
  --surface: #1d1d24;
  --surface-2: #25252d;
  --text: #f1edf0;
  --text-muted: #a59faa;
  --border: #312f39;
  --hair: #29272f;
  --accent: #ff5aa9;
  --accent-strong: #ff8cc4;
  --tint: #2a1a26;
  --tint-2: #211e29;
  --header-bg: rgba(17,17,22,.72);
  --header-border: #2a2832;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.4);
  --shadow: 0 18px 50px rgba(0,0,0,.6);
  --shadow-brand: 0 14px 34px rgba(201,43,126,.5);
  --on-brand: #ffffff;
  --card-radius: 16px;
  --hero-img: url("img/hero-mesh-dark.jpg");
  --pagehead-img: url("img/hero-mesh-dark.jpg");
  --hero-veil: rgba(19,19,24,.28);
  --pagehead-veil: rgba(19,19,24,.45);
  --noise-op: .65;
}

/* ---- ソフト（やさしい淡ピンク・丸み） ---- */
[data-theme="soft"] {
  --bg: #fdf5f9;
  --bg-alt: #fbedf4;
  --surface: #ffffff;
  --surface-2: #fce9f2;
  --text: #43303b;
  --text-muted: #8a7080;
  --border: #f3dbe7;
  --hair: #f7e4ee;
  --accent: var(--brand);
  --accent-strong: var(--brand-2);
  --tint: #fce0ee;
  --tint-2: #fdebf3;
  --header-bg: rgba(253,245,249,.80);
  --header-border: #f6dfeb;
  --shadow-sm: 0 4px 16px rgba(201,43,126,.08);
  --shadow: 0 22px 50px rgba(201,43,126,.16);
  --shadow-brand: 0 16px 36px rgba(201,43,126,.32);
  --on-brand: #ffffff;
  --card-radius: 22px;
  --radius: 18px; --radius-lg: 30px;
  --hero-img: url("img/hero-mesh.jpg");
  --pagehead-img: url("img/pagehead.jpg");
  --hero-veil: rgba(253,245,249,.10);
  --pagehead-veil: rgba(253,245,249,.22);
  --noise-op: .42;
}

/* ========================= ベース ========================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: .012em;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: var(--font-jp); font-weight: 700; line-height: 1.42; letter-spacing: .01em; }
b, strong { font-weight: 700; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
section { position: relative; }
.sec { padding: clamp(64px, 9vw, 128px) 0; }
.sec-tight { padding: clamp(46px, 6vw, 84px) 0; }

/* 見出し共通：エディトリアルな小見出し */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en); font-style: normal; font-weight: 700;
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: currentColor; display: inline-block; opacity: .7; }
.sec-title {
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  line-height: 1.34; margin-bottom: 20px; letter-spacing: .005em;
}
.sec-title .hl { color: var(--accent); }
.sec-lead { color: var(--text-muted); font-size: 1.03rem; max-width: 720px; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .sec-lead { margin-inline: auto; }

/* ========================= ボタン ========================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-jp); font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(201,43,126,.42); background: var(--brand-2); }
.btn-ghost { background: transparent; color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.btn-ghost:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--brand-2); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,.2); }
.btn-lg { padding: 18px 38px; font-size: 1.06rem; }
.btn-block { width: 100%; }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ========================= ヘッダー ========================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--header-border);
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.header-inner { display: flex; align-items: center; gap: 18px; height: 74px; }
.brand-logo { display: flex; align-items: center; gap: 11px; font-weight: 800; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  background: linear-gradient(140deg, var(--brand), var(--brand-3));
  display: grid; place-items: center; color: #fff; font-family: var(--font-en);
  font-weight: 700; font-size: 1.04rem; box-shadow: var(--shadow-brand);
}
.brand-name { font-family: var(--font-jp); font-size: 1.12rem; line-height: 1.1; }
.brand-name small { display: block; font-family: var(--font-en); font-style: normal; font-size: .66rem; letter-spacing: .06em; color: var(--text-muted); font-weight: 600; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.nav a.navlink {
  position: relative; padding: 8px 11px; border-radius: 10px; font-size: .9rem; font-weight: 600;
  color: var(--text); transition: color .2s; white-space: nowrap; flex: 0 0 auto;
}
.nav a.navlink::after { content:""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1.5px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav a.navlink:hover { color: var(--accent); }
.nav a.navlink:hover::after, .nav a.navlink.is-active::after { transform: scaleX(1); }
.nav a.navlink.is-active { color: var(--accent); }
.nav .btn { padding: 9px 15px; font-size: .85rem; }

/* テーマ切替セグメント */
.theme-switch { display: inline-flex; align-items: center; gap: 7px; padding: 5px 11px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-pill); }
.theme-switch .ts-label { font-size: .72rem; font-weight: 700; color: var(--text-muted); white-space: nowrap; letter-spacing: .02em; }
.theme-switch .ts-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border); cursor: pointer; padding: 0; transition: transform .15s var(--ease), box-shadow .15s var(--ease), border-color .15s; }
.theme-switch .ts-dot.ts-clear { background: #ffffff; }
.theme-switch .ts-dot.ts-deep { background: #1d1d24; }
.theme-switch .ts-dot.ts-soft { background: #fbe0ee; }
.theme-switch .ts-dot:hover { transform: scale(1.14); }
.theme-switch .ts-dot.active { border-color: var(--accent); box-shadow: 0 0 0 2px var(--surface-2), 0 0 0 4px var(--accent); }

/* ハンバーガー */
.burger { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--border); background: var(--surface); border-radius: 12px; cursor: pointer; position: relative; }
.burger span, .burger::before, .burger::after { content:""; position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); transition: .3s var(--ease); }
.burger span { top: 22px; }
.burger::before { top: 15px; }
.burger::after { top: 29px; }
body.nav-open .burger span { opacity: 0; }
body.nav-open .burger::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .burger::after { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-menu {
  position: fixed; inset: 74px 0 0; z-index: 99;
  background: var(--bg); padding: 26px var(--gut) 60px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  overflow-y: auto;
}
body.nav-open .mobile-menu { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a.navlink { display: block; padding: 16px 6px; font-size: 1.1rem; font-weight: 700; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 22px; }
.mobile-menu .ms-theme { margin-top: 26px; }
.mobile-menu .ms-theme p { font-size: .82rem; color: var(--text-muted); margin-bottom: 10px; font-weight: 700; }

/* ========================= ヒーロー ========================= */
.hero { position: relative; padding: clamp(70px, 11vw, 138px) 0 clamp(60px, 9vw, 116px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: linear-gradient(var(--hero-veil), var(--hero-veil)), var(--hero-img);
  background-size: cover; background-position: right top;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: var(--img-noise); background-size: 220px; opacity: var(--noise-op);
  mix-blend-mode: soft-light; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 17px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 700; color: var(--accent); box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(201,43,126,.18); }
.hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.7rem); line-height: 1.26; letter-spacing: .005em; margin-bottom: 24px; }
.hero h1 .hl { color: var(--accent); position: relative; white-space: nowrap; }
.hero h1 .hl::after { content:""; position: absolute; left: -2px; right: -2px; bottom: 6px; height: 12px; background: var(--tint); z-index: -1; border-radius: 3px; }
.hero p.lead { font-size: 1.1rem; color: var(--text-muted); max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 20px; font-size: .85rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

/* ヒーロー右：SVGイラスト or AIカード */
.hero-visual { position: relative; }
.hero-visual > img { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(90,16,56,.12)); }
.hero-visual .ai-float {
  position: absolute; right: 6px; top: 2px; z-index: 3; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px; padding: 11px 15px;
  box-shadow: var(--shadow); font-size: .82rem; font-weight: 800; color: var(--accent-strong);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-visual .ai-float .pin { color: var(--accent); }

/* 旧AIカード（他で使う場合のため温存） */
.ai-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); position: relative; }
.ai-card .ai-head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 14px; }
.ai-card .ai-ico { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--brand), var(--brand-3)); display: grid; place-items: center; color: #fff; font-size: .82rem; font-weight: 800; font-family: var(--font-en); }
.ai-line { height: 11px; border-radius: 6px; background: var(--surface-2); margin: 9px 0; }
.ai-line.w90 { width: 90%; } .ai-line.w70 { width: 70%; } .ai-line.w80 { width: 80%; }
.ai-quote { margin-top: 14px; padding: 13px 15px; border-radius: 14px; background: var(--tint); border: 1px solid var(--border); font-size: .86rem; font-weight: 700; color: var(--accent-strong); line-height: 1.7; }
.ai-quote small { display: block; font-weight: 600; color: var(--text-muted); margin-top: 4px; font-size: .72rem; }

/* ========================= 汎用カード ========================= */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--card-radius); padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  height: 100%; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); }
.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }

/* カード内メディア（写真スロット） */
.card-media { margin: -30px -30px 22px; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-media::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, color-mix(in srgb, var(--surface) 92%, transparent)); }

.num-badge {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  font-family: var(--font-en); font-weight: 700; font-size: 1.5rem; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-3)); margin-bottom: 18px;
  box-shadow: var(--shadow-brand);
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: .95rem; }
.card ul { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
.card ul li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--text); }
.card ul li::before { content: ""; position: absolute; left: 0; top: .5em; width: 13px; height: 13px; border-radius: 4px; background: var(--tint); border: 2px solid var(--accent); }

/* バンド */
.band { background: var(--bg-alt); }
.band-tint { background: linear-gradient(180deg, var(--tint-2), transparent); }

/* 画像フレーム（汎用） */
.figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure.tall { aspect-ratio: 4/5; }
.figure.wide { aspect-ratio: 16/10; }
.figure .figure-tag { position: absolute; left: 16px; bottom: 16px; background: var(--surface); color: var(--accent-strong); font-weight: 800; font-size: .8rem; padding: 8px 15px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }

/* ========================= フロー比較 ========================= */
.flow-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px, 3vw, 40px); align-items: stretch; }
.flow-col { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.flow-col.now { border-color: color-mix(in srgb, var(--accent) 55%, var(--border)); box-shadow: var(--shadow); }
.flow-col.now::before { content: "これから"; position: absolute; top: -13px; left: 26px; background: var(--brand); color: #fff; font-size: .74rem; font-weight: 800; padding: 5px 15px; border-radius: var(--radius-pill); letter-spacing: .04em; }
.flow-col.old::before { content: "従来"; position: absolute; top: -13px; left: 26px; background: var(--surface-2); color: var(--text-muted); font-size: .74rem; font-weight: 800; padding: 5px 15px; border-radius: var(--radius-pill); border: 1px solid var(--border); }
.flow-col h4 { font-size: 1rem; color: var(--text-muted); margin-bottom: 18px; font-weight: 700; }
.flow-col.now h4 { color: var(--accent); }
.flow-step { display: flex; align-items: center; gap: 12px; padding: 14px 17px; border-radius: 13px; background: var(--surface-2); font-weight: 700; font-size: .96rem; }
.flow-col.now .flow-step { background: var(--tint); }
.flow-arrow-v { text-align: center; color: var(--text-muted); font-size: 1.1rem; margin: 8px 0; }
.flow-mid { display: grid; place-items: center; }
.flow-mid .vs { width: 54px; height: 54px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; font-family: var(--font-en); font-style: normal; font-weight: 700; color: var(--accent); box-shadow: var(--shadow-sm); }

/* ========================= お悩み ========================= */
.worry-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.worry { display: flex; align-items: flex-start; gap: 14px; padding: 19px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; font-weight: 600; font-size: .98rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), border-color .25s; }
.worry:hover { transform: translateX(5px); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.worry .chk { flex: none; width: 27px; height: 27px; border-radius: 8px; background: var(--tint); color: var(--accent); display: grid; place-items: center; font-weight: 800; }

/* ========================= Before / After ========================= */
.ba { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; }
.ba-box { border-radius: var(--radius); padding: 26px; border: 1px solid var(--border); }
.ba-box.before { background: var(--surface-2); }
.ba-box.after { background: var(--tint); border-color: color-mix(in srgb, var(--accent) 50%, var(--border)); }
.ba-box .tag { font-family: var(--font-en); font-style: normal; font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; display: inline-block; }
.ba-box.before .tag { color: var(--text-muted); }
.ba-box.after .tag { color: var(--accent); }
.ba-box .qa { font-weight: 700; }
.ba-box .struct { margin-top: 6px; }
.ba-box .struct b { color: var(--accent-strong); }
.ba-mid { font-size: 1.5rem; color: var(--accent); }

/* ========================= チップ ========================= */
.chips { display: flex; flex-wrap: wrap; gap: 11px; }
.chip { padding: 10px 18px; border-radius: var(--radius-pill); font-weight: 700; font-size: .9rem; background: var(--surface); border: 1px solid var(--border); color: var(--text); transition: all .25s var(--ease); }
.chip:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }
.chip.brand { background: var(--tint); color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); }

/* ========================= 効果 ========================= */
.effects { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.effect { display: flex; gap: 14px; align-items: center; padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-sm); }
.effect .ico { flex: none; width: 44px; height: 44px; border-radius: 13px; background: var(--tint); color: var(--accent); display: grid; place-items: center; font-size: 1.25rem; }
.effect b { font-size: .98rem; }

/* ========================= 無料診断レポート CTA ========================= */
.report-hero {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); color: var(--text); padding: clamp(38px, 5.5vw, 68px);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.report-hero::before {
  content:""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(58% 85% at 100% 0%, var(--tint) 0%, transparent 60%),
    radial-gradient(48% 78% at 0% 100%, var(--tint-2) 0%, transparent 62%);
}
.report-hero .inner { position: relative; z-index: 1; max-width: 820px; }
.price-flip { display: inline-flex; align-items: baseline; gap: 18px; margin: 18px 0 24px; flex-wrap: wrap; }
.price-old { position: relative; font-family: var(--font-en); font-size: 1.5rem; font-weight: 600; color: var(--text-muted); }
.price-old::after { content:""; position: absolute; left: -4px; right: -4px; top: 52%; height: 2.5px; background: currentColor; transform: rotate(-8deg); }
.price-new { font-family: var(--font-en); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); line-height: 1; color: var(--accent); }
.price-tag { display: inline-block; background: var(--tint); color: var(--accent-strong); border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border)); font-weight: 800; font-size: .82rem; padding: 7px 16px; border-radius: var(--radius-pill); letter-spacing: .02em; }
.report-hero h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 16px; color: var(--text); }
.report-hero p { color: var(--text-muted); margin-bottom: 22px; }

/* レポート内容 */
.report-items { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.report-item { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px 20px; box-shadow: var(--shadow-sm); }
.report-item .ri-no { font-family: var(--font-en); font-style: normal; font-weight: 700; color: var(--accent); font-size: 1.7rem; margin-bottom: 12px; }
.report-item h4 { font-size: 1.02rem; margin-bottom: 10px; }
.report-item ul { list-style: none; display: grid; gap: 6px; }
.report-item li { font-size: .85rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.report-item li::before { content:"・"; position: absolute; left: 0; color: var(--accent); }

/* ========================= 料金プラン ========================= */
.plans { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: stretch; }
.plan { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan.featured { border: 1.5px solid var(--accent); box-shadow: var(--shadow); }
.plan.featured::before { content:"おすすめ"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-weight: 800; font-size: .78rem; padding: 6px 22px; border-radius: var(--radius-pill); letter-spacing: .06em; box-shadow: var(--shadow-brand); }
.plan .plan-name { font-size: 1.18rem; font-weight: 800; }
.plan .plan-price { font-family: var(--font-en); font-weight: 700; font-size: 2.3rem; color: var(--accent); margin: 14px 0 4px; letter-spacing: -.01em; }
.plan .plan-price small { font-size: .9rem; color: var(--text-muted); font-weight: 600; font-family: var(--font-body); }
.plan .plan-desc { color: var(--text-muted); font-size: .9rem; margin-bottom: 20px; min-height: 40px; }
.plan ul { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan ul li { position: relative; padding-left: 28px; font-size: .93rem; }
.plan ul li::before { content:"✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }

/* ========================= FAQ ========================= */
.faq-list { display: grid; gap: 14px; max-width: 880px; margin-inline: auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq-item[open] { border-color: color-mix(in srgb, var(--accent) 50%, var(--border)); box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 15px; padding: 22px 26px; font-weight: 700; font-size: 1.02rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--tint); color: var(--accent); display: grid; place-items: center; font-family: var(--font-en); font-style: normal; font-weight: 700; }
.faq-item summary .ico { margin-left: auto; flex: none; transition: transform .3s var(--ease); color: var(--accent); font-size: 1.3rem; line-height: 1; }
.faq-item[open] summary .ico { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 24px 71px; color: var(--text-muted); font-size: .96rem; }

/* ========================= パンくず ========================= */
.crumbs { font-size: .82rem; color: var(--text-muted); padding: 16px 0 0; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { opacity: .5; }

/* ページヘッダー（下層共通・画像背景） */
.page-head { padding: clamp(54px,7vw,92px) 0 clamp(34px,5vw,56px); position: relative; overflow: hidden; }
.page-head::before {
  content:""; position: absolute; inset: 0; z-index: -2;
  background-image: linear-gradient(var(--pagehead-veil), var(--pagehead-veil)), var(--pagehead-img);
  background-size: cover; background-position: right top;
}
.page-head::after { content:""; position: absolute; inset:0; z-index:-1; background-image: var(--img-noise); background-size: 200px; opacity: var(--noise-op); mix-blend-mode: soft-light; }
.page-head h1 { font-size: clamp(1.9rem, 4.6vw, 2.9rem); margin: 16px 0 16px; }
.page-head p { color: var(--text-muted); max-width: 680px; }

/* ========================= 最後の一押し CTA ========================= */
.cta-band { background: var(--bg-alt); }
.cta-card { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(40px,6vw,66px); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.cta-card::before { content:""; position: absolute; inset: 0; z-index: 0; opacity: .7; background: radial-gradient(60% 90% at 50% -10%, var(--tint), transparent 70%); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { font-size: clamp(1.6rem,3.6vw,2.3rem); margin-bottom: 16px; }
.cta-card p { color: var(--text-muted); margin-bottom: 28px; max-width: 560px; margin-inline: auto; }

/* ========================= フォーム ========================= */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(30px,5vw,46px); box-shadow: var(--shadow); }
.field { margin-bottom: 22px; }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 9px; }
.field label .req { color: var(--accent); font-size: .78rem; margin-left: 6px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px; padding: 14px 16px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(201,43,126,.14); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }
.form-success { display: none; text-align: center; padding: 20px; background: var(--tint); border: 1px solid var(--accent); border-radius: 14px; color: var(--accent-strong); font-weight: 700; margin-top: 16px; }
.form-success.show { display: block; }

/* ========================= フッター（常に暗色・白ロゴ用） ========================= */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 68px 0 32px; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 38px; padding-bottom: 38px; border-bottom: 1px solid var(--footer-line); }
.footer-brand img { height: 42px; width: auto; margin-bottom: 18px; }
.footer-brand .co { font-weight: 800; color: #fff; font-size: 1.04rem; margin-bottom: 12px; }
.footer-brand address { font-style: normal; font-size: .88rem; line-height: 2; color: var(--footer-muted); }
.footer-col h4 { color: #fff; font-size: .92rem; margin-bottom: 16px; letter-spacing: .04em; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: var(--footer-text); font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--brand); }
.footer-services { margin-top: 14px; }
.footer-services .sv-label { color: var(--footer-muted); font-size: .78rem; letter-spacing: .08em; margin-bottom: 14px; }
.footer-services .sv-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
.footer-services .sv-logos a { display: inline-flex; align-items: center; opacity: .78; transition: opacity .2s, transform .2s; }
.footer-services .sv-logos a:hover { opacity: 1; transform: translateY(-2px); }
.footer-services .sv-logos img { height: 27px; width: auto; }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .links a { font-size: .82rem; color: var(--footer-muted); }
.footer-bottom .links a:hover { color: var(--brand); }
.footer-bottom .copy { font-size: .78rem; color: var(--footer-muted); }

/* ========================= スクロール演出 ========================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ========================= レスポンシブ ========================= */
@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin-inline: auto; }
  .g-3, .effects, .report-items, .plans { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .g-2, .g-3, .worry-grid, .effects, .report-items, .plans { grid-template-columns: 1fr; }
  .flow-compare { grid-template-columns: 1fr; }
  .flow-mid { transform: rotate(90deg); margin: 4px 0; }
  .ba { grid-template-columns: 1fr; }
  .ba-mid { transform: rotate(90deg); justify-self: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ========================= 無料診断ツール ========================= */
.diag { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(26px,4vw,44px); box-shadow: var(--shadow); }
.diag-step { display: none; }
.diag-step.active { display: block; animation: diagIn .4s var(--ease); }
@keyframes diagIn { from { opacity:0; transform: translateY(12px);} to {opacity:1; transform:none;} }
.diag-progress { height: 6px; border-radius: 99px; background: var(--surface-2); overflow: hidden; margin-bottom: 26px; }
.diag-progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); width: 0; transition: width .4s var(--ease); border-radius: 99px; }
.diag-kicker { font-family: var(--font-en); font-style: normal; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); font-size: .8rem; font-weight: 700; margin-bottom: 8px; }
.diag h3 { font-size: clamp(1.2rem,2.6vw,1.6rem); margin-bottom: 10px; }
.diag .lead-sm { color: var(--text-muted); font-size: .96rem; margin-bottom: 22px; }

.diag-q { font-weight: 700; font-size: 1.08rem; margin: 4px 0 18px; line-height: 1.6; }
.diag-qcount { font-family: var(--font-en); font-style: normal; color: var(--text-muted); font-size: .9rem; }
.diag-opts { display: grid; gap: 12px; }
.diag-opt { text-align: left; background: var(--bg); border: 1.5px solid var(--border); border-radius: 14px; padding: 16px 18px; font-family: var(--font-jp); font-weight: 700; font-size: 1rem; color: var(--text); cursor: pointer; transition: all .2s var(--ease); display: flex; align-items: center; gap: 13px; }
.diag-opt:hover { border-color: var(--accent); transform: translateX(3px); }
.diag-opt .mk { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border); display: grid; place-items: center; transition: all .2s; }
.diag-opt.sel { border-color: var(--accent); background: var(--tint); color: var(--accent-strong); }
.diag-opt.sel .mk { border-color: var(--accent); background: var(--accent); color: #fff; }
.diag-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; }
.diag-back { background: transparent; border: none; color: var(--text-muted); font-family: var(--font-jp); font-weight: 700; cursor: pointer; padding: 10px 6px; }
.diag-back:hover { color: var(--accent); }
.diag-field { margin-bottom: 18px; }
.diag-field label { display:block; font-weight:700; font-size:.92rem; margin-bottom:8px; }
.diag-field input { width:100%; font-family:var(--font-body); font-size:1rem; color:var(--text); background:var(--bg); border:1.5px solid var(--border); border-radius:12px; padding:14px 16px; }
.diag-field input:focus { outline:none; border-color:var(--accent); box-shadow:0 0 0 4px rgba(201,43,126,.14); }

/* 結果ドキュメント（常にライト＝PDF用に固定配色） */
.report-doc { background:#ffffff; color:#23202a; border-radius:18px; padding: clamp(24px,4vw,40px); border:1px solid #eee; }
.report-doc .rd-head { display:flex; align-items:center; gap:14px; border-bottom:2px solid #f0e7ee; padding-bottom:18px; margin-bottom:22px; }
.report-doc .rd-mark { width:44px; height:44px; border-radius:12px; background:linear-gradient(140deg,#C92B7E,#7c1549); color:#fff; display:grid; place-items:center; font-family:var(--font-en); font-weight:700; font-size:1.1rem; }
.report-doc .rd-title { font-size:1.15rem; font-weight:800; color:#23202a; }
.report-doc .rd-title small { display:block; font-weight:600; color:#8a8490; font-size:.78rem; }
.report-doc .rd-url { margin-left:auto; text-align:right; font-size:.8rem; color:#8a8490; max-width:46%; word-break:break-all; }
.rd-overall { display:flex; align-items:center; gap:24px; flex-wrap:wrap; margin-bottom:26px; }
.score-ring { --val:0; width:130px; height:130px; flex:none; border-radius:50%; display:grid; place-items:center; background:conic-gradient(#C92B7E calc(var(--val)*1%), #f0e7ee 0); }
.score-ring .inner { width:104px; height:104px; border-radius:50%; background:#fff; display:grid; place-items:center; text-align:center; }
.score-ring b { font-family:var(--font-en); font-weight:700; font-size:2.2rem; color:#C92B7E; line-height:1; }
.score-ring small { display:block; font-size:.72rem; color:#8a8490; margin-top:2px; }
.rd-verdict h4 { font-size:1.2rem; color:#23202a; margin-bottom:6px; }
.rd-verdict p { color:#6a6470; font-size:.94rem; }
.score-bars { display:grid; gap:14px; margin-bottom:26px; }
.score-bar .sb-top { display:flex; justify-content:space-between; font-size:.9rem; font-weight:700; margin-bottom:6px; color:#23202a; }
.score-bar .sb-top .v { font-family:var(--font-en); color:#C92B7E; }
.score-bar .track { height:9px; border-radius:99px; background:#f0e7ee; overflow:hidden; }
.score-bar .fill { height:100%; border-radius:99px; background:linear-gradient(90deg,#C92B7E,#a31f64); width:0; transition:width .9s var(--ease); }
.rd-sec-title { font-weight:800; color:#23202a; font-size:1.02rem; margin:0 0 14px; display:flex; align-items:center; gap:9px; }
.rd-sec-title::before { content:""; width:18px; height:18px; border-radius:6px; background:#fbeaf3; border:2px solid #C92B7E; }
.improve-list { display:grid; gap:10px; list-style:none; }
.improve-item { display:flex; gap:12px; padding:14px 16px; background:#fbf6fa; border:1px solid #f1e0eb; border-radius:12px; font-size:.92rem; color:#3a343f; }
.improve-item .ii-no { flex:none; width:24px; height:24px; border-radius:7px; background:#C92B7E; color:#fff; font-family:var(--font-en); font-weight:700; display:grid; place-items:center; font-size:.8rem; }
.rd-foot { margin-top:22px; padding-top:16px; border-top:1px solid #f0e7ee; font-size:.74rem; color:#9a949f; }

.diag-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }
.diag-actions .btn { flex:1 1 220px; }

/* コース選択 */
.course-opts { display:grid; gap:13px; margin-bottom:8px; }
.course-opt { display:flex; align-items:flex-start; gap:13px; padding:17px 18px; border:1.5px solid var(--border); border-radius:14px; cursor:pointer; transition:all .2s var(--ease); background:var(--bg); }
.course-opt:hover { border-color:var(--accent); }
.course-opt.sel { border-color:var(--accent); background:var(--tint); }
.course-opt .mk { flex:none; width:22px; height:22px; border-radius:50%; border:2px solid var(--border); margin-top:2px; display:grid; place-items:center; }
.course-opt.sel .mk { border-color:var(--accent); background:var(--accent); color:#fff; }
.course-opt .co-name { font-weight:800; }
.course-opt .co-price { font-family:var(--font-en); color:var(--accent); font-weight:700; margin-left:6px; }
.course-opt .co-desc { font-size:.85rem; color:var(--text-muted); margin-top:3px; }
.diag-hint { background:var(--tint-2); border:1px solid var(--border); border-radius:13px; padding:13px 16px; font-size:.86rem; color:var(--text-muted); margin:14px 0 4px; }
.diag-hint b { color:var(--accent-strong); }
.diag-note { font-size:.8rem; color:var(--text-muted); }

/* ========================= ブランドロゴ ========================= */
.brand-logo { gap: 0; }
.brand-logo-img { height: 34px; width: auto; display: block; }
.logo-rev { display: none; }
[data-theme="deep"] .logo-default { display: none; }
[data-theme="deep"] .logo-rev { display: block; }
.footer-logo-img { width: auto; }
@media (max-width: 600px) { .brand-logo-img { height: 30px; } }

/* ========================= 対応エリア案内（report-hero内） ========================= */
.area-note { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; margin: 4px 0 22px; }
.area-note .area-h { font-weight: 800; font-size: 1rem; margin-bottom: 4px; color: var(--text); }
.area-note .area-sub { font-size: .86rem; color: var(--text-muted); margin-bottom: 14px; }
.area-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.area-col .area-tag { display: inline-block; background: var(--accent); color: #fff; font-weight: 800; font-size: .74rem; padding: 4px 12px; border-radius: 99px; margin-bottom: 8px; }
.area-col .area-list { display: block; font-size: .9rem; line-height: 1.9; font-weight: 600; color: var(--text); }
.area-foot { font-size: .86rem; color: var(--text-muted); margin-top: 16px; line-height: 1.8; }
.area-foot b { background: var(--tint); color: var(--accent-strong); padding: 1px 7px; border-radius: 6px; }
@media (max-width: 600px) { .area-cols { grid-template-columns: 1fr; } }

/* ========================= LP制作プラン専用 ========================= */
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .g-4 { grid-template-columns: 1fr; } }

.lp-hero { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(24px,4vw,44px); align-items: center; }
.lp-quarter { margin-top: 14px; font-size: .95rem; color: var(--text-muted); }
.lp-quarter b { font-family: var(--font-en); font-weight: 800; color: var(--accent); font-size: 1.4rem; }

.price-compare { display: grid; gap: 12px; margin-top: 22px; max-width: 520px; }
.pc-row { display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: 12px; }
.pc-label { font-size: .82rem; font-weight: 700; color: var(--text-muted); }
.pc-bar { height: 16px; border-radius: 99px; width: var(--w); }
.pc-market .pc-bar { background: var(--surface-2); border: 1px solid var(--border); }
.pc-ours .pc-bar { background: linear-gradient(90deg, var(--brand), var(--brand-2)); }
.pc-val { font-family: var(--font-en); font-weight: 800; font-size: 1.02rem; white-space: nowrap; }
.pc-market .pc-val { color: var(--text-muted); }
.pc-market .pc-val small, .pc-val small { font-family: var(--font-body); font-size: .72rem; font-weight: 600; }
.pc-ours .pc-val { color: var(--accent); }

.lp-price-card { background: var(--surface); border: 1.5px solid var(--accent); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow); }
.lp-price-card .lp-plan-name { font-weight: 800; font-size: 1.12rem; }
.lp-price-card .lp-price { font-family: var(--font-en); font-weight: 800; font-size: 2.6rem; color: var(--accent); margin: 8px 0 16px; letter-spacing: -.01em; }
.lp-price-card .lp-price small { font-family: var(--font-body); font-size: .9rem; color: var(--text-muted); font-weight: 600; }
.lp-price-card ul { list-style: none; display: grid; gap: 11px; margin-bottom: 22px; }
.lp-price-card ul li { position: relative; padding-left: 28px; font-size: .93rem; }
.lp-price-card ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }

/* 実績サムネ（外部LPをiframeで縮小プレビュー） */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .works-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .works-grid { grid-template-columns: 1fr; } }
.work figcaption { margin-top: 12px; font-weight: 800; font-size: .96rem; }
.work figcaption span { display: block; font-family: var(--font-en); font-weight: 500; color: var(--text-muted); font-size: .8rem; margin-top: 2px; word-break: break-all; }
.site-thumb { position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); background: var(--surface-2); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.site-thumb:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.site-thumb::before { content: attr(data-domain); position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; color: var(--text-muted); font-size: .82rem; font-weight: 700; padding: 12px; text-align: center; }
.site-thumb iframe { position: absolute; top: 0; left: 0; width: 1200px; height: 1500px; border: 0; transform-origin: top left; pointer-events: none; z-index: 1; background: #fff; }
.thumb-overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; padding: 16px; background: linear-gradient(180deg, transparent 58%, rgba(36,26,32,.55)); opacity: 0; transition: opacity .25s var(--ease); }
.site-thumb:hover .thumb-overlay { opacity: 1; }
.thumb-label { color: #fff; font-weight: 800; font-size: .86rem; background: var(--brand); padding: 8px 15px; border-radius: 99px; box-shadow: var(--shadow-brand); }
@media (max-width: 980px) { .lp-hero { grid-template-columns: 1fr; } }

.lp-promo { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px,4vw,40px); }
.lp-promo .btn { flex: none; }

/* ========================= 無料診断CTA：バッジ・利用数 ========================= */
.rh-top { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 6px; }
.usage { display: inline-flex; align-items: center; gap: 9px; background: var(--tint-2); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius-pill); padding: 7px 16px; font-size: .84rem; font-weight: 700; }
.usage b { font-family: var(--font-en); font-weight: 800; font-size: 1.05rem; color: var(--accent); }
.usage .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent); animation: usagePulse 2.2s infinite; }
@keyframes usagePulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 45%, transparent); } 70% { box-shadow: 0 0 0 9px color-mix(in srgb, var(--accent) 0%, transparent); } 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent); } }
.rh-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 14px; }
.rh-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius-pill); padding: 8px 15px; font-size: .84rem; font-weight: 700; }
.rh-badge .ic { width: 18px; height: 18px; flex: none; display: grid; place-items: center; background: var(--accent); color: #fff; border-radius: 50%; font-size: .68rem; font-weight: 900; }
.rh-noreg { font-size: .92rem; color: var(--text-muted); margin: 0 0 18px; line-height: 1.8; }
.rh-noreg b { background: var(--tint); color: var(--accent-strong); padding: 1px 8px; border-radius: 6px; font-weight: 800; }
@media (prefers-reduced-motion: reduce) { .usage .pulse { animation: none; } }

/* ========================= ヒーロー内オファー（基本8ページ¥98,000〜） ========================= */
.hero-offer { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin: 2px 0 26px; padding: 16px 20px; background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 16px; box-shadow: var(--shadow-sm); }
.hero-offer .ho-price { flex: none; display: flex; flex-direction: column; }
.hero-offer .ho-label { font-size: .74rem; font-weight: 700; color: var(--text-muted); margin-bottom: 2px; }
.hero-offer .ho-amt { display: inline-flex; align-items: baseline; gap: 2px; }
.hero-offer .ho-amt b { font-family: var(--font-en); font-weight: 800; font-size: 2rem; line-height: 1; color: var(--accent); letter-spacing: -.01em; }
.hero-offer .ho-amt small { font-size: .95rem; font-weight: 700; color: var(--accent); }
.hero-offer .ho-text { font-size: .9rem; line-height: 1.75; color: var(--text); flex: 1 1 280px; margin: 0; }
.hero-offer .ho-text b { color: var(--accent-strong); }
.hero-offer .ho-div { width: 1px; align-self: stretch; background: var(--border); flex: none; }
@media (max-width: 560px) { .hero-offer .ho-div { display: none; } }

/* ========================= フッター 対応エリアリンク ========================= */
.footer-areas { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--footer-line); display: flex; flex-wrap: wrap; align-items: center; gap: 7px 13px; }
.footer-areas .fa-label { font-size: .74rem; font-weight: 700; color: var(--footer-muted); letter-spacing: .06em; }
.footer-areas a { font-size: .8rem; color: var(--footer-text); opacity: .82; transition: color .2s, opacity .2s; }
.footer-areas a:hover { color: var(--brand); opacity: 1; }
