/* ============================================================
   Fripos ランディング 共通スタイル
   - 配色・フォントは POS 本体（app.css）と同じトークンで統一。
   - この静的サイトは POS とは完全に独立（DELL には一切関与しない）。
   - モバイルファースト：~380px を基準に組み、PC 幅は @media で後追い。
   ============================================================ */

/* ===== フォント（セルフホスト・このフォルダ内で自己完結） ===== */
@font-face { font-family: 'Russo One'; font-style: normal; font-weight: 400;
             src: url('RussoOne.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 100 900;
             src: url('fonts/montserrat-latin.woff2') format('woff2');
             unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-display: swap; }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 100 900;
             src: url('fonts/montserrat-latin-ext.woff2') format('woff2');
             unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; font-display: swap; }
@font-face { font-family: 'Kanit'; font-style: normal; font-weight: 400;
             src: url('fonts/kanit-thai-400.woff2') format('woff2');
             unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC; font-display: swap; }
@font-face { font-family: 'Kanit'; font-style: normal; font-weight: 700;
             src: url('fonts/kanit-thai-700.woff2') format('woff2');
             unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC; font-display: swap; }

:root {
  /* 配色（POS 本体と統一） */
  --gold:       #e8b800;
  --gold-soft:  #ffd54f;
  --teal:       #4db6ac;
  --teal-deep:  #2f8a80;
  --navy:       #1a2a4a;
  --navy-deep:  #16213e;
  --red:        #e94560;
  --ink:        #1c2230;   /* 明るい面の本文色 */
  --muted:      #5b6472;   /* 補助テキスト */
  --line:       #ece7dd;   /* 罫線（暖色グレー） */
  --paper:      #ffffff;
  --paper-2:    #fdf6ea;   /* セクション交互背景（やわらかクリーム） */

  --font-main:  'Montserrat', 'Kanit', sans-serif;
  --font-disp:  'Russo One', 'Montserrat', 'Kanit', sans-serif;

  --maxw: 1080px;
  --radius: 16px;
}

/* ===== リセット ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* タイ語が混ざる行は Kanit を優先（英数字は Montserrat のまま） */
.th { font-family: 'Kanit', 'Montserrat', sans-serif; font-weight: 400; }

/* ===== レイアウト土台 ===== */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
section { padding: 56px 0; }
.eyebrow {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-deep); font-weight: 700; margin-bottom: 12px;
}

/* ===== ボタン ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 26px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 17px; cursor: pointer; white-space: nowrap;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gold); color: #2a2300;
  box-shadow: 0 8px 22px rgba(232,184,0,.35);
}
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-teal { background: var(--teal); color: #04322d; box-shadow: 0 8px 22px rgba(77,182,172,.3); }
.btn-teal:hover { background: #5fc8be; }
/* 意図的に無効化したCTA（公開はするが download/利用開始はまだできない） */
.btn-disabled { background: #5b6472; color: #cfd6e2; cursor: default; box-shadow: none; }
.btn-disabled:active { transform: none; }
.btn-sub { font-size: 13px; opacity: .85; margin-left: 2px; font-weight: 600; }

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(26,42,74,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { font-family: var(--font-disp); color: var(--gold); font-size: 24px; letter-spacing: .5px; }
.nav { display: flex; align-items: center; gap: 18px; }
.nav a { color: #dfe5f0; font-weight: 600; font-size: 15px; }
.nav a:hover { color: #fff; }
.nav .btn { padding: 10px 18px; font-size: 15px; }
.nav-links { display: none; gap: 18px; }

/* ============================================================
   ヒーロー（価格は出さない＝QR着地で「無料POS」を1秒で）
   ============================================================ */
.hero {
  background:
    radial-gradient(720px 440px at 50% 40%, rgba(232,184,0,.16), transparent 66%),
    radial-gradient(1200px 500px at 70% -10%, rgba(77,182,172,.20), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; text-align: center; padding: 64px 0 72px;
  position: relative; overflow: hidden;
}
.hero .wordmark {
  font-family: var(--font-disp); color: var(--gold);
  font-size: clamp(44px, 14vw, 84px); line-height: .95; letter-spacing: 1px;
  text-shadow: 0 6px 30px rgba(0,0,0,.35);
}

/* ===== レシート風ヒーロー（Friposの“現物”をそのまま顔に） ===== */
.hero .receipt-hero {
  width: 100%; max-width: 330px; margin: 22px auto 0;
  filter: drop-shadow(0 22px 38px rgba(0,0,0,.5));
  transform: rotate(-1deg);
}
.hero .rc-paper {
  background: #fffdf6; color: #20242e;
  font-family: 'Courier New', 'Kanit', monospace;
  padding: 30px 24px; text-align: center; border-radius: 3px;
}
.hero .rc-logo {
  font-family: 'Courier New', 'Kanit', monospace; font-weight: 700;
  letter-spacing: 3px; font-size: 17px; color: #2c303a;
}
.hero .rc-sub { font-size: 11.5px; color: #6a6557; margin-top: 5px; letter-spacing: .4px; }
.hero .rc-rule { border-top: 2px dashed #c9c2ae; margin: 13px 0; }
.hero .rc-tagline {
  font-family: 'Courier New', 'Kanit', monospace; font-weight: 700;
  font-size: 18px; letter-spacing: .3px; color: #20242e; margin: 0;
}
.hero .rc-cols { display: flex; justify-content: space-between; font-size: 10.5px; color: #9a9482; letter-spacing: .5px; margin-bottom: 8px; }
.hero .rc-cols-r { display: inline-flex; gap: 14px; }
.hero .rc-cols-r .rc-h-was { width: 54px; text-align: right; }
.hero .rc-cols-r .rc-h-now { width: 34px; text-align: right; }
.hero .rc-items { list-style: none; display: grid; gap: 9px; text-align: left; padding: 0; }
.hero .rc-items li { display: flex; align-items: baseline; font-size: 12.5px; color: #2c303a; }
.hero .rc-items .lbl { flex: 1; }
.hero .rc-items .was-amt { width: 54px; text-align: right; color: #b0563f; font-weight: 600; }
.hero .rc-items .wv { position: relative; display: inline-block; }
.hero .rc-items .amt { width: 34px; text-align: right; font-weight: 700; }
.hero .rc-total {
  display: flex; justify-content: space-between; align-items: baseline; color: #20242e;
}
.hero .rc-total span:first-child { font-weight: 700; font-size: 16px; letter-spacing: 1px; }
.hero .rc-total-amt { font-family: var(--font-disp); font-size: 34px; color: #b07b00; }
.hero .rc-stamp {
  margin-top: 16px; display: inline-block; font-weight: 800; letter-spacing: 2px;
  font-size: 17px; color: #c0392b; border: 2.5px solid #c0392b; border-radius: 7px;
  padding: 4px 16px; transform: rotate(-4deg);
}
.hero .rc-saved { margin-top: 7px; text-align: right; font-size: 13px; color: #7a3f2f; }
.hero .rc-saved strong { color: #c0392b; font-size: 15px; }
.hero .rc-thanks { margin-top: 16px; font-size: 12.5px; color: #6a6557; }
.hero .rc-note { margin-top: 12px; font-size: 9.5px; color: #9a9482; line-height: 1.4; }
.hero .rc-foot { margin-top: 8px; font-size: 11.5px; color: #8a8472; }
.hero .tagline {
  font-weight: 800; font-size: clamp(26px, 7.5vw, 44px); line-height: 1.08;
  margin: 12px 0 0;
}
.hero .tagline .free2 { color: var(--teal); }
.hero .sub {
  margin: 18px auto 0; max-width: 520px; font-size: clamp(16px, 4.4vw, 20px);
  color: #cdd6e6; font-weight: 400;
}
.hero .cta-row {
  margin-top: 32px; display: flex; flex-direction: column; gap: 14px;
  align-items: center;
}
.hero .cta-row .btn { width: 100%; max-width: 320px; }
.hero .reassure {
  margin-top: 22px; font-size: 14px; color: #9fb0c9;
}
/* レシート風ミニ・モック（現物導線の暗示） */
.receipt-hint {
  margin: 40px auto 0; width: 220px; background: #fffdf5; color: #222;
  border-radius: 10px; padding: 18px 16px 16px; text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.35); transform: rotate(-2deg);
  border: 1px dashed #d8c98a;
}
.receipt-hint .r-line { font-size: 13px; color: #444; }
.receipt-hint .r-brand { font-weight: 700; }
.receipt-hint .r-tag { font-size: 11px; color: #666; margin-top: 2px; }
.receipt-hint .r-qr {
  width: 92px; height: 92px; margin: 12px auto 6px; border-radius: 6px;
  background:
    repeating-conic-gradient(#1a2a4a 0 25%, #fff 0 50%) 0 0 / 14px 14px;
  outline: 6px solid #fff; box-shadow: inset 0 0 0 2px #1a2a4a;
}
.receipt-hint .r-dom { font-size: 12px; color: #1a2a4a; font-weight: 700; }

/* ============================================================
   価値の提示
   ============================================================ */
.value { background: #fffaf0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.section-head h2 { font-size: clamp(26px, 6vw, 38px); line-height: 1.2; }
.section-head p { color: var(--muted); margin-top: 10px; font-size: 16px; }

.cards { display: grid; grid-template-columns: 1fr; gap: 18px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: 0 6px 20px rgba(20,30,60,.05);
}
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(77,182,172,.14); color: var(--teal-deep); margin-bottom: 16px;
}
.card .ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 20px; line-height: 1.3; }
.card h3 .en { display: block; font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.card p { color: var(--muted); margin-top: 10px; font-size: 15px; }

/* ============================================================
   料金（ここで初めて課金を見せる）
   ============================================================ */
.pricing { background: var(--paper-2); }
.price-tagline {
  text-align: center; color: var(--teal-deep); font-weight: 700;
  font-size: 18px; margin-bottom: 28px;
}
.plans { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 760px; margin: 0 auto; }
.plan {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; position: relative;
}
.plan.free { border: 2px solid var(--gold); box-shadow: 0 14px 36px rgba(232,184,0,.18); }
.plan .badge {
  position: absolute; top: -13px; left: 24px; background: var(--gold); color: #2a2300;
  font-weight: 700; font-size: 12px; letter-spacing: 1px; padding: 6px 14px; border-radius: 999px;
}
.plan .tier { font-weight: 700; font-size: 17px; color: var(--ink); }
.plan .tier .en { color: var(--muted); font-weight: 600; font-size: 13px; display: block; margin-top: 3px; }
.hero .bt { font-family: 'Kanit', 'Montserrat', sans-serif; font-weight: 700; }
.price-tagline .pt-en { display: inline-block; font-size: 14px; opacity: .82; }
.section-head h2, .section-head p, .card h3, .card p, .why-free strong { text-wrap: balance; }
.plan .amount { margin: 12px 0 4px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.plan .amount .big {
  font-family: var(--font-disp); font-size: 44px; line-height: 1; color: var(--navy);
}
.plan.free .amount .big { color: var(--teal-deep); }
.plan .amount .unit { color: var(--muted); font-size: 15px; font-weight: 600; }
.plan .note { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.plan .promo { display: inline-block; font-size: 12px; font-weight: 700; color: #2a2300;
               background: var(--gold-soft); padding: 3px 11px; border-radius: 999px; margin: 2px 0 12px; }
.plan ul { list-style: none; display: grid; gap: 10px; margin-top: 8px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.plan li svg { flex: none; width: 20px; height: 20px; color: var(--teal); margin-top: 2px; }
.plan .addons { list-style: none; display: grid; gap: 0; margin: 6px 0 4px; }
.plan .addons li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  border-bottom: 1px dashed var(--line); padding: 11px 0; }
.plan .addons li:last-child { border-bottom: none; }
.plan .addons .ad-name { font-size: 14.5px; color: var(--ink); }
.plan .addons .ad-price { font-family: var(--font-disp); font-size: 27px; color: #b07b00; white-space: nowrap; }
.plan .addons .ad-per { font-family: var(--font-main); font-size: 13px; color: var(--muted); font-weight: 600; }

.why-free {
  max-width: 760px; margin: 24px auto 0; text-align: center;
  background: rgba(77,182,172,.10); border: 1px solid rgba(77,182,172,.25);
  border-radius: 14px; padding: 18px 20px; color: var(--ink);
}
.why-free .en { display: block; color: var(--muted); font-size: 13px; margin-top: 6px; }

/* ============================================================
   CTA ブロック
   ============================================================ */
.cta {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; text-align: center;
}
.cta h2 { font-size: clamp(26px, 7vw, 40px); }
.cta p { color: #cdd6e6; margin-top: 10px; }
.cta .btn { margin-top: 26px; }
.cta .soon { margin-top: 14px; font-size: 13px; color: #8aa0bf; }

/* ===== ダウンロード解禁カウントダウン ===== */
.cta .eyebrow { color: #7fe0d3; }
.dl-lead { color: #cdd6e6; margin-top: 8px; font-size: 16px; }
.countdown { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 26px 0 6px; }
.cd-cell { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
           border-radius: 14px; padding: 12px 8px; min-width: 70px; }
.cd-num { display: block; font-family: var(--font-disp); font-size: clamp(28px, 8vw, 44px);
          line-height: 1; color: var(--gold); font-variant-numeric: tabular-nums; }
.cd-lbl { display: block; margin-top: 8px; font-size: 11px; color: #9fb0c9; letter-spacing: .3px; }
.cd-open { font-size: 22px; font-weight: 800; color: var(--teal); margin: 18px 0; }
.dl-wrap { margin-top: 16px; }
/* ボタンは存在するが押せない（解禁前） */
.btn-locked { background: #5b6472; color: #d4dae4; cursor: not-allowed; box-shadow: none; gap: 10px; }
.btn-locked:active { transform: none; }
.btn-locked .lock { width: 18px; height: 18px; }

/* ============================================================
   フッター
   ============================================================ */
.site-footer {
  background: var(--navy-deep); color: #aebbd2; text-align: center;
  padding: 30px 0; font-size: 14px;
}
.site-footer .brand-sm { font-family: var(--font-disp); color: var(--gold); font-size: 18px; }
.site-footer .dom { color: #dfe5f0; font-weight: 700; margin-top: 4px; }
.site-footer .fine { margin-top: 8px; font-size: 12px; color: #7787a3; }

/* ============================================================
   PC 幅（モバイルの後追い）
   ============================================================ */
@media (min-width: 720px) {
  section { padding: 76px 0; }
  .nav-links { display: flex; }
  .hero .cta-row { flex-direction: row; justify-content: center; }
  .hero .cta-row .btn { width: auto; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ============================================================
   ★確定：イメージカラー＝黄（ヒーロー＋ヘッダー）
   （ネイビーに戻すなら、この下のブロックを丸ごと削除するだけ）
   ============================================================ */
.hero { background: linear-gradient(165deg, #ffd23f 0%, #f5b400 100%); color: var(--navy-deep); }
.hero .wordmark { color: var(--navy-deep); text-shadow: 0 4px 16px rgba(120,85,0,.22); }
.hero .tagline { color: var(--navy-deep); }
.hero .tagline .free2 { color: #0f6f63; }
.hero .receipt-hero { filter: drop-shadow(0 18px 30px rgba(120,85,0,.42)); }
.hero .rc-paper { background: #ffffff; border: 1px solid rgba(0,0,0,.06); }
.hero .cta-row .btn-primary { background: var(--navy-deep); color: #fff; box-shadow: 0 8px 22px rgba(20,25,45,.3); }
.hero .cta-row .btn-primary:hover { background: var(--navy); }
.hero .cta-row .btn-ghost { color: var(--navy-deep); border-color: rgba(26,42,74,.45); }
.hero .cta-row .btn-ghost:hover { background: rgba(26,42,74,.08); }

/* ヘッダーも黄に合わせて最上部のネイビー衝突を解消 */
.site-header { background: rgba(245,180,0,.95); border-bottom: 1px solid rgba(0,0,0,.10); }
.site-header .brand { color: var(--navy-deep); }
.site-header .nav a { color: var(--navy-deep); }
.site-header .nav a:hover { color: #000; }
.site-header .nav .btn-primary { background: var(--navy-deep); color: #fff; box-shadow: none; }
.site-header .nav .btn-primary:hover { background: var(--navy); }

/* ============================================================
   ★ギミック：レシートが“฿0になる”演出を20秒ごとにループ
   （アクションは各サイクルの頭2〜3秒、残りは静止して読める）
   （prefers-reduced-motion では animation を止めて最終状態で固定）
   ============================================================ */
.hero .rc-items .wv::after {
  content: ""; position: absolute; left: -1px; right: -1px; top: 52%; height: 2px;
  background: #d23f1f; transform-origin: left; transform: scaleX(1);
  animation: fp-strike 20s ease infinite both;
}
.hero .rc-items li:nth-child(1) .wv::after { animation-delay: .55s; }
.hero .rc-items li:nth-child(2) .wv::after { animation-delay: 1.0s; }
.hero .rc-items .amt { animation: fp-pop 20s ease infinite both; }
.hero .rc-items li:nth-child(1) .amt { animation-delay: .9s; }
.hero .rc-items li:nth-child(2) .amt { animation-delay: 1.35s; }
.hero .rc-total-amt { animation: fp-pop 20s ease infinite both; animation-delay: 1.6s; }
.hero .rc-stamp { animation: fp-stamp 20s ease infinite both; animation-delay: 1.9s; }
@keyframes fp-strike {
  0% { transform: scaleX(0); }
  3% { transform: scaleX(1); }
  100% { transform: scaleX(1); }
}
@keyframes fp-pop {
  0% { opacity: 0; transform: scale(.5); }
  1.5% { opacity: 1; transform: scale(1.2); }
  2.6% { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes fp-stamp {
  0% { opacity: 0; transform: rotate(-4deg) scale(2); }
  1.6% { opacity: 1; }
  3% { opacity: 1; transform: rotate(-4deg) scale(1); }
  100% { opacity: 1; transform: rotate(-4deg) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero .rc-items .wv::after { animation: none; transform: scaleX(1); }
  .hero .rc-items .amt,
  .hero .rc-total-amt,
  .hero .rc-stamp { animation: none; opacity: 1; }
}

/* ============================================================
   ★ヒーロー・シネマティック移植（v6）：値段→✖→飛ぶ→緑0→FRIPOS落下→2秒ステイ（9.2sループ）
   ============================================================ */
.hero .cs-brand { text-align: center; margin-bottom: 20px; animation: c-drop 9.2s linear infinite both; }
.hero .cs-bw { font-family: var(--font-disp); font-size: clamp(46px,15vw,58px); letter-spacing: -1px; line-height: .85; color: var(--navy-deep); }
.hero .cs-bt { font-family: 'Kanit','Montserrat',sans-serif; font-weight: 800; font-size: clamp(20px,6.5vw,24px); letter-spacing: -.2px; line-height: 1.05; color: var(--navy-deep); margin: 3px 0 0; }
.hero .cs-bt span { color: #0f6f63; }
.hero .cs-rc { max-width: 330px; margin: 0 auto; background: #fff; border-radius: 4px; padding: 20px 18px; font-family: 'Courier New','Kanit',monospace; color: #20242e; box-shadow: 0 16px 30px rgba(120,85,0,.4); animation: c-jolt 9.2s ease infinite both; }
.hero .cs-h { font-family: var(--font-disp); text-align: center; letter-spacing: 3px; font-size: 17px; color: #2c303a; }
.hero .cs-sub { text-align: center; font-size: 11.5px; color: #6a6557; margin-top: 5px; }
.hero .cs-rule { border-top: 2px dashed #c9c2ae; margin: 11px 0; }
.hero .cs-area { position: relative; }
.hero .cs-row { display: flex; align-items: baseline; font-size: 13.5px; margin: 13px 0; }
.hero .cs-lbl { flex: 1; }
.hero .cs-slot { position: relative; width: 66px; height: 1.1em; }
.hero .cs-old { position: absolute; right: 0; top: -3px; color: #b0563f; font-weight: 700; font-size: 20px; }
.hero .cs-old.o1 { animation: c-old1 9.2s ease infinite both; }
.hero .cs-old.o2 { animation: c-old2 9.2s ease infinite both; }
.hero .cs-zero { position: absolute; right: 0; top: -1px; color: #15a34a; font-weight: 700; font-size: 16px; font-family: var(--font-disp); transform-origin: right center; opacity: 0; }
.hero .cs-zero.z1 { animation: c-z1 9.2s cubic-bezier(.2,.9,.3,1) infinite both; }
.hero .cs-zero.z2 { animation: c-z2 9.2s cubic-bezier(.2,.9,.3,1) infinite both; }
.hero .cs-ov { position: absolute; left: 0; right: 0; top: 2px; margin: 0 auto; width: -moz-fit-content; width: fit-content; max-width: 92%; text-align: center; font-weight: 700; font-size: 26px; color: #d23f1f; background: #fff; padding: 5px 16px; border-radius: 10px; box-shadow: 0 5px 16px rgba(0,0,0,.2); opacity: 0; animation: c-ov 9.2s ease infinite both; }
.hero .cs-x { position: absolute; left: 0; right: 0; top: 0; bottom: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.hero .cs-xb { position: absolute; width: 84%; height: 28px; border-radius: 4px; background: #d6260b; opacity: 0; box-shadow: 0 6px 20px rgba(214,38,11,.6); }
.hero .cs-xb.b1 { animation: c-x1 9.2s ease infinite both; }
.hero .cs-xb.b2 { animation: c-x2 9.2s ease infinite both; }
.hero .cs-total { display: flex; justify-content: space-between; align-items: center; }
.hero .cs-total b { font-size: 14px; letter-spacing: 1px; }
.hero .cs-tamt { font-family: var(--font-disp); font-size: 48px; line-height: 1; color: #15a34a; opacity: 0; transform-origin: right center; animation: c-tot 9.2s cubic-bezier(.2,.9,.3,1) infinite both; }
.hero .cs-note { text-align: center; font-size: 10px; color: #9a9482; margin-top: 12px; line-height: 1.4; }
.hero .cs-foot { text-align: center; font-size: 11.5px; color: #8a8472; margin-top: 8px; }
@keyframes c-old1{0%{opacity:0;transform:scale(.6)}3%{opacity:1;transform:scale(1)}40%{opacity:1;transform:translate(0,0) scale(1) rotate(0)}44%{opacity:1;transform:translate(10px,-8px) scale(.6) rotate(30deg)}48%{opacity:0;transform:translate(100px,-130px) scale(.1) rotate(340deg)}100%{opacity:0;transform:translate(100px,-130px) scale(.1) rotate(340deg)}}
@keyframes c-old2{0%,5%{opacity:0;transform:scale(.6)}9%{opacity:1;transform:scale(1)}41%{opacity:1;transform:translate(0,0) scale(1) rotate(0)}45%{opacity:1;transform:translate(10px,8px) scale(.6) rotate(-28deg)}49%{opacity:0;transform:translate(95px,130px) scale(.1) rotate(-320deg)}100%{opacity:0;transform:translate(95px,130px) scale(.1) rotate(-320deg)}}
@keyframes c-ov{0%,12%{opacity:0;transform:scale(1.5)}18%{opacity:1;transform:scale(1)}40%{opacity:1;transform:scale(1)}44%{opacity:1;transform:scale(.6) rotate(8deg)}48%{opacity:0;transform:translate(40px,-120px) scale(.1) rotate(60deg)}100%{opacity:0;transform:translate(40px,-120px) scale(.1) rotate(60deg)}}
@keyframes c-x1{0%,31%{opacity:0;transform:rotate(45deg) scale(0)}32%{opacity:1;transform:rotate(45deg) scale(1.35)}34%{opacity:1;transform:rotate(45deg) scale(1)}40%{opacity:1;transform:rotate(45deg) scale(1)}47%{opacity:0;transform:rotate(72deg) scale(1) translate(55px,-65px)}100%{opacity:0;transform:rotate(72deg) scale(1) translate(55px,-65px)}}
@keyframes c-x2{0%,31%{opacity:0;transform:rotate(-45deg) scale(0)}32%{opacity:1;transform:rotate(-45deg) scale(1.35)}34%{opacity:1;transform:rotate(-45deg) scale(1)}40%{opacity:1;transform:rotate(-45deg) scale(1)}47%{opacity:0;transform:rotate(-18deg) scale(1) translate(55px,65px)}100%{opacity:0;transform:rotate(-18deg) scale(1) translate(55px,65px)}}
@keyframes c-z1{0%,44%{opacity:0;transform:scale(.2)}49%{opacity:1;transform:scale(4)}56%{opacity:1;transform:scale(1)}100%{opacity:1;transform:scale(1)}}
@keyframes c-z2{0%,53%{opacity:0;transform:scale(.2)}58%{opacity:1;transform:scale(4)}65%{opacity:1;transform:scale(1)}100%{opacity:1;transform:scale(1)}}
@keyframes c-tot{0%,61%{opacity:0;transform:scale(3.6) translateY(-30px)}63%{opacity:1;transform:scale(3.6) translateY(-30px);animation-timing-function:ease-in}68%{opacity:1;transform:scale(1) translateY(0)}70%{transform:scale(1.08) translateY(0)}72%{transform:scale(1) translateY(0)}100%{opacity:1;transform:scale(1) translateY(0)}}
@keyframes c-drop{0%,22%{opacity:0;transform:translateY(-340px) scaleY(1);animation-timing-function:ease-in}23%{opacity:1;transform:translateY(-300px) scaleY(1);animation-timing-function:ease-in}32%{opacity:1;transform:translateY(0) scaleY(1);animation-timing-function:ease-out}37%{transform:translateY(-16px) scaleY(1)}42%{transform:translateY(0) scaleY(.86)}47%{transform:translateY(0) scaleY(1.05)}51%{transform:translateY(0) scaleY(1)}67%{transform:translateY(0) scaleY(1)}68.5%{transform:translateY(12px) scaleY(.95)}71%{transform:translateY(-6px) scaleY(1)}73.5%{transform:translateY(4px) scaleY(1)}76%{transform:translateY(-2px) scaleY(1)}78%{transform:translateY(0) scaleY(1)}100%{transform:translateY(0) scaleY(1);opacity:1}}
@keyframes c-jolt{0%,31%{transform:translateY(0)}33%{transform:translateY(9px)}36%{transform:translateY(-5px)}39%{transform:translateY(4px)}42%{transform:translateY(-2px)}44%{transform:translateY(1px)}67%{transform:translateY(0)}68.5%{transform:translateY(14px)}71%{transform:translateY(-7px)}73.5%{transform:translateY(5px)}76%{transform:translateY(-2px)}78%{transform:translateY(0)}100%{transform:translateY(0)}}
@media (prefers-reduced-motion: reduce) {
  .hero .cs-brand, .hero .cs-rc, .hero .cs-old, .hero .cs-zero, .hero .cs-ov, .hero .cs-xb, .hero .cs-tamt { animation: none; }
  .hero .cs-old, .hero .cs-ov, .hero .cs-xb { opacity: 0; }
  .hero .cs-zero, .hero .cs-tamt { opacity: 1; transform: scale(1); }
}

/* ============================================================
   ★ダウンロード/カウントダウン欄を黄に（ムードの断層解消・期待のピークを温かく）
   （ネイビーに戻すなら、この下のブロックを丸ごと削除するだけ）
   ============================================================ */
.cta { background: linear-gradient(165deg, #ffd23f 0%, #f5b400 100%); color: var(--navy-deep); }
.cta .eyebrow { color: var(--navy-deep); }
.cta h2 { color: var(--navy-deep); }
.cta p, .cta .dl-lead { color: #4a3c0a; }
.cta .soon { color: #6a5510; }
.cta .cd-cell { background: rgba(26,42,74,.07); border-color: rgba(26,42,74,.2); }
.cta .cd-num { color: var(--navy-deep); }
.cta .cd-lbl { color: #6a5510; }
.cta .cd-open { color: var(--teal-deep); }
.cta .btn-locked { background: rgba(26,42,74,.16); color: #4a3c0a; }

/* ============================================================
   ★フッターを温かいダーク（エスプレッソ）に（ピーク・エンドを暖色で締める）
   ============================================================ */
.site-footer { background: #2a201a; color: #cdc1ac; }
.site-footer .brand-sm { color: var(--gold); }
.site-footer .dom { color: #ece2cd; }
.site-footer .fine { color: #8a7c66; }

/* ============================================================
   ★「何も要らない」対比ブロック（静かに：競合は退かせ、Fripos側だけティール）
   ＋ヒーローのチラ見せ一行
   ============================================================ */
.hero-teaser { text-align: center; font-size: 14px; font-weight: 600; color: var(--navy-deep); opacity: .82; margin: 6px 0 2px; }

.nothing { background: #fffaf0; }
.nb-card { max-width: 600px; margin: 0 auto; background: #fff; border: 1px solid #ece7dd; border-radius: var(--radius); padding: 26px 22px; box-shadow: 0 10px 30px rgba(120,85,0,.06); }
.nb-card .eyebrow { color: #b07b00; }
.nb-h { font-size: clamp(22px, 5.5vw, 28px); line-height: 1.2; margin-top: 4px; color: var(--ink); text-wrap: balance; }
.nb-sub { color: var(--muted); margin-top: 6px; font-size: 15px; }
.nb-list { margin-top: 18px; }
.nb-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 11px 0; border-top: 1px solid #efe7d7; }
.nb-row:last-child { border-bottom: 1px solid #efe7d7; }
.nb-old { font-size: 15px; color: #a39b8a; text-decoration: line-through; }
.nb-new { display: inline-flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 700; color: var(--teal-deep); white-space: nowrap; }
.nb-new svg { flex: none; width: 16px; height: 16px; }
.nb-punch { margin-top: 18px; display: flex; align-items: center; gap: 12px; background: #2a201a; border-radius: 12px; padding: 14px 16px; }
.nb-punch .pl { flex: none; width: 22px; height: 22px; color: #ffd23f; }
.nb-punch .pt { font-size: 16px; font-weight: 700; color: #fff7e8; line-height: 1.3; }
.nb-punch .pe { font-size: 12.5px; color: #cdc1ac; margin-top: 2px; }

/* ============================================================
   ★ デシジョンツリー Pricing（料金セクション刷新）
   ============================================================ */
.dtree { max-width: 600px; margin: 24px auto 0; }

.dt-root { background: #fff; border: 2px solid #4db6ac; border-radius: 16px; padding: 20px; }
.dt-root-top { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.dt-dot { width: 8px; height: 8px; border-radius: 50%; background: #4db6ac; flex: none; }
.dt-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: #2f8a80; }
.dt-feats { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.dt-feats li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #2a201a; }
.dt-feats li svg { flex: none; width: 16px; height: 16px; color: #4db6ac; }
.dt-free-badge { display: inline-flex; align-items: center; gap: 10px; background: #e1f5ee; border-radius: 10px; padding: 8px 16px; }
.dt-free-n { font-size: 32px; font-weight: 800; color: #085041; line-height: 1; font-family: var(--font-disp); }
.dt-free-s { font-size: 12px; color: #0f6e56; font-weight: 600; line-height: 1.4; }

.dt-conn { display: flex; justify-content: center; padding: 4px 0; }
.dt-conn svg { width: 28px; height: 36px; }

.dt-q { background: #fff; border: 1px solid #ece7dd; border-radius: 16px; overflow: hidden; }
.dt-q-head { padding: 16px 16px 0; }
.dt-addon { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; color: #b07b00; margin-bottom: 8px; }
.dt-q-text { font-size: 15.5px; font-weight: 700; color: #1c2230; line-height: 1.35; margin-bottom: 14px; text-wrap: balance; }

.dt-split { display: grid; grid-template-columns: 2fr 1fr; }
.dt-left { background: #f5fdf9; border-top: 1px solid #c9e8e0; border-right: 1px solid #e8f4f0; border-left: 3px solid #4db6ac; padding: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px; }
.dt-left-l { font-size: 16px; font-weight: 700; color: #2f8a80; }
.dt-right { background: #fffbf2; border-top: 1px solid #ece7dd; padding: 14px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 3px; }
.dt-right-l { font-size: 10.5px; font-weight: 700; color: #854f0b; letter-spacing: .5px; }
.dt-price { font-size: 22px; font-weight: 800; color: #b07b00; line-height: 1; font-family: var(--font-disp); }
.dt-per { font-size: 10.5px; color: #9a7b1f; line-height: 1.5; }

.dt-left--win { background: #e8f7f1; border-top-color: #9fe1cb; border-right-color: #b8e8d4; }
.dt-win-check { font-size: 14px; font-weight: 800; color: #085041; display: flex; align-items: center; justify-content: center; gap: 6px; }
.dt-win-check svg { width: 16px; height: 16px; color: #1d9e75; flex: none; }
.dt-win-n { font-size: 30px; font-weight: 800; color: #085041; line-height: 1; font-family: var(--font-disp); }
.dt-win-s { font-size: 12px; color: #0f6e56; }

.dt-note { text-align: center; font-size: 12.5px; color: #a39b8a; margin-top: 14px; line-height: 1.6; }
.dt-note-en { font-size: 11px; }
