/*
Theme Name: アドマカセ LP
Theme URI: https://shion-inc.jp/
Author: SHION合同会社
Author URI: https://shion-inc.jp/
Description: 広告運用代行サービス「アドマカセ」専用のランディングページテーマ。SEO・CVR最適化済み（構造化データ／専用CVページ／お問い合わせフォーム内蔵）。
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: admakase-lp
*/

/* =========================================================
   Design Tokens（カラーは資料準拠）
   ========================================================= */
:root {
  --color-primary: #14463A;
  --color-primary-dark: #0C2C24;
  --color-primary-mid: #1C5A49;
  --color-emerald: #0E6B57;
  --color-accent: #E89B3C;
  --color-accent-dark: #D4862A;
  --color-accent-soft: #FBEFDD;
  --color-bg: #F2F6F4;
  --color-bg-alt: #FFFFFF;
  --color-text: #1B2722;
  --color-muted: #5C6B65;
  --color-line: #E2E9E5;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 12px rgba(20, 70, 58, 0.06);
  --shadow: 0 14px 36px rgba(20, 70, 58, 0.12);
  --shadow-lg: 0 30px 70px rgba(12, 44, 36, 0.22);

  --container: 1140px;
  --container-narrow: 900px;
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

/* =========================================================
   Reset / Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s, background .2s, opacity .2s, transform .2s; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; }

.pc-only { display: inline; }
.sp-only { display: none; }
@media (max-width: 760px) { .pc-only { display: none; } .sp-only { display: inline; } }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Section commons
   ========================================================= */
.section { padding: 110px 0; position: relative; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-primary); color: #fff; }
.section--deep { background: var(--color-primary-dark); color: #fff; }
.section--tight { padding: 80px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.3em;
  color: var(--color-emerald); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--color-accent); display: inline-block; }
.section--dark .eyebrow, .section--deep .eyebrow { color: var(--color-accent); }

.section-title {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900; line-height: 1.32; letter-spacing: 0.01em;
  color: var(--color-primary);
}
.section--dark .section-title, .section--deep .section-title { color: #fff; }
.section-lead { margin-top: 20px; font-size: 17px; color: var(--color-muted); max-width: 760px; }
.section--dark .section-lead, .section--deep .section-lead { color: rgba(255,255,255,.82); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

.accent { color: var(--color-accent); }
.em { color: var(--color-emerald); font-weight: 800; }
.marker { background: linear-gradient(transparent 58%, rgba(232,155,60,.45) 58%); font-weight: 900; padding: 0 .05em; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-weight: 800; letter-spacing: 0.04em; padding: 19px 44px;
  border-radius: 999px; line-height: 1.4; text-align: center;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary { background: var(--color-accent); color: #fff; box-shadow: 0 12px 26px rgba(232,155,60,.42); }
.btn-primary:hover { background: var(--color-accent-dark); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(232,155,60,.52); }
.btn-ghost { background: rgba(255,255,255,.10); color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }
.btn-dark { background: var(--color-primary); color: #fff; box-shadow: var(--shadow); }
.btn-dark:hover { background: var(--color-primary-dark); transform: translateY(-3px); }
.btn-lg { padding: 23px 60px; font-size: 18px; }
.btn-block { display: flex; width: 100%; }
.btn .arrow { font-size: 1.15em; line-height: 1; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(5px); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.93);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 36px; width: auto; }
.global-nav ul { display: flex; align-items: center; gap: 26px; }
.global-nav a { font-size: 14px; font-weight: 700; color: var(--color-text); }
.global-nav a:hover { color: var(--color-emerald); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-cta { background: var(--color-accent); color: #fff; font-weight: 800; font-size: 14px; padding: 12px 24px; border-radius: 999px; box-shadow: 0 6px 16px rgba(232,155,60,.35); }
.header-cta:hover { background: var(--color-accent-dark); transform: translateY(-1px); }
.nav-toggle { display: none; }

/* =========================================================
   HERO（大胆な構成）
   ========================================================= */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: radial-gradient(130% 120% at 85% -10%, var(--color-emerald) 0%, var(--color-primary) 48%, var(--color-primary-dark) 100%);
  padding: 100px 0 150px;
}
.hero::before { content: ""; position: absolute; right: -120px; top: -140px; width: 480px; height: 480px; background: rgba(14,107,87,.5); border-radius: 50%; }
.hero::after { content: ""; position: absolute; left: -140px; bottom: -180px; width: 380px; height: 380px; background: rgba(232,155,60,.18); border-radius: 50%; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); padding: 9px 18px; border-radius: 999px; font-size: 13px; font-weight: 800; letter-spacing: .05em; margin-bottom: 26px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); box-shadow: 0 0 0 4px rgba(232,155,60,.3); }
.hero h1 { font-size: clamp(32px, 5.6vw, 60px); font-weight: 900; line-height: 1.28; letter-spacing: 0.005em; }
.hero h1 .hl { background: linear-gradient(transparent 58%, rgba(232,155,60,.55) 58%); }
.hero h1 .price-pop { color: var(--color-accent); }
.hero-sub { margin-top: 26px; font-size: 18px; line-height: 1.95; color: rgba(255,255,255,.9); }
.hero-points { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); padding: 10px 18px; border-radius: 10px; font-size: 14px; font-weight: 800; }
.hero-points .check { color: var(--color-accent); font-weight: 900; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.7); }

/* Hero price tag card */
.hero-card { background: #fff; color: var(--color-text); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); position: relative; }
.hero-card .ribbon { position: absolute; top: -16px; left: 28px; background: var(--color-accent); color: #fff; font-size: 13px; font-weight: 800; padding: 8px 18px; border-radius: 999px; box-shadow: 0 8px 18px rgba(232,155,60,.4); }
.hero-card .label { font-size: 14px; font-weight: 800; color: var(--color-emerald); margin-top: 8px; }
.hero-card .price { margin-top: 4px; font-weight: 900; line-height: 1; color: var(--color-primary); display: flex; align-items: baseline; gap: 4px; }
.hero-card .price .num { font-size: 66px; }
.hero-card .price .unit { font-size: 22px; font-weight: 800; }
.hero-card .price .per { font-size: 15px; color: var(--color-muted); font-weight: 700; }
.split-bar { display: flex; margin-top: 22px; border-radius: 12px; overflow: hidden; font-size: 13px; }
.split-bar div { padding: 14px 12px; text-align: center; color: #fff; font-weight: 800; line-height: 1.4; }
.split-bar .ad { background: var(--color-primary); flex: 1; }
.split-bar .ope { background: var(--color-accent); flex: 1; }
.split-bar small { display: block; font-weight: 500; font-size: 11px; opacity: .92; margin-top: 3px; }
.hero-card .card-note { margin-top: 16px; font-size: 12px; color: var(--color-muted); }

/* Hero wave divider */
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* =========================================================
   Marquee stats（流れる実績）
   ========================================================= */
.statband { background: var(--color-primary-dark); color: #fff; padding: 0; position: relative; z-index: 3; }
.statband-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.statband-grid li { padding: 34px 16px; border-right: 1px solid rgba(255,255,255,.12); }
.statband-grid li:last-child { border-right: none; }
.statband-grid .num { font-size: 40px; font-weight: 900; color: var(--color-accent); line-height: 1.05; }
.statband-grid .num small { font-size: 17px; margin-left: 2px; }
.statband-grid .cap { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 8px; }

/* =========================================================
   PAIN（共感・大胆な暗バンド）
   ========================================================= */
.pain { background: var(--color-primary); color: #fff; position: relative; }
.pain .lead-big { text-align: center; font-size: clamp(22px, 3.6vw, 34px); font-weight: 900; line-height: 1.5; margin-bottom: 50px; }
.pain .lead-big .accent { color: var(--color-accent); }
.pain-list { max-width: 760px; margin: 0 auto; display: grid; gap: 16px; }
.pain-item { display: flex; align-items: center; gap: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 22px 26px; font-size: clamp(16px,2.2vw,19px); font-weight: 700; }
.pain-item .ck { flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--color-accent); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 18px; }
.pain-bridge { text-align: center; margin-top: 56px; }
.pain-bridge .arrow-down { font-size: 30px; color: var(--color-accent); }
.pain-bridge p { font-size: clamp(20px,3vw,30px); font-weight: 900; margin-top: 10px; }
.pain-bridge .em { color: var(--color-accent); }

/* =========================================================
   PROMISE（3つの約束 / 解決宣言）
   ========================================================= */
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.promise-card { background: var(--color-bg-alt); border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 40px 30px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.promise-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.promise-card .pico { width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 22px; background: linear-gradient(135deg, var(--color-emerald), var(--color-primary)); color: #fff; display: grid; place-items: center; font-size: 34px; box-shadow: 0 12px 24px rgba(14,70,58,.28); }
.promise-card h3 { font-size: 21px; font-weight: 900; color: var(--color-primary); margin-bottom: 14px; }
.promise-card p { font-size: 15px; color: var(--color-muted); }

/* =========================================================
   COMPARE（比較表：従来代理店 vs アドマカセ）
   ========================================================= */
.compare-wrap { max-width: 960px; margin: 0 auto; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 620px; }
.compare-table th, .compare-table td { padding: 22px 20px; text-align: center; font-size: 15.5px; }
.compare-table thead th { font-size: 16px; font-weight: 900; }
.compare-table thead th:first-child { background: transparent; }
.compare-table thead .col-us { background: var(--color-primary); color: #fff; border-radius: var(--radius) var(--radius) 0 0; font-size: 18px; position: relative; }
.compare-table thead .col-them { color: var(--color-muted); }
.compare-table tbody th { text-align: left; font-weight: 800; color: var(--color-primary); background: var(--color-bg); border-bottom: 1px solid var(--color-line); white-space: nowrap; }
.compare-table tbody td { border-bottom: 1px solid var(--color-line); background: var(--color-bg-alt); }
.compare-table .col-us { background: rgba(14,107,87,.06) !important; font-weight: 800; color: var(--color-primary); }
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.compare-table tbody tr:last-child .col-us { border-radius: 0 0 var(--radius) var(--radius); }
.compare-table .o { color: var(--color-emerald); font-weight: 900; }
.compare-table .x { color: #BC5B4D; font-weight: 900; }
.compare-cap { text-align: center; margin-top: 22px; font-size: 14px; color: var(--color-muted); }

/* =========================================================
   PRICE（大胆な料金ブロック）
   ========================================================= */
.price-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.price-main { background: linear-gradient(160deg, var(--color-primary), var(--color-primary-dark)); color: #fff; border-radius: var(--radius-lg); padding: 46px 40px; position: relative; overflow: hidden; }
.price-main::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 220px; height: 220px; background: rgba(232,155,60,.16); border-radius: 50%; }
.price-main .tag { display: inline-block; background: var(--color-accent); color: #fff; font-size: 13px; font-weight: 800; padding: 7px 16px; border-radius: 999px; }
.price-main .big { margin-top: 18px; font-weight: 900; line-height: 1; display: flex; align-items: baseline; gap: 6px; }
.price-main .big .num { font-size: clamp(56px, 9vw, 84px); color: var(--color-accent); }
.price-main .big .unit { font-size: 26px; }
.price-main .big .per { font-size: 16px; opacity: .85; font-weight: 700; }
.price-main .split-bar { margin-top: 26px; }
.price-main .split-bar .ad { background: rgba(255,255,255,.16); }
.price-detail { background: var(--color-bg-alt); border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.price-detail dl { display: grid; }
.price-detail .row { display: flex; justify-content: space-between; gap: 16px; padding: 18px 0; border-bottom: 1px dashed var(--color-line); }
.price-detail .row:last-child { border-bottom: none; }
.price-detail dt { font-weight: 800; color: var(--color-primary); flex: none; }
.price-detail dd { text-align: right; margin: 0; font-size: 15px; }
.price-detail dd .v { font-weight: 900; color: var(--color-primary); font-size: 18px; }
.price-detail dd .s { display: block; font-size: 12.5px; color: var(--color-muted); }
.price-foot { margin-top: 24px; text-align: center; font-size: 14px; font-weight: 700; color: var(--color-primary); }

/* =========================================================
   REASON（番号付き横並び行）
   ========================================================= */
.reason-rows { display: grid; gap: 22px; max-width: 980px; margin: 0 auto; }
.reason-row { display: grid; grid-template-columns: 96px 1fr; gap: 26px; align-items: center; background: var(--color-bg-alt); border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 30px 34px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.reason-row:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.reason-row .no { font-size: 58px; font-weight: 900; color: var(--color-accent); line-height: 1; font-feature-settings: "tnum"; }
.reason-row h3 { font-size: 22px; font-weight: 900; color: var(--color-primary); margin-bottom: 8px; }
.reason-row p { font-size: 15px; color: var(--color-muted); }

/* =========================================================
   MEDIA（診断的スプリット）
   ========================================================= */
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.media-card { background: var(--color-bg-alt); border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.media-card .mtitle { display: flex; align-items: center; gap: 14px; }
.media-card .mlogo { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-weight: 900; color: #fff; font-size: 22px; flex: none; }
.media-card.meta .mlogo { background: linear-gradient(135deg,#6A4BC4,#C13584,#E89B3C); }
.media-card.google .mlogo { background: var(--color-emerald); }
.media-card h3 { font-size: 21px; font-weight: 900; color: var(--color-primary); }
.media-tag { margin-top: 18px; display: inline-block; font-size: 14px; font-weight: 800; color: var(--color-emerald); background: rgba(14,107,87,.08); padding: 8px 14px; border-radius: 999px; }
.media-card p { margin-top: 16px; font-size: 15px; color: var(--color-muted); }
.media-foot { margin-top: 26px; background: var(--color-accent-soft); border: 1px solid #F0DCC0; border-radius: var(--radius); padding: 22px 28px; font-size: 15px; font-weight: 700; color: var(--color-primary); text-align: center; }

/* =========================================================
   CASE（実績・引用風）
   ========================================================= */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.case-card { background: var(--color-bg-alt); border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); position: relative; }
.case-card .media-badge { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .04em; padding: 6px 14px; border-radius: 999px; background: var(--color-accent-soft); color: var(--color-accent-dark); margin-bottom: 16px; }
.case-card .media-badge.google { background: rgba(14,107,87,.1); color: var(--color-emerald); }
.case-card h3 { font-size: 18px; font-weight: 900; color: var(--color-primary); line-height: 1.5; min-height: 3em; }
.case-metrics { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.case-metric { background: var(--color-bg); border-radius: var(--radius-sm); padding: 18px 12px; text-align: center; }
.case-metric .v { font-size: 30px; font-weight: 900; color: var(--color-primary); line-height: 1.05; font-feature-settings: "tnum"; }
.case-metric .v small { font-size: 14px; }
.case-metric .k { font-size: 12px; color: var(--color-muted); margin-top: 6px; }
.case-disclaimer { margin-top: 30px; text-align: center; font-size: 13px; color: var(--color-muted); }

/* =========================================================
   HONESTY
   ========================================================= */
.honesty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.honesty-card { border-radius: var(--radius-lg); padding: 38px; }
.honesty-card.can { background: rgba(255,255,255,.07); border: 1px solid var(--color-accent); }
.honesty-card.cannot { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.85); }
.honesty-card h3 { font-size: 20px; font-weight: 900; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.honesty-card.can h3 { color: var(--color-accent); }
.honesty-card ul { display: grid; gap: 14px; }
.honesty-card li { display: flex; gap: 12px; font-size: 15.5px; }
.honesty-card.can .mk { color: var(--color-accent); font-weight: 900; }
.honesty-card.cannot .mk { color: rgba(255,255,255,.45); font-weight: 900; }
.honesty-note { margin-top: 40px; text-align: center; font-size: clamp(17px,2.4vw,22px); font-weight: 900; line-height: 1.7; }
.honesty-note .accent { color: var(--color-accent); }

/* =========================================================
   FLOW（タイムライン）
   ========================================================= */
.flow-line { max-width: 820px; margin: 0 auto; position: relative; }
.flow-line::before { content: ""; position: absolute; left: 31px; top: 20px; bottom: 20px; width: 3px; background: linear-gradient(var(--color-emerald), var(--color-accent)); }
.flow-step { display: grid; grid-template-columns: 66px 1fr; gap: 28px; align-items: start; position: relative; padding-bottom: 36px; }
.flow-step:last-child { padding-bottom: 0; }
.flow-step .no { width: 66px; height: 66px; border-radius: 50%; background: var(--color-primary); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 26px; box-shadow: 0 8px 18px rgba(20,70,58,.25); position: relative; z-index: 2; }
.flow-step .body { background: var(--color-bg-alt); border: 1px solid var(--color-line); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-sm); }
.flow-step h3 { font-size: 19px; font-weight: 900; color: var(--color-primary); margin-bottom: 8px; }
.flow-step p { font-size: 15px; color: var(--color-muted); }
.flow-foot { margin-top: 48px; text-align: center; }
.flow-foot .pill { display: inline-block; background: var(--color-accent); color: #fff; font-weight: 900; font-size: clamp(16px,2.4vw,22px); padding: 16px 36px; border-radius: 999px; box-shadow: 0 12px 26px rgba(232,155,60,.4); }

/* =========================================================
   OPTION
   ========================================================= */
.option-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.option-card { border-radius: var(--radius-lg); padding: 40px; }
.option-card.main { background: var(--color-accent-soft); border: 1px solid #F0DCC0; }
.option-card.sub { background: var(--color-bg-alt); border: 1px solid var(--color-line); }
.option-card .label { font-size: 14px; font-weight: 800; color: var(--color-accent-dark); }
.option-card.sub .label { color: var(--color-emerald); }
.option-card .price { margin-top: 10px; font-weight: 900; color: var(--color-primary); }
.option-card .price .num { font-size: 50px; }
.option-card .price .unit { font-size: 18px; }
.option-card ul { margin-top: 24px; display: grid; gap: 13px; }
.option-card li { display: flex; gap: 12px; font-size: 15px; }
.option-card .mk { color: var(--color-accent-dark); font-weight: 900; }
.option-card.sub p { font-size: 15px; color: var(--color-muted); }
.tip-box { margin-top: 24px; background: var(--color-primary); color: #fff; border-radius: var(--radius); padding: 24px 26px; }
.tip-box .t { font-weight: 900; color: var(--color-accent); margin-bottom: 6px; }
.tip-box p { font-size: 14px; color: rgba(255,255,255,.85); }

/* =========================================================
   FIT（向いている / 向いていない）
   ========================================================= */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.fit-card { border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.fit-card.yes { background: var(--color-bg-alt); border: 2px solid var(--color-emerald); }
.fit-card.no { background: var(--color-bg-alt); border: 1px solid var(--color-line); }
.fit-card h3 { font-size: 21px; font-weight: 900; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.fit-card.yes h3 { color: var(--color-emerald); }
.fit-card.no h3 { color: var(--color-muted); }
.fit-card .badge { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 20px; flex: none; }
.fit-card.yes .badge { background: var(--color-emerald); }
.fit-card.no .badge { background: #B7C2BC; }
.fit-card ul { display: grid; gap: 14px; }
.fit-card li { display: flex; gap: 12px; font-size: 15.5px; }
.fit-card.yes .mk { color: var(--color-emerald); font-weight: 900; }
.fit-card.no .mk { color: #B7C2BC; font-weight: 900; }

/* =========================================================
   MID CTA band
   ========================================================= */
.cta-band { background: linear-gradient(120deg, var(--color-emerald), var(--color-primary)); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; background: rgba(232,155,60,.18); border-radius: 50%; }
.cta-band h2 { font-size: clamp(24px,4vw,38px); font-weight: 900; line-height: 1.45; position: relative; }
.cta-band p { margin-top: 18px; font-size: 17px; color: rgba(255,255,255,.88); position: relative; }
.cta-band .btn { margin-top: 34px; position: relative; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: var(--container-narrow); margin: 0 auto; display: grid; gap: 16px; }
.faq-item { background: var(--color-bg-alt); border: 1px solid var(--color-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; padding: 26px 60px 26px 30px; font-size: 16.5px; font-weight: 800; color: var(--color-primary); position: relative; line-height: 1.6; }
.faq-q::before { content: "Q"; color: var(--color-accent); font-weight: 900; margin-right: 14px; font-size: 18px; }
.faq-q::after { content: ""; position: absolute; right: 30px; top: 50%; width: 12px; height: 12px; border-right: 2.5px solid var(--color-emerald); border-bottom: 2.5px solid var(--color-emerald); transform: translateY(-65%) rotate(45deg); transition: transform .25s; }
.faq-item.open .faq-q::after { transform: translateY(-30%) rotate(225deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 30px 28px; font-size: 15px; color: var(--color-muted); }
.faq-a-inner::before { content: "A"; color: var(--color-emerald); font-weight: 900; margin-right: 14px; font-size: 18px; }

/* =========================================================
   COMPANY（運営企業情報）
   ========================================================= */
.company { background: var(--color-bg-alt); }
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.company-card { background: linear-gradient(160deg, var(--color-primary), var(--color-primary-dark)); color: #fff; border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); }
.company-card .clogo { display: inline-block; background: #fff; padding: 12px 18px; border-radius: 14px; }
.company-card .clogo img { height: 40px; width: auto; }
.company-card .cname { margin-top: 24px; font-size: 22px; font-weight: 900; }
.company-card .ctagline { margin-top: 12px; font-size: 15px; color: rgba(255,255,255,.85); }
.company-card .clinks { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.company-card .clinks a { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 700; }
.company-card .clinks a:hover { background: rgba(255,255,255,.22); }
.company-table { width: 100%; border-collapse: collapse; }
.company-table th, .company-table td { padding: 20px 4px; border-bottom: 1px solid var(--color-line); text-align: left; font-size: 15px; vertical-align: top; }
.company-table th { width: 34%; color: var(--color-primary); font-weight: 800; white-space: nowrap; }
.company-table a { color: var(--color-emerald); text-decoration: underline; }

/* =========================================================
   CONTACT / form
   ========================================================= */
.contact { background: radial-gradient(120% 120% at 15% 0%, var(--color-emerald) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(28px,4.4vw,42px); font-weight: 900; line-height: 1.4; }
.contact-info p { margin-top: 22px; font-size: 16px; color: rgba(255,255,255,.85); }
.contact-merits { margin-top: 30px; display: grid; gap: 14px; }
.contact-merits li { display: flex; gap: 12px; font-size: 15.5px; font-weight: 700; }
.contact-merits .check { color: var(--color-accent); font-weight: 900; }
.contact-mail { margin-top: 32px; font-size: 15px; }
.contact-mail a { color: var(--color-accent); font-weight: 700; text-decoration: underline; }

.form-card { background: var(--color-bg-alt); color: var(--color-text); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-lg); }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 14px; font-weight: 800; color: var(--color-primary); margin-bottom: 8px; }
.req { color: #fff; background: var(--color-accent); font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }
.opt { color: var(--color-muted); background: var(--color-line); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }
.form-field input, .form-field textarea { width: 100%; font-family: inherit; font-size: 16px; padding: 14px 16px; border: 1.5px solid var(--color-line); border-radius: var(--radius-sm); background: #fff; color: var(--color-text); transition: border-color .2s, box-shadow .2s; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--color-emerald); box-shadow: 0 0 0 3px rgba(14,107,87,.12); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-error { color: #C0392B; font-size: 13px; margin-top: 6px; font-weight: 700; }
.form-alert { background: #FDECEA; border: 1px solid #F5C6C0; color: #B03A2E; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 22px; }
.form-privacy { font-size: 13px; color: var(--color-muted); margin: 18px 0; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--color-primary-dark); color: rgba(255,255,255,.78); padding: 60px 0 30px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-brand .flogo { display: inline-block; background: #fff; padding: 9px 14px; border-radius: 12px; }
.footer-brand .flogo img { height: 38px; width: auto; }
.footer-brand p { margin-top: 18px; font-size: 13.5px; max-width: 360px; line-height: 1.8; }
.footer-nav { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-nav h4 { font-size: 13px; color: var(--color-accent); margin-bottom: 14px; letter-spacing: .08em; }
.footer-nav ul { display: grid; gap: 10px; }
.footer-nav a { font-size: 14px; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; }

/* =========================================================
   Floating CTA (mobile)
   ========================================================= */
.float-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 99; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--color-line); padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); display: none; box-shadow: 0 -6px 20px rgba(12,44,36,.12); }
.float-cta a { display: flex; }

/* =========================================================
   Thanks page
   ========================================================= */
.thanks { min-height: 70vh; display: grid; place-items: center; background: var(--color-bg); padding: 80px 24px; }
.thanks-card { background: #fff; border-radius: var(--radius-lg); padding: 56px 48px; text-align: center; max-width: 640px; box-shadow: var(--shadow); }
.thanks-icon { width: 84px; height: 84px; margin: 0 auto 28px; background: var(--color-emerald); border-radius: 50%; display: grid; place-items: center; }
.thanks-icon svg { width: 42px; height: 42px; }
.thanks-card h1 { font-size: clamp(24px,4vw,32px); font-weight: 900; color: var(--color-primary); }
.thanks-card p { margin-top: 20px; font-size: 16px; color: var(--color-muted); }
.thanks-card .btn { margin-top: 32px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .price-hero, .about-grid, .contact-grid, .honesty-grid, .media-grid, .option-wrap, .fit-grid, .company-grid, .promise-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 860px) {
  .global-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; padding: 8px; }
  .nav-toggle span { width: 24px; height: 2px; background: var(--color-primary); border-radius: 2px; transition: .25s; }
  .global-nav.open { display: block; position: absolute; top: 74px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--color-line); padding: 16px 24px; box-shadow: var(--shadow); }
  .global-nav.open ul { flex-direction: column; align-items: stretch; gap: 0; }
  .global-nav.open li { border-bottom: 1px solid var(--color-line); }
  .global-nav.open a { display: block; padding: 14px 4px; }
  .float-cta { display: block; }
  body { padding-bottom: 76px; }
}
@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .statband-grid { grid-template-columns: 1fr 1fr; }
  .statband-grid li:nth-child(2) { border-right: none; }
  .statband-grid li:nth-child(1), .statband-grid li:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .case-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .hero { padding: 70px 0 110px; }
  .reason-row { grid-template-columns: 64px 1fr; gap: 18px; padding: 24px; }
  .reason-row .no { font-size: 42px; }
  .company-card { padding: 32px; }

  /* 他社比較：スマホは横スクロール不要の縦積みカード型に */
  .compare-wrap { overflow: visible; }
  .compare-table { min-width: 0; width: 100%; display: block; }
  .compare-table thead { display: none; }
  .compare-table tbody { display: block; }
  .compare-table tbody tr {
    display: block; background: var(--color-bg-alt);
    border: 1px solid var(--color-line); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); margin-bottom: 16px; padding: 6px 18px 14px;
  }
  .compare-table tbody th {
    display: block; background: transparent; border: none;
    padding: 14px 0 10px; font-size: 16px; color: var(--color-primary);
    border-bottom: 2px solid var(--color-line); white-space: normal;
  }
  .compare-table tbody td {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    text-align: right; padding: 12px 0; border-bottom: 1px dashed var(--color-line);
  }
  .compare-table tbody td:last-child { border-bottom: none; }
  .compare-table tbody td::before {
    content: attr(data-label); flex: none; text-align: left;
    font-size: 12.5px; font-weight: 800; color: var(--color-muted);
  }
  .compare-table tbody td.col-us {
    background: rgba(14,107,87,.07); border-radius: var(--radius-sm);
    padding: 12px 14px; margin: 8px 0; border-bottom: none;
  }
  .compare-table tbody td.col-us::before { color: var(--color-emerald); }
}
@media (max-width: 420px) {
  .statband-grid { grid-template-columns: 1fr; }
  .statband-grid li { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .statband-grid li:last-child { border-bottom: none; }
}
