/* スマホで確定申告 LP（lp_chill.html）のスタイル。
 *
 * もとは lp_chill.html の中に <style> が14個、本文のあいだに散らばっていた
 * （head に1個、body に13個）。あとから足したブロックが前のブロックを
 * 上書きする前提で書かれていたため、**取り出した順番＝もとの文書順**を
 * そのまま保っている。並べ替えるとカスケードが変わって見た目が壊れる。
 *
 * body の途中に <style> があると、そこへ到達するまで前の見た目で描かれる。
 * head の1本にまとめたことで、その描き直しも無くなる。
 *
 * 1ページ専用のCSSを css/ に置く形は、このリポジトリの既存のやり方に合わせている
 * （css/billing.css・css/invoice.css・css/blog.css など。どれも読むのは1ページ）。
 */

/* ===== もとの <style> #1（head 内） ===== */
        /* =========================================================================
           スマタク LP（Lo-fi Chill）
           - 配色は sumataku-* アセットの線画（深緑＋若草）に合わせる。
           - 「ゆるく使えること」と「提出までの確認を省くこと」は別、を全セクション共通の軸にする。
             安心の根拠は実装済み機能から取り、保証できる範囲を超えた言い方はしない。
           ========================================================================= */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

        :root {
            --ink: #0f3d2e;          /* 深緑（ロゴの輪郭色） */
            --ink-2: #2c5545;
            --sub: #5b7a6d;
            --muted: #8aa298;
            --cream: #f5f1e4;        /* 背景のクリーム */
            --paper: #fffdf6;        /* カードの紙色 */
            --leaf: #6cb37a;         /* 若草（フーディの色） */
            --leaf-dark: #4f9760;
            --line: #06C755;         /* LINEグリーン（CTAのみ） */
            --line-dark: #05b64d;
            --warn: #e0912f;         /* 「要確認」「直せる」のオレンジ */
            --warn-bg: #fdf3e2;
            --danger: #d1594e;
            --border: #e3ddc9;
            --shadow: 0 10px 30px rgba(15, 61, 46, .08);
            --radius: 22px;
        }

        body {
            font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
            color: var(--ink);
            background: var(--cream);
            line-height: 1.85;
            overflow-x: hidden;
            word-break: break-word;
            /* 紙のざらつき。画像を足さずにテクスチャを出す */
            background-image:
                radial-gradient(circle at 12% 18%, rgba(108, 179, 122, .10) 0, transparent 42%),
                radial-gradient(circle at 88% 72%, rgba(108, 179, 122, .08) 0, transparent 40%);
            background-attachment: fixed;
        }

        img { max-width: 100%; height: auto; }
        a { color: inherit; text-decoration: none; }
        button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

        :where(button, a, input, select, textarea, [role="button"]) {
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        :where(button, a, input, select, textarea, [role="button"]):focus-visible {
            outline: 3px solid rgba(6, 199, 85, .45);
            outline-offset: 2px;
        }

        .wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
        .narrow { max-width: 720px; margin: 0 auto; }
        section { padding: 72px 0; position: relative; }
        @media (min-width: 768px) { section { padding: 104px 0; } }

        .eyebrow {
            display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em;
            color: var(--leaf-dark); background: rgba(108, 179, 122, .14);
            padding: 5px 14px; border-radius: 999px; margin-bottom: 16px;
        }
        .sec-title { font-size: 27px; font-weight: 900; line-height: 1.5; letter-spacing: .01em; }
        @media (min-width: 768px) { .sec-title { font-size: 38px; } }
        .sec-lead { color: var(--sub); margin-top: 28px; font-weight: 500; font-size: 15px; }
        .center { text-align: center; }
        .accent { color: var(--leaf-dark); }
        .marker {
            background: linear-gradient(transparent 62%, rgba(108, 179, 122, .38) 62%);
            font-weight: 900;
        }
        .note { font-size: 11px; color: var(--muted); line-height: 1.8; }

        /* --- スクロール出現 --- */
        .rv { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
        .rv.vis { opacity: 1; transform: translateY(0); }
        .d1 { transition-delay: .1s } .d2 { transition-delay: .2s } .d3 { transition-delay: .3s } .d4 { transition-delay: .4s }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            .rv { opacity: 1; transform: none; transition: none; }
            *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
        }

        /* --- CTA --- */
        .cta-btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 8px;
            background: var(--line); color: #fff; font-weight: 900; font-size: 17px;
            padding: 17px 38px; border-radius: 999px;
            box-shadow: 0 10px 24px rgba(6, 199, 85, .32);
            border-bottom: 4px solid var(--line-dark);
            transition: transform .2s, background .2s;
        }
        .cta-btn:hover { background: var(--line-dark); transform: translateY(-2px); }
        .cta-btn:active { border-bottom-width: 0; transform: translateY(2px); }
        .cta-sub { display: block; margin-top: 12px; font-size: 12px; color: var(--muted); }

        .card {
            background: var(--paper); border: 1px solid var(--border);
            border-radius: var(--radius); box-shadow: var(--shadow);
        }

        /* =================== ヘッダー =================== */
        .site-header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 60;
            background: rgba(245, 241, 228, .86); backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            transition: transform .3s;
        }
        .site-header .inner {
            max-width: 1040px; margin: 0 auto; padding: 8px 16px;
            display: flex; align-items: center; gap: 12px;
        }
        .site-header .logo { display: flex; align-items: center; gap: 8px; }
        .site-header .logo img { height: 34px; width: auto; }
        .hd-goat {
            width: 38px; height: 38px; border-radius: 50%; flex: none;
            border: 2px solid var(--ink); background: var(--paper); object-fit: cover;
            transition: transform .4s cubic-bezier(.16,1,.3,1);
        }
        .hd-spacer { flex: 1; }
        .hd-cta {
            background: var(--line); color: #fff; font-weight: 700; font-size: 13px;
            padding: 9px 16px; border-radius: 999px; white-space: nowrap;
        }
        @media (max-width: 420px) { .site-header .logo img { height: 28px; } .hd-cta { font-size: 12px; padding: 8px 12px; } }

        /* =================== ヒーロー =================== */
        .hero { padding: 108px 0 64px; text-align: center; overflow: hidden; }
        .hero h1 {
            font-size: clamp(26px, 7vw, 52px); font-weight: 900; line-height: 1.32; letter-spacing: .01em;
            text-wrap: balance;
        }
        .hero h1 .sm2 { display: block; font-size: .48em; color: var(--sub); margin-top: 12px; font-weight: 700; }
        .hero h1 .hl { display: inline-block; white-space: nowrap; }
        .hero-for {
            display: inline-block; font-size: 13px; font-weight: 900; letter-spacing: .06em;
            color: var(--ink); background: var(--paper); padding: 7px 18px; border-radius: 999px;
            margin-bottom: 18px;
        }
        .hero-chill { margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--leaf-dark); }
        .hero-sub { margin-top: 20px; color: var(--sub); font-size: 15px; font-weight: 500; }
        .hero-art { position: relative; width: min(340px, 78vw); margin: 26px auto 8px; }
        .hero-art > img { display: block; width: 100%; filter: drop-shadow(0 16px 28px rgba(15,61,46,.14)); }
        .hero-art .zzz {
            position: absolute; font-size: 22px; color: var(--leaf-dark); font-weight: 900;
            animation: zzz 4s ease-in-out infinite;
        }
        .hero-art .z1 { top: 4%; right: 6%; animation-delay: 0s; }
        .hero-art .z2 { top: -4%; right: 18%; font-size: 16px; animation-delay: .8s; }
        .hero-art .z3 { top: -10%; right: 30%; font-size: 12px; animation-delay: 1.6s; }
        @keyframes zzz {
            0% { opacity: 0; transform: translateY(6px) rotate(-6deg); }
            30% { opacity: .9; }
            100% { opacity: 0; transform: translateY(-22px) rotate(8deg); }
        }
        .hero-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 22px 0 8px; }
        .hero-badges span {
            background: var(--paper); border: 1px solid var(--border); border-radius: 999px;
            padding: 7px 14px; font-size: 12.5px; font-weight: 700; color: var(--ink-2);
        }
        .hero-price {
            display: inline-flex; flex-direction: column; gap: 2px; margin: 18px auto 22px;
            background: var(--paper); border: 2px dashed var(--leaf); border-radius: 18px; padding: 14px 22px;
        }
        .hero-price b { font-size: 15px; }
        .hero-price b em { font-style: normal; font-size: 26px; color: var(--leaf-dark); }

        /* =================== 目次 ===================
           長いページなので、上から順に読む以外の入口を用意する。
           **貼り付かせない。** 上に固定ヘッダー、下に追従CTAがあるので、ここまで
           貼り付けると狭い端末で本文の高さが足りなくなる。ファーストビューの
           すぐ下に1回だけ出して、あとは本文に譲る。
           ============================================================== */
        .toc { padding: 30px 0 8px; }
        .toc-lead { text-align: center; margin-bottom: 16px; line-height: 1.7; }
        .toc-lead b { display: block; font-size: clamp(15px, 4vw, 18px); font-weight: 900; color: var(--ink); }
        .toc-lead small { font-size: 12px; color: var(--muted); }
        .toc ul {
            list-style: none; display: grid; gap: 8px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            max-width: 860px; margin: 0 auto;
        }
        @media (min-width: 700px) { .toc ul { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; } }
        @media (min-width: 980px) { .toc ul { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
        .toc a {
            display: flex; align-items: center; gap: 8px; height: 100%;
            padding: 11px 13px; border-radius: 14px;
            background: var(--paper); border: 2px solid rgba(18,60,43,.16);
            box-shadow: 3px 3px 0 rgba(18,60,43,.09);
            font-size: 12.5px; font-weight: 900; line-height: 1.5; color: var(--ink-2);
            transition: transform .15s, box-shadow .15s, border-color .15s;
        }
        .toc a:hover, .toc a:focus-visible {
            transform: translate(-1px, -1px); box-shadow: 5px 5px 0 rgba(18,60,43,.16);
            border-color: var(--leaf);
        }
        .toc a:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(18,60,43,.14); }
        .toc-ic { font-size: 15px; flex: none; }
        @media (min-width: 700px) { .toc a { font-size: 13.5px; padding: 13px 15px; } }

        /* =================== 共感 =================== */
        .pains { display: grid; gap: 16px; margin-top: 34px; }
        @media (min-width: 760px) { .pains { grid-template-columns: repeat(3, 1fr); } }
        .pain { padding: 26px 22px; text-align: center; }
        .pain img { width: 88px; height: 88px; margin: 0 auto 12px; display: block; }
        .pain h3 { font-size: 17px; font-weight: 900; margin-bottom: 8px; }
        .pain p { font-size: 14px; color: var(--sub); }

        /* =================== 3ステップ =================== */
        .steps { display: grid; gap: 18px; margin-top: 38px; }
        @media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
        .step { padding: 28px 22px; text-align: center; position: relative; }
        .step .no {
            position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
            width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: var(--paper);
            display: grid; place-items: center; font-weight: 900; font-size: 15px;
        }
        .step img { width: 108px; height: 108px; margin: 10px auto 14px; display: block; }
        .step h3 { font-size: 19px; font-weight: 900; margin-bottom: 8px; }
        .step p { font-size: 14px; color: var(--sub); }
        .step .who { display: inline-block; margin-top: 12px; font-size: 11.5px; font-weight: 700; padding: 4px 12px; border-radius: 999px; background: rgba(108,179,122,.16); color: var(--leaf-dark); }
        .step .who.ai { background: rgba(224,145,47,.14); color: #b3701c; }
    

/* ===== もとの <style> #2（body 内） ===== */
        /* 「確認する」工程の補足。3つの構成は変えずに、隠さず書くための1行。 */
        .steps-note {
            max-width: 640px; margin: 22px auto 0; padding: 14px 18px;
            background: rgba(255,201,60,.14); border: 1.5px dashed rgba(18,60,43,.28);
            border-radius: 14px; font-size: 13px; line-height: 1.85; color: var(--ink-2);
        }
        .steps-note b { font-weight: 900; color: var(--ink); }

        /* =================== LINEトーク・デモ =================== */
        .demo-sec { background: linear-gradient(180deg, var(--cream) 0%, #ece6d2 50%, var(--cream) 100%); }
        .demo-lead-card {
            margin: 26px auto 0; max-width: 680px; padding: 24px 22px; text-align: center;
            background: var(--warn-bg); border: 2px solid rgba(224,145,47,.35); border-radius: var(--radius);
        }
        .demo-lead-card h3 { font-size: clamp(20px, 5.4vw, 28px); font-weight: 900; line-height: 1.5; }
        .demo-lead-card p { font-size: 14.5px; color: #8a6222; margin-top: 10px; font-weight: 500; }

        /* 幕はLP内の4か所に散らして置き、それぞれ画面に入ったら自動再生する。
           タブで切り替えると「押さないと見えない」ので、ボタン前提をやめた。
           同じ帯色と「01 / 04」の通し番号で、離れていても同じ話の続きだと分かるようにする。 */
        .demo-act-sec { padding-top: 64px; padding-bottom: 64px; }
        @media (min-width: 768px) { .demo-act-sec { padding-top: 88px; padding-bottom: 88px; } }
        .demo-count { font-size: 15px; font-weight: 900; margin: 0 5px 0 9px; }
        .eyebrow i { font-style: normal; opacity: .55; }

        /* =================== 4幕をつなぐ ===================
           もとは4幕をLPの4か所へ散らして置いていた。通し番号でつないでいたが、
           あいだに別の話が入るので続きものだと分かりにくかった。1か所へ集めたぶん、
           **幕の切れ目が分かる作り**が要る。幕を1枚の紙に見せ、あいだに草の帯を置き、
           ヤギがそれを食べているところでつなぐ。
           ============================================================== */
        .demo-reel .demo-lead-card { margin-top: 30px; }
        .act-slot { position: relative; }

        /* 幕を1枚の紙にする。区切りの草が縁に重なって、地続きに見える。
           **4枚を同じ見た目にしない。** 同じ紙が4枚続くと、どこまで読んだのか
           分からなくなる。話の段階に色と地紋を割り当てて、1枚ずつ表情を変える。
             幕1 気づく  … オレンジ（要確認の色）／方眼
             幕2 直す    … 若草（このLPの基調）／斜めストライプ
             幕3 育つ    … 空色（伸びていく感じ）／ドット
             幕4 任せる  … 深緑（人の出番。安心セクションと同じ色調）／十字
           色は --act-c、地紋は --act-tx で1か所に集めてある。 */
        .act-slot { --act-c: var(--leaf-dark); --act-t: rgba(108,179,122,.10); --act-tx: none; }
        .act-slot--01 { --act-c: var(--warn); --act-t: rgba(224,145,47,.11); --act-tx: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22'%3E%3Cpath d='M22 0H0V22' fill='none' stroke='%230f3d2e' stroke-opacity='.07'/%3E%3C/svg%3E"); }
        .act-slot--02 { --act-c: var(--leaf-dark); --act-t: rgba(108,179,122,.12); --act-tx: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M-4 4L4 -4M0 16L16 0M12 20L20 12' stroke='%230f3d2e' stroke-opacity='.06' stroke-width='2.4'/%3E%3C/svg%3E"); }
        .act-slot--03 { --act-c: #3d8fc4; --act-t: rgba(61,143,196,.11); --act-tx: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Ccircle cx='3' cy='3' r='1.6' fill='%230f3d2e' fill-opacity='.09'/%3E%3Ccircle cx='12' cy='12' r='1.6' fill='%230f3d2e' fill-opacity='.09'/%3E%3C/svg%3E"); }
        .act-slot--04 { --act-c: var(--ink); --act-t: rgba(15,61,46,.09); --act-tx: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath d='M10 6v8M6 10h8' stroke='%230f3d2e' stroke-opacity='.08' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); }

        .demo-reel .act {
            position: relative; overflow: hidden;
            background: var(--act-tx), linear-gradient(180deg, var(--act-t), rgba(255,255,255,.80) 190px), rgba(255,255,255,.86);
            border: 2px solid rgba(18,60,43,.18); border-radius: var(--radius);
            box-shadow: 5px 5px 0 rgba(18,60,43,.10);
            padding: 32px 20px 26px; margin-top: 30px;
        }
        @media (min-width: 900px) { .demo-reel .act { padding: 40px 32px 34px; } }
        /* 紙の上辺に色の帯。どの段階の話かが、開いた瞬間に分かる。 */
        .demo-reel .act::before {
            content: ''; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: var(--act-c);
        }
        /* 透かしの番号。紙の隅に大きく置いて、束の何枚目かを目で数えられるようにする。 */
        .demo-reel .act::after {
            content: ''; position: absolute; right: 14px; top: 2px;
            font-size: 94px; font-weight: 900; line-height: 1; color: var(--act-c);
            opacity: .10; pointer-events: none; letter-spacing: -.04em;
        }
        @media (min-width: 900px) { .demo-reel .act::after { font-size: 124px; right: 22px; } }

        .act-slot--01 .act::after { content: '01'; }
        .act-slot--02 .act::after { content: '02'; }
        .act-slot--03 .act::after { content: '03'; }
        .act-slot--04 .act::after { content: '04'; }

        /* 幕の番号バッジも、その幕の色にそろえる（緑固定をやめる）。 */
        .demo-reel .act-copy .act-no { background: var(--act-c); color: #fff; }

        /* --- 幕ごとの小物 ---
           地紋と色だけだと、まだ4枚が「同じ形の紙」に見える。話に出てくるものを
           紙の上に散らして、幕そのものに表情を持たせる。
             幕1 気づく … レシートの切れ端（読み取りのもと）
             幕2 直す   … 鉛筆（直す道具）
             幕3 育つ   … 伸びていく葉っぱ
             幕4 任せる … 印鑑（人が署名して出す）
           画像は足さず、SVGのデータURIで描く。**紙の内側に置く。**
           .act は overflow: hidden なので、縁から半分のぞく置き方をしても
           はみ出さない（横スクロールの原因を作らない）。 */
        .act-props { position: absolute; inset: 0; pointer-events: none; }
        .act-props i {
            position: absolute; display: block; background: center/contain no-repeat;
            opacity: .5; animation: propFloat 7s ease-in-out infinite;
        }
        .act-props i:nth-child(2) { animation-delay: -2.4s; }
        .act-props i:nth-child(3) { animation-delay: -4.8s; }
        @keyframes propFloat {
            0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
            50% { transform: translateY(-7px) rotate(calc(var(--r, 0deg) + 2deg)); }
        }

        .act-slot--01 .act-props i { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 62'%3E%3Cpath d='M2 2h40v50l-5 5-5-5-5 5-5-5-5 5-5-5-5 5V2Z' fill='%23fffdf6' stroke='%23e0912f' stroke-opacity='.55' stroke-width='2' stroke-linejoin='round'/%3E%3Cg stroke='%23e0912f' stroke-opacity='.4' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M9 14h26M9 23h26M9 32h17'/%3E%3C/g%3E%3C/svg%3E"); }
        .act-slot--01 .act-props i:nth-child(1) { --r: -12deg; width: 40px; height: 56px; left: -12px; top: 46%; }
        .act-slot--01 .act-props i:nth-child(2) { --r: 9deg;  width: 30px; height: 42px; right: 4%; bottom: -14px; }
        .act-slot--01 .act-props i:nth-child(3) { --r: -5deg; width: 24px; height: 34px; left: 26%; bottom: -10px; opacity: .34; }

        .act-slot--02 .act-props i { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 74'%3E%3Cpath d='M4 16h18v50a9 9 0 0 1-18 0Z' fill='%23fffdf6' stroke='%234f9760' stroke-width='2.4' stroke-linejoin='round'/%3E%3Cpath d='M4 16 13 3l9 13Z' fill='%236cb37a' stroke='%234f9760' stroke-width='2.4' stroke-linejoin='round'/%3E%3Cpath d='M4 58h18' stroke='%234f9760' stroke-width='2.4'/%3E%3C/svg%3E"); }
        .act-slot--02 .act-props i:nth-child(1) { --r: 24deg;  width: 24px; height: 66px; right: -8px; top: 38%; }
        .act-slot--02 .act-props i:nth-child(2) { --r: -18deg; width: 18px; height: 50px; left: 3%; bottom: -12px; opacity: .36; }
        .act-slot--02 .act-props i:nth-child(3) { --r: 8deg;   width: 15px; height: 42px; left: 46%; top: -16px; opacity: .3; }

        .act-slot--03 .act-props i { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 74'%3E%3Cpath d='M28 72V22' fill='none' stroke='%233d8fc4' stroke-opacity='.75' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M28 50c-14 2-20-6-20-14 10-2 18 4 20 14Z' fill='%238fc7e6' stroke='%233d8fc4' stroke-width='2.4' stroke-linejoin='round'/%3E%3Cpath d='M28 34c14 2 20-6 20-14-10-2-18 4-20 14Z' fill='%238fc7e6' stroke='%233d8fc4' stroke-width='2.4' stroke-linejoin='round'/%3E%3Ccircle cx='28' cy='19' r='5' fill='%233d8fc4' fill-opacity='.5'/%3E%3C/svg%3E"); }
        .act-slot--03 .act-props i:nth-child(1) { --r: -6deg; width: 46px; height: 60px; left: -10px; bottom: -14px; }
        .act-slot--03 .act-props i:nth-child(2) { --r: 12deg; width: 34px; height: 45px; right: 5%; bottom: -12px; opacity: .38; }
        .act-slot--03 .act-props i:nth-child(3) { --r: -14deg; width: 26px; height: 34px; left: 40%; top: -10px; opacity: .3; }

        .act-slot--04 .act-props i { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 62 62'%3E%3Ccircle cx='31' cy='31' r='27' fill='none' stroke='%23c0392b' stroke-opacity='.75' stroke-width='4'/%3E%3Cg stroke='%23c0392b' stroke-opacity='.7' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M31 14v34M20 24h22M20 38h22'/%3E%3C/g%3E%3C/svg%3E"); }
        .act-slot--04 .act-props i:nth-child(1) { --r: -11deg; width: 52px; height: 52px; left: -14px; bottom: 8%; }
        .act-slot--04 .act-props i:nth-child(2) { --r: 7deg;   width: 34px; height: 34px; right: 6%; bottom: -10px; opacity: .34; }
        .act-slot--04 .act-props i:nth-child(3) { --r: 16deg;  width: 24px; height: 24px; left: 34%; top: -8px; opacity: .26; }

        @media (min-width: 900px) {
            .act-props i { opacity: .58; }
            .act-slot--01 .act-props i:nth-child(1) { width: 52px; height: 72px; left: -16px; }
            .act-slot--03 .act-props i:nth-child(1) { width: 58px; height: 76px; }
            .act-slot--04 .act-props i:nth-child(1) { width: 64px; height: 64px; }
        }

        /* 紙を留めるマスキングテープ。奇数と偶数で留める側を変えて、束らしくする。 */
        .act-slot::before {
            content: ''; position: absolute; z-index: 3; top: 18px; width: 92px; height: 26px;
            background: repeating-linear-gradient(135deg, rgba(255,255,255,.55) 0 5px, rgba(255,255,255,.28) 5px 10px), var(--act-c);
            opacity: .62; border-radius: 2px; box-shadow: 0 2px 6px rgba(15,61,46,.18);
        }
        .act-slot--01::before, .act-slot--03::before { left: -14px; transform: rotate(-6deg); }
        .act-slot--02::before, .act-slot--04::before { right: -14px; transform: rotate(5deg); }

        /* --- 幕と幕のあいだ --- */
        .act-join { position: relative; text-align: center; padding-top: 34px; }
        /* 上の紙から降りてくる点線。切れ目ではなく「つづき」に見せるための線。 */
        .aj-line {
            position: absolute; left: 50%; top: -6px; width: 3px; height: 40px; transform: translateX(-50%);
            background: repeating-linear-gradient(180deg, rgba(18,60,43,.30) 0 7px, transparent 7px 15px);
        }
        .aj-scene { position: relative; height: 78px; }
        /* 草は幕の紙より広く出す。紙が草の上に載って見える。
           **広げすぎない。** .wrap の左右余白は20pxしかないので、それを超えて広げると
           狭い端末で横スクロールが出る（実際 390px で3px出た）。余白のぶんだけ出して、
           画面に余裕のある広い画面でだけ、さらに外へ伸ばす。 */
        .aj-grass {
            position: absolute; left: -20px; right: -20px; bottom: 0; height: 34px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 34'%3E%3Cg fill='none' stroke='%23a8d7b4' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 34C6 24 4 19 1 14'/%3E%3Cpath d='M30 34C30 25 33 19 37 15'/%3E%3Cpath d='M58 34C58 23 55 18 52 13'/%3E%3Cpath d='M84 34C84 25 87 20 91 16'/%3E%3C/g%3E%3Cg fill='none' stroke='%234f9760' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M14 34C14 22 11 16 8 10'/%3E%3Cpath d='M22 34C22 25 25 18 29 12'/%3E%3Cpath d='M44 34C44 21 41 15 38 9'/%3E%3Cpath d='M52 34C52 26 56 19 60 14'/%3E%3Cpath d='M70 34C70 22 67 16 64 11'/%3E%3Cpath d='M78 34C78 26 81 20 85 15'/%3E%3C/g%3E%3C/svg%3E") repeat-x bottom / 96px 34px;
        }
        .aj-grass::after {
            content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
            border-radius: 999px; background: rgba(79,151,96,.45);
        }
        /* ヤギは草に足もとがうずまって見える位置に置く（重なりを作る）。 */
        .aj-goat {
            position: absolute; left: 50%; bottom: -2px; width: 84px; height: 84px;
            transform: translateX(-50%); transform-origin: 50% 90%;
            animation: ajMunch 2.6s ease-in-out infinite;
        }
        /* 草の上に落ちる影。これが無いと、草の手前に浮いて見える。 */
        .aj-scene::after {
            content: ''; position: absolute; left: 50%; bottom: 2px; width: 62px; height: 9px;
            transform: translateX(-50%); border-radius: 50%; background: rgba(18,60,43,.16);
        }
        /* 食べている草。口もとで揺れる。 */
        .aj-bite {
            position: absolute; left: calc(50% + 26px); bottom: 34px; font-size: 15px;
            animation: ajBite 2.6s ease-in-out infinite;
        }
        @keyframes ajMunch {
            0%, 100% { transform: translateX(-50%) rotate(0) translateY(0); }
            40% { transform: translateX(-50%) rotate(3.5deg) translateY(4px); }
            60% { transform: translateX(-50%) rotate(1.5deg) translateY(2px); }
        }
        @keyframes ajBite {
            0%, 100% { transform: rotate(-8deg) translateY(0); opacity: .95; }
            40% { transform: rotate(10deg) translateY(3px); opacity: 1; }
        }
        .aj-say {
            margin-top: 16px; font-size: clamp(14px, 3.8vw, 17px); font-weight: 900;
            color: var(--ink-2);
        }
        .aj-say::before, .aj-say::after { content: '　'; }

        @media (min-width: 900px) {
            .act-join { padding-top: 44px; }
            /* .wrap は 1040px で頭打ちなので、これより広い画面には外側に余りがある。 */
            .aj-grass { left: -6vw; right: -6vw; }
            .aj-scene { height: 92px; }
            .aj-goat { width: 100px; height: 100px; }
            .aj-scene::after { width: 74px; height: 11px; }
            .aj-bite { left: calc(50% + 32px); bottom: 40px; font-size: 17px; }
        }

        .act { display: grid; gap: 24px; align-items: center; margin-top: 26px; position: relative; }
        @media (min-width: 900px) {
            .act { grid-template-columns: 1fr 344px; gap: 52px; margin-top: 34px; }
            /* 偶数の幕は左右を入れ替えて、4か所に出てきても同じ絵に見えないようにする */
            .act--flip { grid-template-columns: 344px 1fr; }
            .act--flip .act-copy { order: 2; }
            .act--flip .phone { order: 1; }
        }

        .act-copy .act-no {
            display: inline-block; font-size: 11.5px; font-weight: 900; letter-spacing: .14em;
            color: var(--leaf-dark); background: rgba(108,179,122,.14);
            padding: 4px 12px; border-radius: 999px;
        }
        .act-copy h2 { font-size: clamp(21px, 5.6vw, 30px); font-weight: 900; line-height: 1.5; margin: 12px 0 14px; }
        .act-copy p { font-size: 15px; color: var(--sub); }
        .demo-facts { margin-top: 18px; display: grid; gap: 8px; }
        .demo-fact {
            display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px;
            background: var(--paper); border: 1px solid var(--border); border-radius: 14px; padding: 11px 14px;
        }
        .demo-fact b { color: var(--ink); }
        .demo-fact .ic { flex: none; }

        /* --- スマホ枠 --- */
        .phone { justify-self: center; width: 100%; max-width: 340px; }
        .phone-body {
            background: #8CABD8; border-radius: 30px; padding: 10px; box-shadow: 0 18px 44px rgba(15,61,46,.20);
            border: 3px solid var(--ink);
        }
        .phone-bar {
            display: flex; align-items: center; gap: 7px; padding: 6px 8px 10px; color: #fff; font-size: 12.5px; font-weight: 700;
        }
        .phone-bar .av { width: 24px; height: 24px; border-radius: 50%; background: #fff; overflow: hidden; flex: none; }
        .phone-bar .av img { width: 100%; height: 100%; object-fit: cover; }
        .chat { background: #8CABD8; border-radius: 18px; padding: 4px 6px 12px; min-height: 356px; }
        .chat-scroll { height: 386px; overflow-y: auto; padding: 4px 2px; scroll-behavior: smooth; }

        .msg { display: flex; margin: 10px 0; animation: pop .38s cubic-bezier(.16,1,.3,1); }
        @keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.97); } to { opacity: 1; transform: none; } }
        .msg.me { justify-content: flex-end; }
        .bubble {
            max-width: 84%; background: #fff; border-radius: 16px; padding: 10px 13px;
            font-size: 13px; line-height: 1.7; box-shadow: 0 1px 2px rgba(0,0,0,.08);
        }
        .msg.me .bubble { background: #9be26c; }
        .time { align-self: flex-end; font-size: 9.5px; color: rgba(255,255,255,.85); margin: 0 5px; }

        /* --- 記録カード（Flex風） --- */
        .rc { background: #fff; border-radius: 14px; overflow: hidden; width: 88%; box-shadow: 0 2px 6px rgba(0,0,0,.12); }
        .rc-head { background: #f4f7f5; padding: 9px 12px; font-size: 11.5px; font-weight: 900; color: var(--ink); border-bottom: 1px solid #e8ede9; }
        .rc-head.ok { background: #e9f8ee; color: #1c7a3d; }
        .rc-head.fix { background: var(--warn-bg); color: #a8701c; }
        .rc-body { padding: 11px 12px; }
        .rc-row { display: flex; justify-content: space-between; gap: 8px; font-size: 11.5px; padding: 4px 0; border-bottom: 1px dashed #eef1ee; align-items: center; }
        .rc-row:last-child { border-bottom: 0; }
        .rc-row .k { color: #93a29a; flex: none; }
        .rc-row .v { font-weight: 700; text-align: right; }
        .rc-row.warn { background: var(--warn-bg); margin: 0 -12px; padding: 5px 12px; border-radius: 6px; }
        .rc-row.warn .v { color: #a8701c; }
        .rc-row.changed .v { color: #1c7a3d; }
        .chk { display: inline-block; font-size: 9.5px; font-weight: 900; padding: 1px 6px; border-radius: 999px; margin-left: 5px; vertical-align: middle; }
        .chk.warn { background: #f6d9a8; color: #8a5c12; }
        .chk.ok { background: #cdeed8; color: #1c7a3d; }
        .rc-reason { margin-top: 9px; background: #f7faf8; border-radius: 9px; padding: 9px 10px; font-size: 10.5px; color: var(--sub); line-height: 1.65; }
        .rc-reason b { color: var(--ink); }
        .rc-disc { margin-top: 8px; font-size: 9px; color: #a9b5af; line-height: 1.6; }
        .rc-btn {
            display: block; text-align: center; margin-top: 9px; padding: 9px; border-radius: 9px;
            font-size: 11.5px; font-weight: 900; background: var(--line); color: #fff;
        }
        .rc-btn.sub { background: #fff; color: var(--warn); border: 1px solid var(--warn); }
        .rc-btn.ghost { background: #fff; color: var(--sub); border: 1px solid #dfe5e1; }
        .rc-alert {
            margin-top: 9px; background: #fdecea; border: 1px solid #f3c3bd; border-radius: 9px;
            padding: 9px 10px; font-size: 10.5px; color: #a4392e; font-weight: 700; line-height: 1.6;
        }

        /* --- クイックリプライ --- */
        /* クイックリプライの行。**高さを先に取っておく。**
           出ている間だけ 10px → 47px に伸び、押されると 10px に戻る。伸び縮みすると
           下にある全部が上下に動くので、目次から飛んだ先がヘッダーの裏へ潜り込む
           （実測で74px＝この行2つぶん、ずれていた）。
           .chat-scroll の高さを固定してあるのと同じ理由。幕1と幕4はここを使わないが、
           4つの画面の高さがそろうので、空けたままにしておく。 */
        .qr { display: flex; gap: 6px; overflow-x: auto; padding: 8px 2px 2px; min-height: 47px; }
        .qr button {
            flex: none; background: #fff; border: 1px solid #cfdce9; color: #2b6cb0;
            border-radius: 999px; padding: 7px 13px; font-size: 11.5px; font-weight: 700;
            box-shadow: 0 1px 3px rgba(0,0,0,.10); animation: qrIn .5s ease both;
        }
        .qr button:hover { background: #f0f7ff; }
        .qr button:disabled { opacity: .4; }
        /* 自動で選ばれたときに、押された瞬間が分かるようにする */
        .qr button.pressed { background: #dcefff; border-color: #7fb3e0; transform: scale(.95); }
        @keyframes qrIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
        .qr-hint { text-align: center; font-size: 11px; color: #fff; font-weight: 700; padding: 6px 0 0; min-height: 21px; text-shadow: 0 1px 2px rgba(0,0,0,.15); }
        .qr-hint.done { opacity: .55; }

        .typing span {
            display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: #b8c4bd; margin: 0 1.5px;
            animation: tp 1.2s infinite;
        }
        .typing span:nth-child(2) { animation-delay: .2s } .typing span:nth-child(3) { animation-delay: .4s }
        @keyframes tp { 0%,60%,100% { opacity: .3; transform: translateY(0) } 30% { opacity: 1; transform: translateY(-3px) } }

        .demo-replay { display: block; margin: 12px auto 0; font-size: 12px; font-weight: 700; color: var(--sub); text-decoration: underline; }
    

/* ===== もとの <style> #3（body 内） ===== */
        /* =================== 機能10 ===================
           カードは <details>。押すとその機能の中身が開く。
           **JSを使わない。** 中身は最初からHTMLにあるので、JSを実行しない相手
           （検索エンジン・AIのクローラー）にも読める。キーボード操作と
           開閉の状態管理もブラウザ側が持つ。
           ============================================================== */
        .fn-grid { display: grid; gap: 14px; margin-top: 36px; grid-template-columns: repeat(2, 1fr); align-items: start; }
        @media (min-width: 640px) { .fn-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (min-width: 980px) { .fn-grid { grid-template-columns: repeat(5, 1fr); } }
        .fn { padding: 18px 12px 20px; text-align: center; }
        .fn img { width: 74px; height: 74px; margin: 0 auto 10px; display: block; }
        .fn h3 { font-size: 13.5px; font-weight: 900; line-height: 1.5; margin-bottom: 5px; }
        .fn p { font-size: 11.5px; color: var(--sub); line-height: 1.7; }

        .fn > summary { display: block; cursor: pointer; list-style: none; }
        .fn > summary::-webkit-details-marker { display: none; }
        .fn > summary:focus-visible { outline: 3px solid var(--leaf); outline-offset: 5px; border-radius: 10px; }
        .fn-more {
            display: inline-flex; align-items: center; gap: 4px; margin-top: 10px;
            font-size: 10.5px; font-weight: 900; color: var(--leaf-dark);
            background: rgba(108,179,122,.16); border-radius: 999px; padding: 4px 10px;
        }
        .fn-more::after { content: '＋'; font-size: 10px; }
        .fn[open] .fn-more { background: rgba(108,179,122,.3); }
        .fn[open] .fn-more::after { content: '−'; }

        /* 開いたら列をまたいで全幅にする。5列のまま開くと、幅200pxで本文を読ませることになる。
           **先頭へ出すのは CSS ではなく JS の仕事。** order を使うと見た目だけが動いて、
           Tab で送る順が HTML の並びのまま取り残される（5枚目を開くと、画面では先頭なのに
           次の Tab は6枚目）。DOMごと動かしている（modules/marketing/lp_chill/features.js）。 */
        .fn[open] { grid-column: 1 / -1; text-align: left; }
        .fn[open] > summary { text-align: center; }
        .fn-body {
            margin-top: 15px; padding-top: 15px; border-top: 2px dashed rgba(18,60,43,.28);
            max-width: 760px; margin-left: auto; margin-right: auto;
        }
        .fn-lead { font-size: 13.5px !important; color: var(--ink-2) !important; font-weight: 700; line-height: 1.85 !important; }
        .fn-body ul { list-style: none; margin-top: 12px; display: grid; gap: 9px; }
        @media (min-width: 720px) { .fn-body ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 22px; } }
        .fn-body li {
            position: relative; padding-left: 21px; font-size: 12.5px;
            line-height: 1.8; color: var(--sub);
        }
        .fn-body li::before { content: '✓'; position: absolute; left: 1px; top: 0; color: var(--leaf-dark); font-weight: 900; }
        .fn-body li b { color: var(--ink); font-weight: 900; }

        /* --- 機能カードの中に出す画面イメージ ---
           実物（LINEの記録カード／編集画面の「判別の根拠」／レポートのサマリー）と
           同じ構造・同じ色で組んである。値は説明用のサンプルで、LP内の他の場面と
           同じ数字（セブンイレブン -¥3,180 など）にそろえてある。
           読み上げには不要なので、差し込み側で aria-hidden にはせず figure/figcaption で
           「画面イメージ」であることを明示している。 */
        /* スマホの画面なので、広い画面でも横に伸ばさない。伸ばすと実物に見えない。 */
        .fn-shot { margin-top: 16px; max-width: 420px; }
        @media (min-width: 720px) { .fn-shot { margin-left: auto; margin-right: auto; } }
        .fn-shot figcaption {
            display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
            font-size: 11.5px; font-weight: 900; color: var(--ink-2); margin-bottom: 8px;
        }
        .fn-shot figcaption span {
            font-size: 10px; font-weight: 900; color: var(--sub);
            background: rgba(18,60,43,.08); border-radius: 999px; padding: 2px 8px;
        }

        /* LINEのトーク画面 */
        .fs-line {
            background: #8CABD8; border: 2.5px solid var(--ink); border-radius: 14px;
            padding: 11px 11px 13px; display: grid; gap: 8px;
        }
        .fs-msg { display: flex; }
        .fs-msg.is-me { justify-content: flex-end; }
        .fs-bubble {
            background: #fff; border-radius: 12px; padding: 7px 11px; font-size: 12px;
            line-height: 1.6; box-shadow: 0 1px 2px rgba(0,0,0,.1);
        }
        .fs-bubble.is-me { background: #9be26c; }
        .fs-card { background: #fff; border-radius: 11px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,.12); }
        .fs-head { background: #f4f7f5; padding: 7px 11px; font-weight: 900; font-size: 11px; color: var(--ink); }
        .fs-head.is-ok { background: #e9f8ee; color: #1c7a3d; }
        .fs-head.is-fix { background: #fdf3e2; color: #a8701c; }
        .fs-head.is-warn { background: #fdecea; color: #a4392e; }
        .fs-row {
            display: flex; justify-content: space-between; align-items: center; gap: 10px;
            padding: 6px 11px; border-top: 1px dashed #eef1ee; font-size: 12px;
        }
        .fs-row > span { color: #93a29a; flex: none; }
        .fs-row > b { text-align: right; font-weight: 700; color: var(--ink); }
        .fs-row.is-changed > b { color: #1c7a3d; }
        .fs-row.is-warn { background: #fdf3e2; }
        .fs-row i { font-style: normal; font-size: 9.5px; font-weight: 900; background: #cdeed8; color: #1c7a3d; border-radius: 999px; padding: 1px 6px; margin-left: 4px; }
        .fs-note { padding: 8px 11px; border-top: 1px dashed #eef1ee; font-size: 11.5px; line-height: 1.7; color: #5b7a6d; }
        .fs-mono { font-family: 'Roboto Mono', ui-monospace, monospace; font-size: 11px; }

        /* アプリ（LIFF）の画面 */
        .fs-app { background: #fff; border: 2.5px solid var(--ink); border-radius: 14px; padding: 13px; }

        /* 編集画面の「判別の根拠」。edit.html の .edit-basis と同じ配色。 */
        .fs-basis { background: #FFFCF3; border: 1px solid #EDE2C4; border-radius: 12px; padding: 12px 14px; }
        .fs-basis-title { font-size: 12px; font-weight: 900; color: #9A7B27; margin-bottom: 9px; }
        .fs-basis-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 3px 0; }
        .fs-basis-row > span { font-size: 11.5px; color: #8A8A8A; font-weight: 700; }
        .fs-basis-row > b { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 900; }
        .fs-dots { font-style: normal; letter-spacing: 2px; font-size: 10px; }
        .fs-basis-row em { font-style: normal; }
        .fs-basis-fold {
            margin-top: 10px; padding-top: 9px; border-top: 1px solid #EDE2C4;
            text-align: center; color: #9A7B27; font-weight: 900; font-size: 11px;
        }
        .fs-basis-conf { margin-top: 11px; }
        .fs-basis-conf-label { display: flex; justify-content: space-between; font-size: 11px; font-weight: 900; color: #9A7B27; margin-bottom: 5px; }
        .fs-basis-conf-bar { height: 7px; border-radius: 999px; background: #EFE6CE; overflow: hidden; }
        .fs-basis-conf-bar > i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #E0A233, #F2C46A); }

        /* --- 図（月別推移の棒グラフ・収支の流れのサンキー） ---
           外部ライブラリは読まない（このページは完全に自己完結）。座標は組み立て時に
           計算してSVGへ焼いてある。
           **色は製品のもの**（収入=#2FA36B / 経費=#EF5350 / 利益=#1CB0F6、
           report.html と ai_basis.js と同じ）。この赤と緑は2型色覚での差が小さいので
           （ΔE 6.3）、色だけに頼らせない: 積んだ2つのあいだに2pxのすきまを空け、
           凡例を必ず出し、値を直接添える。青は背景とのコントラストが3:1に届かないので、
           凡例の文字がその代わりを務める。 */
        .fs-chart { display: block; width: 100%; height: auto; }
        .fs-grid line { stroke: rgba(18,60,43,.16); stroke-width: 1; }
        .fs-tick text { font-size: 9px; font-weight: 700; fill: var(--sub); }
        .fs-bar-val { font-size: 10px; font-weight: 900; fill: var(--ink); }

        .fs-panel { margin-top: 10px; border: 2px solid #E5E5E5; border-radius: 12px; padding: 11px 10px 9px; }
        .fs-panel-t { font-size: 11px; font-weight: 900; color: #333; margin-bottom: 6px; }
        /* 凡例は2系列以上なら必ず出す。色の見分けに頼らせないための、確実な手がかり。 */
        .fs-legend {
            display: flex; align-items: center; justify-content: center; gap: 5px;
            margin-top: 6px; font-size: 10.5px; font-weight: 700; color: var(--sub);
        }
        .fs-key { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
        .fs-key--cost { background: #EF5350; }
        .fs-key--profit { background: #1CB0F6; margin-left: 10px; }

        /* サンキー図。文字は色を持たない（インクの色）。数字だけ少し大きくする。 */
        .fs-flow-lb { font-size: 11.5px; font-weight: 700; fill: var(--ink-2); }
        .fs-flow-num { font-size: 14px; font-weight: 900; fill: var(--ink); }
        .fs-flow-note { margin-top: 8px; font-size: 11.5px; line-height: 1.75; color: var(--sub); }
        .fn-shot figcaption span.is-note { background: rgba(255,201,60,.3); color: #7a5b12; }

        /* レポートのサマリー3枚。report.html の .summary-grid と同じ並び・同じ色。 */
        .fs-sum { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
        .fs-sum-card {
            background: #fff; border: 2px solid #E5E5E5; border-radius: 12px;
            padding: 11px 10px; text-align: center;
        }
        .fs-sum-card.is-wide { grid-column: 1 / -1; }
        .fs-sum-card > span { display: block; font-size: 10.5px; color: #777; font-weight: 700; }
        .fs-sum-card > b { display: block; font-size: 16px; font-weight: 900; margin-top: 3px; }
        .fs-sum-card.is-wide > b { font-size: 19px; }
        .fs-guide { margin-top: 10px; border: 2px solid #E5E5E5; border-radius: 12px; padding: 11px 12px; text-align: center; }
        .fs-guide-label { font-size: 10.5px; color: #777; font-weight: 700; }
        .fs-guide-value { font-size: 20px; font-weight: 900; color: #1CB0F6; }
        .fs-guide-sub { font-size: 10.5px; color: #999; }

        /* 相談先のタイル */
        .fs-who { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
        .fs-who > div { background: #F7FBF8; border: 2px solid #E3EFE7; border-radius: 12px; padding: 10px; text-align: center; }
        .fs-who b { display: block; font-size: 12.5px; font-weight: 900; color: var(--ink); }
        .fs-who span { display: block; font-size: 10.5px; color: var(--sub); margin-top: 2px; }

        /* 詳細の中のリンク（料金へ逃がす用） */
        .fn-body a { color: var(--leaf-dark); font-weight: 900; text-decoration: underline; text-underline-offset: 2px; }

        /* =================== 経費チェック・デモ =================== */
        .ask { max-width: 660px; margin: 34px auto 0; padding: 24px 20px 26px; }
        .ask-q { text-align: center; font-size: 15px; font-weight: 900; }
        .ask-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 16px 0 4px; }
        .ask-chips button {
            border: 1.5px solid var(--leaf); color: var(--leaf-dark); background: #fff;
            border-radius: 999px; padding: 9px 16px; font-size: 13px; font-weight: 700;
            transition: background .2s, color .2s;
        }
        .ask-chips button:hover { background: rgba(108,179,122,.12); }
        .ask-chips button[aria-pressed="true"] { background: var(--leaf-dark); color: #fff; }
        .ask-a { margin-top: 16px; min-height: 30px; }
        .ask-a[hidden] { display: none; }
        .ask-card { border: 1px solid var(--border); border-radius: 16px; padding: 16px 16px 14px; background: #fbfaf3; animation: pop .4s cubic-bezier(.16,1,.3,1); }
        .ask-card .verdict { font-size: 17px; font-weight: 900; margin-bottom: 8px; }
        .ask-card .verdict.yes { color: #1c7a3d; }
        .ask-card .verdict.maybe { color: #b3701c; }
        .ask-card .verdict.no { color: var(--danger); }
        .ask-meta { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0 10px; }
        .ask-meta span { font-size: 11px; font-weight: 700; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 4px 10px; }
        .ask-card p { font-size: 13.5px; color: var(--sub); }
        .ask-disc { margin-top: 12px; font-size: 10.5px; color: var(--muted); line-height: 1.7; }
    

/* ===== もとの <style> #4（body 内） ===== */
        /* =================== 3つのチェックゲート（土台。詳細は css/lp_chill_check_gates.css） =================== */
        .safe-sec { background: var(--ink); color: #eef4ef; }
        .safe-sec .sec-title { color: #fff; }
        .safe-sec .sec-lead { color: #a9c4b6; }
        .safe-sec .eyebrow { background: rgba(255,255,255,.10); color: #a8dcb6; }

        /* =================== 料金 =================== */
        .plans { display: grid; gap: 18px; margin-top: 34px; }
        @media (min-width: 820px) { .plans { grid-template-columns: repeat(2, 1fr); align-items: start; } }
        .plan { padding: 26px 22px 28px; position: relative; }
        .plan.reco { border: 2px solid var(--leaf); box-shadow: 0 16px 40px rgba(79,151,96,.18); }
        .plan .tag {
            position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
            background: var(--leaf-dark); color: #fff; font-size: 11.5px; font-weight: 900;
            padding: 5px 16px; border-radius: 999px; white-space: nowrap;
        }
        .plan .icon { font-size: 32px; text-align: center; display: block; }
        .plan h3 { font-size: 22px; font-weight: 900; text-align: center; margin: 4px 0 2px; }
        .plan .role { display: block; text-align: center; font-size: 12.5px; color: var(--muted); font-weight: 700; }
        .plan .amount { text-align: center; margin: 16px 0 4px; }
        .plan .amount .lowest { display: block; font-size: 11.5px; font-weight: 900; color: var(--leaf-dark); letter-spacing: .08em; }
        .plan .amount .yen { font-size: 40px; font-weight: 900; line-height: 1.2; }
        .plan .amount .unit { font-size: 13px; font-weight: 700; color: var(--sub); }
        .plan .amount .per { display: block; font-size: 13px; color: var(--sub); font-weight: 700; margin-top: 2px; }
        .plan .amount .init { display: block; font-size: 11.5px; color: var(--muted); margin-top: 6px; }
        .plan ul { list-style: none; margin: 16px 0 0; display: grid; gap: 8px; }
        .plan li { font-size: 13.5px; display: flex; gap: 8px; align-items: flex-start; }
        .plan li .m { flex: none; font-weight: 900; color: var(--leaf-dark); }
        .plan li.no { color: var(--muted); }
        .plan li.no .m { color: #c2cec8; }
        .plan .who2 {
            margin-top: 16px; background: rgba(108,179,122,.12); border-radius: 12px; padding: 10px 12px;
            font-size: 12.5px; font-weight: 700; color: var(--ink-2); text-align: center;
        }
        .plan .gift {
            margin-top: 14px; background: var(--warn-bg); border: 1px dashed rgba(224,145,47,.5);
            border-radius: 12px; padding: 12px; font-size: 12.5px; color: #8a6222; line-height: 1.7;
        }
        .plan .gift b { color: #a8701c; }

        /* オプション表 */
        .opt-intro { max-width: 720px; margin: 46px auto 0; text-align: center; }
        .opt-list { max-width: 760px; margin: 20px auto 0; overflow: hidden; }
        .opt-row {
            display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-bottom: 1px solid var(--border);
            font-size: 13.5px;
        }
        .opt-row:last-child { border-bottom: 0; }
        .opt-row .nm { flex: 1; font-weight: 700; }
        .opt-row .nm small { display: block; font-weight: 500; font-size: 11.5px; color: var(--muted); line-height: 1.6; }
        .opt-row .pr { font-weight: 900; white-space: nowrap; }
        .opt-row .pr small { font-size: 10.5px; color: var(--muted); font-weight: 500; display: block; }
        .opt-row .inc { color: var(--leaf-dark); font-weight: 900; font-size: 12px; white-space: nowrap; }

        /* シミュレーター */
        .sim { max-width: 720px; margin: 44px auto 0; padding: 24px 20px 26px; }
        .sim h3 { text-align: center; font-size: 19px; font-weight: 900; }
        .sim .sim-lead { text-align: center; font-size: 13px; color: var(--sub); margin-top: 6px; }
        .sim-plans { display: grid; gap: 10px; margin: 18px 0 6px; grid-template-columns: 1fr 1fr; }
        .sim-plans label {
            border: 2px solid var(--border); border-radius: 14px; padding: 12px 10px; text-align: center;
            font-size: 13px; font-weight: 900; cursor: pointer; transition: border-color .2s, background .2s;
        }
        .sim-plans label small { display: block; font-weight: 700; font-size: 11px; color: var(--muted); margin-top: 2px; }
        .sim-plans input { position: absolute; opacity: 0; pointer-events: none; }
        .sim-plans label:has(input:checked) { border-color: var(--leaf); background: rgba(108,179,122,.10); }
        .sim-opts { display: grid; gap: 6px; margin-top: 14px; }
        .sim-opt {
            display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px;
            border: 1px solid var(--border); font-size: 13px; cursor: pointer; background: #fff;
        }
        .sim-opt.off { opacity: .45; cursor: not-allowed; }
        .sim-opt .nm2 { flex: 1; font-weight: 700; }
        .sim-opt .pr2 { font-weight: 900; font-size: 12.5px; white-space: nowrap; }
        .sim-opt .pr2.inc { color: var(--leaf-dark); }
        .sim-total {
            margin-top: 18px; background: var(--ink); color: #fff; border-radius: 16px; padding: 18px;
            text-align: center;
        }
        .sim-total .lbl { font-size: 12px; color: #a9c4b6; font-weight: 700; }
        .sim-total .big { font-size: 34px; font-weight: 900; line-height: 1.3; }
        .sim-total .big small { font-size: 14px; font-weight: 700; }
        .sim-total .day { font-size: 13px; color: #cfe4d7; font-weight: 700; }
    

/* ===== もとの <style> #5（body 内） ===== */
        /* =================== FAQ =================== */
        .faq { max-width: 760px; margin: 34px auto 0; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-q {
            width: 100%; text-align: left; padding: 18px 34px 18px 4px; font-size: 15px; font-weight: 900;
            position: relative; line-height: 1.6;
        }
        .faq-q::after {
            content: '＋'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
            color: var(--leaf-dark); font-weight: 900; transition: transform .25s;
        }
        .faq-item.open .faq-q::after { content: '−'; }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
        .faq-a p { font-size: 14px; color: var(--sub); padding: 0 4px 18px; }

        /* =================== 最終CTA =================== */
        .last-cta { background: var(--ink); color: #fff; text-align: center; --edge-fill: var(--paper); }
        .last-cta img.mark { width: 132px; margin: 0 auto 18px; display: block; }
        .last-cta h2 { font-size: clamp(24px, 6.6vw, 40px); font-weight: 900; line-height: 1.5; }
        .last-cta p { color: #b8d2c4; margin-top: 14px; font-size: 15px; }
        .last-cta .cta-sub { color: #90ab9d; }
        .last-cta .lowest-line {
            display: inline-block; margin: 22px auto 24px; padding: 12px 22px; border-radius: 16px;
            background: rgba(255,255,255,.07); border: 1px dashed rgba(255,255,255,.28); font-size: 13.5px; font-weight: 700;
        }
        .last-cta .lowest-line b { color: #9fe0b1; font-size: 18px; }

        /* =================== フッター =================== */
        .site-footer { background: #0a2c21; color: #86a294; padding: 34px 0 96px; text-align: center; font-size: 12.5px; }
        .site-footer a { color: #b9d2c5; }
        .site-footer a:hover { text-decoration: underline; }
        .site-footer span { margin: 0 8px; opacity: .4; }
        .site-footer .cp { margin-top: 12px; font-size: 11px; opacity: .7; }

        /* =================== 追従CTA =================== */
        .float-cta {
            position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
            background: rgba(245, 241, 228, .94); backdrop-filter: blur(10px); border-top: 1px solid var(--border);
            transform: translateY(120%); transition: transform .3s cubic-bezier(.16,1,.3,1);
        }
        .float-cta.show { transform: translateY(0); }
        .float-cta a {
            display: block; text-align: center; background: var(--line); color: #fff; font-weight: 900; font-size: 16px;
            padding: 14px; border-radius: 999px; box-shadow: 0 8px 20px rgba(6,199,85,.32);
        }
        .float-cta .fc-note { display: block; text-align: center; font-size: 10.5px; color: var(--muted); margin-top: 5px; }
        /* PCでは画面幅いっぱいに帯を出すと本文を隠しすぎるので、中央の帯に絞る */
        @media (min-width: 900px) {
            .float-cta {
                left: 50%; right: auto; transform: translate(-50%, 120%);
                width: 420px; border: 1px solid var(--border); border-bottom: 0;
                border-radius: 20px 20px 0 0;
            }
            .float-cta.show { transform: translate(-50%, 0); }
        }
        .sim-plans label.sel { border-color: var(--leaf); background: rgba(108,179,122,.10); }
    

/* ===== もとの <style> #6（body 内） ===== */
        /* =========================================================================
           装飾レイヤー（背景）
           - 追加画像なしで奥行きを作る。すべて CSS と inline SVG で完結させる。
           - .deco 配下は装飾専用。読み上げ・操作の対象にしないので aria-hidden。
           - 本文は .wrap（z-index:2）に載るので、装飾がテキストの上に来ることはない。
           ========================================================================= */
        .wrap { position: relative; z-index: 2; }
        .deco { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }

        /* --- 紙のざらつき：全面に薄くかけて、フラットな塗りを紙に寄せる --- */
        body::before {
            content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
            opacity: .055; mix-blend-mode: multiply;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 180px 180px;
        }

        /* --- 色の雲：輪郭をぼかした面で、余白に温度をつける --- */
        .blob { position: absolute; border-radius: 50%; filter: blur(64px); }
        .b-leaf { background: radial-gradient(circle, rgba(108,179,122,.55) 0%, rgba(108,179,122,0) 70%); }
        .b-warm { background: radial-gradient(circle, rgba(224,145,47,.34) 0%, rgba(224,145,47,0) 70%); }
        .b-sky  { background: radial-gradient(circle, rgba(140,171,216,.36) 0%, rgba(140,171,216,0) 70%); }
        .b-glow { background: radial-gradient(circle, rgba(159,224,177,.34) 0%, rgba(159,224,177,0) 70%); filter: blur(78px); }

        /* --- 輪郭だけの円：紙面に線の要素を足して、塗りだけの単調さを崩す --- */
        .ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(15,61,46,.09); }
        .safe-sec .ring, .last-cta .ring { border-color: rgba(255,255,255,.09); }

        /* --- ドット／方眼：面ではなく「紙の種類」で場面を分ける --- */
        .dots {
            position: absolute; opacity: .5;
            background-image: radial-gradient(rgba(15,61,46,.16) 1.4px, transparent 1.4px);
            background-size: 17px 17px;
            -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 72%);
            mask-image: radial-gradient(ellipse at center, #000 20%, transparent 72%);
        }
        .grid {
            position: absolute; inset: 0; opacity: .5;
            background-image:
                linear-gradient(rgba(15,61,46,.055) 1px, transparent 1px),
                linear-gradient(90deg, rgba(15,61,46,.055) 1px, transparent 1px);
            background-size: 34px 34px;
            -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
            mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
        }
        /* 濃緑地は等高線で。ドットだと粒が浮いて安っぽく見える */
        .topo {
            position: absolute; inset: 0; opacity: .5;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%239fe0b1' stroke-opacity='.16' stroke-width='1'%3E%3Cpath d='M-20 60 C40 20 100 100 160 60 S260 20 300 70'/%3E%3Cpath d='M-20 120 C40 80 100 160 160 120 S260 80 300 130'/%3E%3Cpath d='M-20 180 C40 140 100 220 160 180 S260 140 300 190'/%3E%3Cpath d='M-20 240 C40 200 100 280 160 240 S260 200 300 250'/%3E%3C/g%3E%3C/svg%3E");
            background-size: 240px 240px;
            -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
            mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
        }

        /* --- きらめき：4方向に伸びる十字。ロゴのスパークルと形をそろえる --- */
        .spark {
            position: absolute; width: 26px; height: 26px; opacity: .55;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0 C13 8 16 11 24 12 C16 13 13 16 12 24 C11 16 8 13 0 12 C8 11 11 8 12 0 Z' fill='%234f9760'/%3E%3C/svg%3E") center/contain no-repeat;
            animation: twinkle 4.5s ease-in-out infinite;
        }
        .last-cta .spark { filter: brightness(2.2); opacity: .5; }
        @keyframes twinkle {
            0%, 100% { opacity: .18; transform: scale(.75) rotate(0deg); }
            50% { opacity: .7; transform: scale(1) rotate(15deg); }
        }

        /* --- 浮かぶレシート：主題（レシートを送る）を背景でも繰り返す --- */
        .rcpt {
            position: absolute; width: 56px; height: 72px; background: #fff;
            border: 1px solid var(--border); border-radius: 5px 5px 0 0;
            box-shadow: 0 12px 24px rgba(15,61,46,.10);
            animation: floaty 11s ease-in-out infinite;
        }
        .rcpt::before {
            content: ''; position: absolute; left: 9px; right: 9px; top: 11px; bottom: 12px;
            background: repeating-linear-gradient(180deg, rgba(15,61,46,.16) 0 2px, transparent 2px 9px);
        }
        /* 下辺のギザギザ（切り取り線）を三角の連続でつくる */
        .rcpt::after {
            content: ''; position: absolute; left: -1px; right: -1px; bottom: -6px; height: 7px;
            background: linear-gradient(-45deg, transparent 50%, #fff 50%) 0 0 / 9px 14px repeat-x;
            filter: drop-shadow(0 1px 0 var(--border));
        }
        @keyframes floaty {
            0%, 100% { transform: translateY(0) rotate(var(--rot, -8deg)); }
            50% { transform: translateY(-18px) rotate(calc(var(--rot, -8deg) * -0.6)); }
        }

        /* =================== セクションの縁（波） =================== */
        .edge { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 1; pointer-events: none; }
        .edge svg { display: block; width: 100%; height: 46px; }
        .edge svg path { fill: var(--edge-fill, var(--cream)); }
        .edge--top { top: -1px; }
        .edge--bottom { bottom: -1px; }
        @media (min-width: 768px) { .edge svg { height: 64px; } }

        .sec-paper { background: var(--paper); }
        .sec-paper--nobottom { padding-bottom: 0; }

        /* =================== ヒーロー =================== */
        .hero { padding-bottom: 96px; }
        /* 後光。ロゴとキャラクターの背後に置いて、主役の周りだけ明るくする */
        .sun {
            position: absolute; top: 4%; left: 50%; width: min(560px, 116vw); aspect-ratio: 1;
            transform: translateX(-50%); border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,.95) 0%, rgba(255,253,246,.6) 42%, rgba(245,241,228,0) 70%);
        }
        .hb1 { top: -6%; left: -18%; width: 62%; aspect-ratio: 1; }
        .hb2 { top: 24%; right: -20%; width: 58%; aspect-ratio: 1; }
        .hb3 { bottom: 4%; left: 8%; width: 46%; aspect-ratio: 1; }
        .hr1 { top: 8%; right: 6%; width: 116px; aspect-ratio: 1; }
        .hr2 { bottom: 18%; left: -6%; width: 172px; aspect-ratio: 1; border-style: dashed; }
        /* 稜線。2枚重ねて、ヒーローの足元に地面をつくる */
        .hill { position: absolute; left: -6%; right: -6%; bottom: 0; border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
        .hill-b { height: 122px; background: rgba(108,179,122,.13); transform: translateY(26px); }
        .hill-f { height: 92px; background: rgba(108,179,122,.20); transform: translateY(38px); }
        .r1 { --rot: -12deg; top: 15%; left: 3%; }
        .r2 { --rot: 10deg; top: 8%; right: 3%; animation-delay: -3.5s; }
        .r3 { --rot: -7deg; bottom: 12%; left: 3%; animation-delay: -7s; }
        @media (max-width: 600px) { .r3 { display: none; } }
        .s1 { top: 12%; left: 22%; }
        .s2 { top: 22%; right: 20%; animation-delay: -1.4s; }
        .s3 { bottom: 26%; left: 12%; animation-delay: -2.8s; }
        .hero-art > img { filter: drop-shadow(0 22px 34px rgba(15,61,46,.18)); }

        /* =================== 各セクションの雲・柄の置き場所 =================== */
        .pb1 { top: -8%; right: -14%; width: 54%; aspect-ratio: 1; }
        .pb2 { bottom: -10%; left: -12%; width: 50%; aspect-ratio: 1; }
        .dg1 { top: 8%; left: 4%; width: 220px; height: 220px; }
        .sb1 { top: 12%; right: -10%; width: 44%; aspect-ratio: 1; }
        .sr1 { bottom: 8%; left: 4%; width: 148px; aspect-ratio: 1; border-style: dashed; }
        .db1 { top: 2%; left: -12%; width: 50%; aspect-ratio: 1; }
        .db2 { bottom: 6%; right: -14%; width: 54%; aspect-ratio: 1; }
        .dg2 { bottom: 10%; left: 2%; width: 240px; height: 240px; }
        .dr1 { top: 14%; right: 5%; width: 128px; aspect-ratio: 1; }
        .s4 { top: 10%; right: 16%; }
        .fb1 { top: 20%; left: -12%; width: 46%; aspect-ratio: 1; }
        .fr1 { top: 10%; right: 4%; width: 160px; aspect-ratio: 1; }
        .ab1 { top: 10%; right: -10%; width: 48%; aspect-ratio: 1; }
        .dg3 { bottom: 6%; right: 4%; width: 200px; height: 200px; }
        .s5 { top: 18%; left: 14%; }
        .gb1 { top: -8%; left: -10%; width: 56%; aspect-ratio: 1; }
        .gb2 { bottom: -6%; right: -12%; width: 52%; aspect-ratio: 1; }
        .kr1 { top: 12%; right: 6%; width: 180px; aspect-ratio: 1; border-style: dashed; }
        .prb1 { top: 6%; right: -14%; width: 52%; aspect-ratio: 1; }
        .prb2 { bottom: 8%; left: -12%; width: 46%; aspect-ratio: 1; }
        .dg4 { top: 30%; left: 3%; width: 180px; height: 180px; }
        .qb1 { top: 10%; right: -12%; width: 44%; aspect-ratio: 1; }
        .lb1 { top: -10%; left: 12%; width: 50%; aspect-ratio: 1; }
        .lb2 { bottom: -12%; right: 6%; width: 46%; aspect-ratio: 1; }
        .s6 { top: 16%; left: 16%; }
        .s7 { bottom: 22%; right: 18%; animation-delay: -2.2s; }

        /* =================== 仕上げ：見出しとカードの作り込み =================== */
        /* 小見出しの両側に罫を引いて、単体のタグより「章の入口」に見せる。
           .sec-title を inline-block にしたので、ラベルはブロックレベルにして行を分ける */
        .eyebrow { position: relative; display: table; }
        .center .eyebrow { margin-left: auto; margin-right: auto; }
        .center .eyebrow::before, .center .eyebrow::after {
            content: ''; position: absolute; top: 50%; width: 26px; height: 1px;
            background: currentColor; opacity: .38;
        }
        .center .eyebrow::before { right: 100%; margin-right: 12px; }
        .center .eyebrow::after { left: 100%; margin-left: 12px; }

        /* 見出しの下に手書き風の下線を敷く */
        .sec-title { position: relative; display: inline-block; }
        .sec-title::after {
            content: ''; position: absolute; left: 8%; right: 8%; bottom: -14px; height: 9px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 9' preserveAspectRatio='none'%3E%3Cpath d='M2 6 C40 1 70 8 104 4 C138 0 170 6 198 3' fill='none' stroke='%236cb37a' stroke-opacity='.55' stroke-width='3.4' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
        }
        .safe-sec .sec-title::after { opacity: .85; }
        .last-cta h2 { position: relative; display: inline-block; }
        .last-cta h2::after {
            content: ''; position: absolute; left: 10%; right: 10%; bottom: -16px; height: 9px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 9' preserveAspectRatio='none'%3E%3Cpath d='M2 6 C40 1 70 8 104 4 C138 0 170 6 198 3' fill='none' stroke='%239fe0b1' stroke-opacity='.8' stroke-width='3.4' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
        }
        .last-cta p { margin-top: 30px; }

        /* カードの影を2枚重ねにして、紙が浮いている感じを出す */
        .card {
            box-shadow: 0 1px 2px rgba(15,61,46,.05), 0 14px 32px -12px rgba(15,61,46,.16);
            background-image: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,0) 120px);
        }
        .plan.reco { box-shadow: 0 2px 4px rgba(79,151,96,.12), 0 24px 50px -18px rgba(79,151,96,.34); }
        .phone-body { box-shadow: 0 4px 8px rgba(15,61,46,.10), 0 34px 60px -22px rgba(15,61,46,.42); }

        @media (prefers-reduced-motion: reduce) {
            .rcpt, .spark { animation: none; }
        }
    

/* ===== もとの <style> #7（body 内） ===== */
        /* =========================================================================
           追加セクション（会計ソフトとの違い／対象／契約条件／運営者／はじめかた）
           ========================================================================= */

        /* --- 会計ソフトとの違い --- */
        .cmp { margin-top: 34px; overflow: hidden; }
        .cmp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 13.5px; }
        .cmp-row:last-child { border-bottom: 0; }
        .cmp-k { grid-column: 1 / -1; font-weight: 900; font-size: 12px; color: var(--muted); letter-spacing: .04em; margin-bottom: 6px; }
        .cmp-a, .cmp-b { border-radius: 12px; padding: 10px 12px; line-height: 1.7; }
        .cmp-a { background: #f2efe4; color: var(--sub); }
        .cmp-b { background: rgba(108,179,122,.14); color: var(--ink); }
        .cmp-a small, .cmp-b small { display: block; font-size: 10.5px; color: var(--muted); font-weight: 500; }
        .cmp-head { background: #faf7ec; padding-top: 12px; padding-bottom: 12px; }
        .cmp-head .cmp-a, .cmp-head .cmp-b { text-align: center; font-weight: 900; font-size: 13px; padding: 7px 10px; }
        .cmp-head .cmp-b { background: var(--leaf-dark); color: #fff; }
        @media (min-width: 760px) {
            .cmp-row { grid-template-columns: 190px 1fr 1fr; gap: 0 14px; align-items: center; }
            .cmp-k { grid-column: auto; margin-bottom: 0; font-size: 13px; color: var(--ink-2); }
            .cmp-head .cmp-k { color: transparent; }
        }

        /* --- 契約条件 --- */
        .terms-note { max-width: 720px; margin: 34px auto 0; padding: 22px 22px 24px; }
        .terms-note h3 { font-size: 16px; font-weight: 900; margin-bottom: 12px; }
        .terms-note ul { list-style: none; display: grid; gap: 9px; }
        .terms-note li { font-size: 13.5px; color: var(--sub); line-height: 1.75; padding-left: 18px; position: relative; }
        .terms-note li::before { content: ''; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 2px; background: var(--warn); }
        .terms-note li b { color: var(--ink); }
        .terms-note .note { margin-top: 12px; }
        .terms-note .note a { text-decoration: underline; }

        /* --- はじめかた：料金が発生する地点を、流れの中で示す --- */
        .flow { display: grid; gap: 12px; margin-top: 34px; align-items: stretch; }
        @media (min-width: 820px) { .flow { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; } }
        .flow-step { background: var(--paper); border: 1px solid var(--border); border-radius: 18px; padding: 20px 18px 18px; text-align: center; }
        .flow-step--pay { border: 2px solid var(--warn); background: var(--warn-bg); }
        .flow-no { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--paper); font-weight: 900; font-size: 14px; margin-bottom: 10px; }
        .flow-step--pay .flow-no { background: var(--warn); }
        .flow-step h3 { font-size: 16px; font-weight: 900; margin-bottom: 6px; }
        .flow-step p { font-size: 13px; color: var(--sub); line-height: 1.7; }
        .flow-tag { display: inline-block; margin-top: 11px; font-size: 11.5px; font-weight: 900; padding: 5px 13px; border-radius: 999px; }
        .flow-tag.free { background: rgba(108,179,122,.18); color: var(--leaf-dark); }
        .flow-tag.pay { background: var(--warn); color: #fff; }
        .flow-arrow { display: none; color: var(--muted); font-size: 20px; }
        @media (min-width: 820px) { .flow-arrow { display: block; } }

        /* --- 押さえておく日付 --- */
        .dates { max-width: 760px; margin: 34px auto 0; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px 20px; box-shadow: var(--shadow); }
        .dates-ttl, .need-ttl { font-size: 16px; font-weight: 900; margin-bottom: 14px; }
        .date-row { display: grid; gap: 4px 16px; padding: 13px 0; border-bottom: 1px dashed var(--border); }
        .date-row:last-child { border-bottom: 0; }
        @media (min-width: 640px) { .date-row { grid-template-columns: 128px 1fr; align-items: start; } }
        .date-k { font-weight: 900; font-size: 14px; color: var(--leaf-dark); line-height: 1.5; }
        .date-v { font-size: 13.5px; color: var(--sub); line-height: 1.8; }
        .date-row--warn .date-k { color: #a8701c; }
        .date-row--warn .date-v b { color: var(--ink); }
        /* 1月末はどちらのプランにもある期限ではないので、日付の脇にプラン名を出す */
        .date-plan {
            display: block; margin-top: 3px; font-size: 10.5px; font-weight: 900; letter-spacing: .04em;
            color: var(--muted);
        }
        .date-row--warn .date-plan { color: #a8701c; }
        .date-row--free .date-k { color: var(--leaf-dark); }
        .date-row--free .date-v b { color: var(--ink); }

        /* --- ご用意いただくもの --- */
        .need { max-width: 760px; margin: 20px auto 0; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px 22px; box-shadow: var(--shadow); }
        .need-grid { display: grid; gap: 10px; }
        @media (min-width: 640px) { .need-grid { grid-template-columns: 1fr 1fr; } }
        .need-item { background: #faf7ec; border-radius: 13px; padding: 13px 15px; }
        .need-item b { display: block; font-size: 14px; margin-bottom: 3px; }
        .need-item small { font-size: 12px; color: var(--sub); line-height: 1.7; }
    

/* ===== もとの <style> #8（body 内） ===== */
        /* =========================================================================
           ポップ化：作画ルールをキャラクターに合わせる（ステッカーシート）
           - ロゴのヤギは「太い輪郭線＋白フチのステッカー」として描かれている。
             ページ側も同じ作画（太い輪郭・ずらした硬い影・フラットな面）に揃える。
           - 背景のぼかした雲は、やわらかいSaaSの顔でポップとは別方向なので、
             網点・輪郭だけの図形・紙吹雪・波線といったフラットな要素に置き換える。
           - アクセントはセクションごとに1色（--acc）。全体に散らすと騒がしくなるため、
             1セクション1色の規則にして、装飾もその色を参照する。
           ========================================================================= */
        :root {
            --ink: #123c2b;
            --ink-2: #2f5f49;
            --sub: #4f7563;
            --muted: #86a394;
            --cream: #e3f1de;      /* ページ地：ピスタチオ。温かいクリームから振り替える */
            --paper: #fffdf6;
            --leaf: #57bf6a;
            --leaf-dark: #35914c;
            --sun: #ffc93c;
            --coral: #ff7a59;
            --sky: #4fb8ef;
            --border: var(--ink);
            --acc: var(--leaf);
            --shadow: 4px 4px 0 var(--ink);
            --radius: 20px;
        }

        body {
            background: var(--cream);
            background-image: none;
            font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
        }
        /* 地に薄く網点を敷いて、ベタ塗りの面を印刷物に寄せる */
        body::after {
            content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
            background-image: radial-gradient(rgba(18,60,43,.10) 1.5px, transparent 1.6px);
            background-size: 15px 15px;
        }

        /* --- 見出しはロゴと同じ太丸ゴシックで --- */
        .hero h1, .sec-title, .last-cta h2, .act-copy h2,
        .plan h3, .plan .amount .yen, .sim-total .big, .demo-lead-card h3 {
            font-family: 'Mochiy Pop One', 'Zen Maru Gothic', sans-serif;
            font-weight: 400;
        }
        .hero h1 { line-height: 1.42; letter-spacing: .01em; }
        .sec-title { line-height: 1.5; }

        /* --- ステッカーの作画：太い輪郭＋ずらした硬い影 --- */
        .card, .pain, .step, .fn, .terms-note, .dates, .need, .flow-step,
        .opt-list, .sim, .ask, .cmp, .plan, .demo-lead-card, .hero-price {
            border: 2.5px solid var(--ink) !important;
            box-shadow: var(--shadow) !important;
            background-image: none !important;
        }
        .plan.reco { box-shadow: 6px 6px 0 var(--leaf-dark) !important; }
        .flow-step--pay { box-shadow: 4px 4px 0 var(--coral) !important; }
        .phone-body { border-width: 3px; box-shadow: 6px 6px 0 var(--ink); }

        /* --- ラベルは傾けたステッカーに --- */
        .eyebrow {
            background: var(--acc); color: var(--ink); border: 2.5px solid var(--ink);
            box-shadow: 3px 3px 0 var(--ink); transform: rotate(-2deg);
            padding: 6px 16px; letter-spacing: .1em;
        }
        .center .eyebrow::before, .center .eyebrow::after { display: none; }
        .act-copy .act-no, .step .who, .tl-item .tl-tag, .flow-tag, .plan .tag, .price-lowest {
            border: 2px solid var(--ink); box-shadow: 2px 2px 0 var(--ink);
        }
        .act-copy .act-no { background: var(--sky); color: var(--ink); }
        .step .who { background: var(--sun); color: var(--ink); }
        .step .who.ai { background: var(--coral); color: #fff; }
        .tl-item .tl-tag { background: var(--paper); color: var(--ink); }
        .plan .tag { background: var(--sun); color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }
        .demo-count { color: var(--ink); }

        /* --- ボタンも同じ作画に。押すと影に沈む --- */
        .cta-btn, .hd-cta, .float-cta a {
            border: 2.5px solid var(--ink); border-bottom-width: 2.5px;
            box-shadow: 4px 4px 0 var(--ink); transition: transform .12s, box-shadow .12s;
        }
        .cta-btn:hover, .float-cta a:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
        .cta-btn:active, .float-cta a:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
        .hd-cta { box-shadow: 3px 3px 0 var(--ink); }

        /* --- 見出し下の手書き線は、セクション色で引く --- */
        .sec-title::after {
            background: none; height: 10px; border-radius: 6px;
            background-color: var(--acc); opacity: .55; bottom: -12px;
        }
        .safe-sec .sec-title::after, .last-cta h2::after { opacity: .9; }

        /* =================== 背景：フラットなポップ要素に置き換える =================== */
        .blob { display: none; }             /* ぼかした雲はやめる */
        body::before { display: none; }      /* ざらつきも網点に置き換わるので消す */

        .ring { border: 3px solid var(--acc); opacity: .5; }
        .safe-sec .ring, .last-cta .ring { border-color: rgba(255,255,255,.22); opacity: 1; }

        .dots {
            opacity: .85;
            background-image: radial-gradient(var(--acc) 2.6px, transparent 2.7px);
            background-size: 19px 19px;
            -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
            mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
        }
        .grid {
            opacity: .6;
            background-image:
                linear-gradient(rgba(18,60,43,.10) 2px, transparent 2px),
                linear-gradient(90deg, rgba(18,60,43,.10) 2px, transparent 2px);
            background-size: 40px 40px;
        }
        .topo { opacity: .35; }

        .spark {
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0 C13 8 16 11 24 12 C16 13 13 16 12 24 C11 16 8 13 0 12 C8 11 11 8 12 0 Z' fill='%23ffc93c' stroke='%23123c2b' stroke-width='1.2'/%3E%3C/svg%3E") center/contain no-repeat;
            width: 32px; height: 32px; opacity: 1;
        }

        /* レシートもステッカーの作画に揃える */
        .rcpt {
            border: 2.5px solid var(--ink); border-radius: 6px 6px 0 0;
            box-shadow: 4px 4px 0 rgba(18,60,43,.25);
        }
        .rcpt::before { background: repeating-linear-gradient(180deg, rgba(18,60,43,.28) 0 2.5px, transparent 2.5px 9px); }
        .rcpt::after { filter: drop-shadow(0 1.5px 0 var(--ink)); }

        /* 紙吹雪と波線。フラットな図形だけで賑やかさを作る */
        .confetti { position: absolute; border-radius: 4px; border: 2px solid var(--ink); }
        .squiggle {
            position: absolute; height: 20px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='20' viewBox='0 0 120 20'%3E%3Cpath d='M0 10 Q15 0 30 10 T60 10 T90 10 T120 10' fill='none' stroke='%23123c2b' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center/120px 20px;
            opacity: .35;
        }
        .safe-sec .squiggle, .last-cta .squiggle { filter: invert(1) brightness(2); opacity: .22; }

        /* --- ヒーローの地面と後光もフラットに --- */
        .sun { background: radial-gradient(circle, var(--paper) 0%, var(--paper) 46%, transparent 47%); opacity: .85; }
        .hill-b { background: var(--leaf); opacity: .28; }
        .hill-f { background: var(--leaf); opacity: .45; border-top: 3px solid var(--ink); }

        /* =================== セクションの縁：スカラップ（丸い連続の凸） =================== */
        .edge svg { display: none; }
        .edge { height: 22px; }
        .edge--top { top: 0; background: radial-gradient(circle at 16px 0, var(--edge-fill, var(--cream)) 15px, transparent 15.5px) 0 0/32px 22px repeat-x; }
        .edge--bottom { bottom: 0; background: radial-gradient(circle at 16px 22px, var(--edge-fill, var(--cream)) 15px, transparent 15.5px) 0 0/32px 22px repeat-x; }

        /* =================== セクションごとのアクセント =================== */
        #pain { --acc: var(--coral); }
        #steps { --acc: var(--sun); }
        .demo-act-sec { --acc: var(--sky); background: var(--cream); }
        #compare { --acc: var(--sun); }
        #features { --acc: var(--coral); }
        #ask { --acc: var(--sky); }
        #target { --acc: var(--leaf); }
        #price { --acc: var(--sun); }
        #start { --acc: var(--coral); }
        #faq { --acc: var(--sky); }
        .safe-sec { --acc: var(--sun); }
        .last-cta { --acc: var(--sun); }

        /* --- 個別の調整 --- */
        .sec-paper { background: var(--paper); }
        .demo-lead-card { background: var(--sun); border-color: var(--ink); }
        .demo-lead-card p { color: var(--ink); }
        .hero-price { border-style: solid; background: var(--paper); }
        .cmp-a { background: #eef1e9; }
        .cmp-b { background: rgba(87,191,106,.24); }
        .cmp-head .cmp-a { background: var(--paper); border: 2px solid var(--ink); }
        .cmp-head .cmp-b { background: var(--leaf); color: var(--ink); border: 2px solid var(--ink); }
        .cmp-row { border-bottom: 2px dashed rgba(18,60,43,.18); }
        .opt-row { border-bottom: 2px dashed rgba(18,60,43,.18); }
        .faq-item { border-bottom: 2px dashed rgba(18,60,43,.2); }
        .date-row { border-bottom: 2px dashed rgba(18,60,43,.18); }
        .hero-badges span { border-width: 2px; }
        .site-header { border-bottom-width: 2.5px; }
        .need-item, .sim-opt, .demo-fact {
            border: 2px solid var(--ink);
        }
        .sim-opt { box-shadow: 2px 2px 0 rgba(18,60,43,.35); }
        .sim-plans label { border: 2.5px solid var(--ink); box-shadow: 3px 3px 0 rgba(18,60,43,.3); }
        .sim-plans label.sel, .sim-plans label:has(input:checked) { background: var(--sun); box-shadow: 3px 3px 0 var(--ink); }
        .sim-total { border: 2.5px solid var(--ink); box-shadow: 4px 4px 0 var(--leaf-dark); }

        @media (prefers-reduced-motion: reduce) {
            .confetti, .squiggle { animation: none; }
        }
    

/* ===== もとの <style> #9（body 内） ===== */
        /* --- 締切バー --- */
        .deadline {
            background: var(--sun); border-top: 2.5px solid var(--ink);
            padding: 8px 0;
        }
        /* バーが出るぶん、ヒーローの上余白を足す（固定ヘッダーが高くなるため） */
        body.has-deadline .hero { padding-top: 168px; }
        @media (max-width: 560px) { body.has-deadline .hero { padding-top: 196px; } }
        .deadline .wrap {
            display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
            text-align: center;
        }
        .dl-label {
            font-size: 11.5px; font-weight: 900; background: var(--ink); color: var(--sun);
            padding: 3px 11px; border-radius: 999px; white-space: nowrap;
        }
        /* この期限は税理士プランのものなので、ラベル自体にプラン名を持たせる */
        .dl-label small { margin-left: 6px; font-size: 9.5px; opacity: .85; }
        .dl-main { font-size: 14.5px; font-weight: 900; color: var(--ink); }
        .dl-main b { font-size: 19px; }
        .dl-note { font-size: 11.5px; color: #7a5c14; font-weight: 700; }
        @media (max-width: 560px) { .dl-note { width: 100%; } }

        /* --- 時間換算 --- */
        .hours { max-width: 760px; margin: 34px auto 0; padding: 24px 20px 26px; }
        .hours-ttl { text-align: center; font-size: 18px; font-weight: 900; }
        .hours-lead { text-align: center; font-size: 13.5px; color: var(--sub); margin-top: 8px; }
        .hours-grid { display: grid; gap: 10px; margin-top: 20px; }
        @media (min-width: 640px) { .hours-grid { grid-template-columns: repeat(3, 1fr); } }
        .hours-item { background: #faf7ec; border: 2px solid var(--ink); border-radius: 14px; padding: 15px 12px; text-align: center; }
        .hours-item .hi-k { display: block; font-size: 12.5px; font-weight: 700; color: var(--sub); }
        .hours-item .hi-v { display: block; font-size: 30px; font-weight: 900; line-height: 1.3; color: var(--ink); font-variant-numeric: tabular-nums; }
        .hours-item .hi-v small { font-size: 14px; }
        .hours-item .hi-n { display: block; font-size: 11.5px; color: var(--muted); margin-top: 2px; }
        .hours-note { margin-top: 16px; font-size: 11.5px; color: var(--muted); line-height: 1.8; text-align: center; }
    

/* ===== もとの <style> #10（body 内） ===== */
        /* =========================================================================
           レシートを「装飾」ではなく「素材」にする
           - このサービスの主題はレシートそのもの。カードをレシート紙として組むと、
             まわりのポップな図形より確実に「このサービスらしさ」が出る。
           - レシートは角丸ではないので、角を立てる。ページ中の丸みが一段落ちて、
             どこかで見たようなカード一覧の顔から離れる。
           - 金額は等幅・右揃え。実際のレシートの組み方に合わせる。
           ========================================================================= */

        /* --- 紙そのもの --- */
        .receipt {
            background: #fffdf7;
            border: 2.5px solid var(--ink) !important;
            border-bottom: 0 !important;
            border-radius: 3px 3px 0 0 !important;
            box-shadow: 4px 4px 0 var(--ink) !important;
            padding-bottom: 26px !important;
            position: relative;
        }
        /* 下辺のギザギザ（切り取られた側）。三角の連続で作り、輪郭は drop-shadow で足す */
        .receipt::after {
            content: ''; position: absolute; left: -2.5px; right: -2.5px; bottom: -9px; height: 11px;
            background: linear-gradient(-45deg, transparent 50%, #fffdf7 50%) 0 0 / 14px 22px repeat-x;
            filter: drop-shadow(0 2.5px 0 var(--ink));
        }
        /* 影はギザギザの下に回り込まないので、紙の右側だけに落とす */
        .receipt { box-shadow: 4px 2px 0 var(--ink) !important; }

        /* --- 紙の中の組み方 --- */
        .rcp-head {
            display: block; text-align: center; font-size: 11px; font-weight: 700;
            letter-spacing: .22em; color: var(--muted);
            padding-bottom: 9px; margin-bottom: 13px;
            border-bottom: 2px dashed rgba(18,60,43,.28);
        }
        .rcp-num {
            font-family: 'Roboto Mono', ui-monospace, monospace;
            font-variant-numeric: tabular-nums; font-weight: 700;
        }

        /* =================== 機能10枚：レシートの束にする =================== */
        .fn {
            border-radius: 3px 3px 0 0 !important;
            padding-bottom: 24px !important;
        }
        .fn img { width: 66px; height: 66px; }
        .fn h3 { border-top: 2px dashed rgba(18,60,43,.28); padding-top: 9px; margin-top: 10px; }
        /* 束に見えるよう、1枚ずつわずかに傾ける。**開いたときは傾けない。**
           全幅になった1枚が傾いていると、下の行がずれて見える。 */
        .fn-grid > .fn:nth-child(3n+1) { transform: rotate(-.7deg); }
        .fn-grid > .fn:nth-child(3n+2) { transform: rotate(.5deg); }
        .fn-grid > .fn:nth-child(3n+3) { transform: rotate(-.3deg); }
        .fn-grid > .fn[open] { transform: none; }

        /* =================== オプション一覧：お品書きとして組む =================== */
        .opt-list { border-radius: 3px 3px 0 0 !important; }
        .opt-row { border-bottom: 2px dashed rgba(18,60,43,.28); align-items: flex-start; }
        .opt-row .pr {
            font-family: 'Roboto Mono', ui-monospace, monospace;
            font-variant-numeric: tabular-nums; letter-spacing: -.01em;
        }
        .opt-row .pr small { font-family: 'Zen Maru Gothic', sans-serif; }

        /* =================== 料金カード：合計行のあるレシートに =================== */
        .plan { border-radius: 3px 3px 0 0 !important; }
        .plan .amount {
            border-top: 2px dashed rgba(18,60,43,.28);
            border-bottom: 4px double var(--ink);
            padding: 14px 0 12px; margin: 16px 0 4px;
        }
        .plan .amount .yen, .sim-total .big, .hours-item .hi-v {
            font-family: 'Roboto Mono', ui-monospace, monospace;
            font-variant-numeric: tabular-nums; letter-spacing: -.02em;
        }
        .plan .amount .lowest { letter-spacing: .18em; }

        /* =================== セクションの縁：ミシン目にする =================== */
        /* 丸いスカラップは可愛いだけだが、ミシン目なら「切り取り線」の意味が乗る */
        .edge { height: 16px; }
        .edge--top {
            top: 0;
            background:
                radial-gradient(circle at 9px 0, var(--edge-fill, var(--cream)) 6.5px, transparent 7px) 0 0/18px 16px repeat-x,
                linear-gradient(var(--edge-fill, var(--cream)) 0 0) 0 0/100% 4px repeat-x;
        }
        .edge--bottom {
            bottom: 0;
            background:
                radial-gradient(circle at 9px 16px, var(--edge-fill, var(--cream)) 6.5px, transparent 7px) 0 0/18px 16px repeat-x,
                linear-gradient(var(--edge-fill, var(--cream)) 0 0) 0 12px/100% 4px repeat-x;
        }

        /* =================== 背景：主題の紙で埋める =================== */
        /* ベタの網点だけだと素性が出ないので、伝票の罫と ¥ を薄く敷く */
        body::after {
            opacity: .55;
            background-image:
                radial-gradient(rgba(18,60,43,.09) 1.4px, transparent 1.5px),
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='168' height='168' viewBox='0 0 168 168'%3E%3Cg fill='none' stroke='%23123c2b' stroke-opacity='.055' stroke-width='1.4'%3E%3Cpath d='M12 30h60M12 44h44M96 128h60M96 142h40' stroke-dasharray='5 5'/%3E%3C/g%3E%3Cg fill='%23123c2b' fill-opacity='.05' font-family='monospace' font-size='17' font-weight='700'%3E%3Ctext x='118' y='46'%3E¥%3C/text%3E%3Ctext x='26' y='140'%3E¥%3C/text%3E%3C/g%3E%3C/svg%3E");
            background-size: 15px 15px, 168px 168px;
        }

        /* 紙吹雪は数を絞り、代わりに漂うレシートを増やす */
        .confetti { opacity: .8; }
        .rcpt { box-shadow: 4px 3px 0 rgba(18,60,43,.22); }
    

/* ===== もとの <style> #11（body 内） ===== */
        /* =========================================================================
           散らす／効かせる
           - 全部が水平・整列だと、きれいだが大人しい。傾いた帯と、角度のばらけた要素で
             紙が散らばっている状態をつくる。
           - 濃い帯を入れて明暗の差をつける。薄い面ばかりだと締まらない。
           ========================================================================= */

        /* --- 明細テープ：レシートが流れ続けている帯 --- */
        .tape {
            background: var(--ink); color: #dff0e4;
            border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
            padding: 11px 0; overflow: hidden; position: relative; z-index: 4;
            transform: rotate(-1.4deg) scale(1.035);
            margin: -14px 0;
        }
        .tape--rev { transform: rotate(1.4deg) scale(1.035); }
        .tape-track {
            display: flex; align-items: center; width: max-content;
            animation: tapeRun 46s linear infinite;
        }
        .tape--rev .tape-track { animation-direction: reverse; }
        @keyframes tapeRun { to { transform: translateX(-50%); } }
        .tape-item {
            display: inline-flex; align-items: baseline; gap: 9px; padding: 0 16px;
            font-size: 13.5px; font-weight: 700; white-space: nowrap;
        }
        .tape-item .ti-n { color: #dff0e4; }
        .tape-item b {
            font-family: 'Roboto Mono', ui-monospace, monospace;
            font-variant-numeric: tabular-nums; color: var(--sun); font-size: 15px;
        }
        .tape-item .ti-c { font-size: 11px; color: #8fb8a0; }
        .tape-sep { color: rgba(255,255,255,.28); font-size: 12px; }
        @media (prefers-reduced-motion: reduce) { .tape-track { animation: none; } }

        .tape-wrap { overflow: hidden; position: relative; z-index: 4; padding: 15px 0; }
        .tape { margin: 0 !important; }
        /* --- 透かしの大文字。輪郭だけで置いて、面を締める --- */
        .wm {
            position: absolute; white-space: nowrap; pointer-events: none;
            font-family: 'Mochiy Pop One', 'Zen Maru Gothic', sans-serif;
            font-size: clamp(88px, 17vw, 210px); line-height: 1;
            color: transparent; -webkit-text-stroke: 2.5px rgba(18,60,43,.10);
            letter-spacing: -.02em;
        }
        .safe-sec .wm, .last-cta .wm { -webkit-text-stroke-color: rgba(255,255,255,.09); }

        /* --- 角度を散らす。同じ傾きが並ぶと機械的に見えるので、順番で変える --- */
        .eyebrow { transform: rotate(-2.4deg); }
        #steps .eyebrow, #features .eyebrow, #price .eyebrow { transform: rotate(1.8deg); }
        #target .eyebrow, #faq .eyebrow { transform: rotate(-1.2deg); }
        .plan .tag { transform: translateX(-50%) rotate(-2deg); }
        .step .who { transform: rotate(-1.6deg); }
        .step:nth-child(2) .who { transform: rotate(1.4deg); }
        .act-copy .act-no { transform: rotate(-2deg); }
        .act--flip .act-copy .act-no { transform: rotate(2deg); }
        .flow-step:nth-child(1) { transform: rotate(-.8deg); }
        .flow-step:nth-child(5) { transform: rotate(.8deg); }
        .hours-item:nth-child(1) { transform: rotate(-1deg); }
        .hours-item:nth-child(3) { transform: rotate(1deg); }
        .need-item:nth-child(2n) { transform: rotate(.6deg); }
        .need-item:nth-child(2n+1) { transform: rotate(-.6deg); }
        .pain:nth-child(1) { transform: rotate(-1.1deg); }
        .pain:nth-child(3) { transform: rotate(1.1deg); }

        /* --- 漂うレシートを大小・角度ともに散らす --- */
        .r1 { --rot: -16deg; width: 62px; height: 80px; }
        .r2 { --rot: 13deg; width: 48px; height: 62px; }
        .r3 { --rot: -6deg; width: 54px; height: 70px; }
        .confetti { box-shadow: 2px 2px 0 rgba(18,60,43,.35); }

        /* --- 数字は大きく、字間を詰めて効かせる --- */
        .plan .amount .yen { font-size: 46px; letter-spacing: -.045em; }
        .hours-item .hi-v { font-size: 34px; letter-spacing: -.04em; }
        .sim-total .big { letter-spacing: -.04em; }
        .dl-main b { font-family: 'Roboto Mono', ui-monospace, monospace; letter-spacing: -.03em; }
    

/* ===== もとの <style> #12（body 内） ===== */
        /* =========================================================================
           濃くする／重ねる
           - 上半分が薄い面ばかりで大人しかったので、1年タイムラインを濃緑に反転する。
             ここは「1年を通して過ごす」話なので、夜の面にすると内容とも噛み合う。
           - セクションを積むだけだと区切りが規則的すぎるので、要素を境目にまたがせる。
           ========================================================================= */

        /* --- 濃い面 --- */
        .sec-dark {
            background: var(--ink); color: #dbeee2;
            --edge-fill: var(--cream);
        }
        .sec-dark .sec-title { color: #fff; }
        .sec-dark .sec-lead { color: #a7c6b4; }
        .sec-dark .eyebrow { background: var(--sun); color: var(--ink); }
        .sec-dark .sec-title::after { opacity: .9; }
        .sec-dark .wm { -webkit-text-stroke-color: rgba(255,255,255,.09); }
        .sec-dark .squiggle { filter: invert(1) brightness(2); opacity: .2; }
        .sec-dark .ring { border-color: rgba(255,255,255,.12); }
        .sec-dark .dots { opacity: .45; }

        /* --- 重ね①：ヤギのバッジがテープ帯にまたがる --- */
        .tape-zone { position: relative; z-index: 5; }
        .tape-goat {
            position: absolute; top: 50%; width: 96px; height: 96px; border-radius: 50%;
            border: 3px solid var(--ink); background: var(--paper);
            box-shadow: 4px 4px 0 rgba(18,60,43,.35);
            transform: translateY(-50%) rotate(-8deg);
            z-index: 6; pointer-events: none;
        }
        .tape-goat.tg-a { right: 7%; }
        .tape-goat.tg-b { left: 7%; transform: translateY(-50%) rotate(7deg); }
        @media (max-width: 700px) {
            .tape-goat { width: 68px; height: 68px; border-width: 2.5px; }
            .tape-goat.tg-a { right: 5%; }
            .tape-goat.tg-b { left: 5%; }
        }

        /* --- 重ね②：セクションの境目にまたがる印 --- */
        /* カードを下へせり出させる手もあるが、そのカードがセクションの最後の要素とは
           限らず、同じセクション内の次の要素を隠してしまう。境目そのものに置く。 */
        .sec-seal {
            position: absolute; top: 0; z-index: 6; width: 104px; height: 104px;
            border-radius: 50%; border: 3px solid var(--ink); background: var(--paper);
            transform: translateY(-52%) rotate(-7deg);
            box-shadow: 4px 4px 0 rgba(18,60,43,.35); pointer-events: none;
        }
        .sec-seal--r { left: auto; right: 8%; transform: translateY(-52%) rotate(6deg); }
        .sec-seal--l { left: 8%; }
        @media (max-width: 700px) {
            .sec-seal { width: 72px; height: 72px; border-width: 2.5px; }
            .sec-seal--r { right: 6%; }
            .sec-seal--l { left: 6%; }
        }
    

/* ===== もとの <style> #13（body 内） ===== */
        /* =========================================================================
           ファーストビューにCTAを入れる
           - 実測でCTAが1.5画面目にあり、開いた直後に行動できる場所が無かった。
           - ロゴ・キャラクターを詰め、支える情報（バッジ・チル一言）はCTAの下へ回す。
             価格はCTAと同じかたまりに置いて、押す前に必ず目に入るようにする。
           ========================================================================= */
        .hero { padding-top: 92px; padding-bottom: 64px; }
        body.has-deadline .hero { padding-top: 146px; }
        @media (max-width: 560px) { body.has-deadline .hero { padding-top: 172px; } }

        .hero-for { font-size: 12px; padding: 6px 15px; margin-bottom: 14px; }
        .hero h1 { font-size: clamp(22px, 6.6vw, 50px); line-height: 1.36; }
        .hero h1 .sm2 { font-size: .46em; margin-top: 9px; }
        .hero-art { width: min(196px, 46vw); margin: 16px auto 6px; }
        .hero-sub { margin-top: 14px; font-size: 14px; line-height: 1.75; }
        .hero-sub small { font-size: 11.5px; color: var(--muted); }

        .hero-act { margin-top: 20px; }
        .hero-act .cta-sub { margin-top: 11px; line-height: 1.85; }
        .hero-yen {
            font-family: 'Roboto Mono', ui-monospace, monospace;
            font-variant-numeric: tabular-nums; font-size: 15px; color: var(--ink);
        }
        .hero-yen-sub { font-size: 12px; color: var(--sub); font-weight: 700; }
        /* 料金までは23画面ぶんある。先に値段を見たい人のための近道 */
        .hero-price-link {
            display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 900;
            color: var(--ink); border-bottom: 2.5px solid var(--sun); padding-bottom: 2px;
        }
        .hero-price-link:hover { border-bottom-color: var(--leaf); }

        .hero-badges { margin: 26px 0 0; }
        .hero-badges span { font-size: 11.5px; padding: 6px 12px; }
        .hero-chill { margin-top: 14px; }
        .hero .zzz { font-size: 15px; }
        .hero .zzz.z2 { font-size: 12px; } .hero .zzz.z3 { font-size: 10px; }

        /* --- ヘッダーの料金リンク --- */
        /* アンカーで飛んだとき、固定ヘッダーに見出しが隠れないようにする */
        section[id] { scroll-margin-top: 96px; }
        body.has-deadline section[id] { scroll-margin-top: 150px; }

        .hd-link {
            font-size: 13px; font-weight: 900; color: var(--ink);
            padding: 7px 12px; border-radius: 999px; white-space: nowrap;
            border: 2px solid var(--ink); background: var(--sun);
            box-shadow: 2px 2px 0 var(--ink); margin-right: 8px;
        }
        /* 狭い画面では、表情の出るヤギより料金リンクを優先する */
        @media (max-width: 480px) {
            .hd-goat { display: none; }
            .hd-link { font-size: 12px; padding: 6px 10px; margin-right: 6px; }
        }
    

/* ===== もとの <style> #14（body 内） ===== */
        /* =========================================================================
           ファーストビューの自動再生リール
           - ロゴはヘッダーに常時出ているので、ファーストビューは実際に動いている画に使う。
           - 特徴1→特徴4を続けて流し、何が起きているかをラベルで実況する。
           - 枠の高さは固定。中身が増えても外が動かないようにする（読んでいる最中に
             下の内容が動くのを避ける）。
           ========================================================================= */
        /* ファーストビューの主役なので、読める大きさを優先して幅をとる。
           320px→390px（狭い端末では 88vw→92vw）。 */
        .reel { margin: 18px auto 0; width: min(390px, 92vw); }

        .reel-phone {
            background: #8CABD8; border: 3px solid var(--ink); border-radius: 20px;
            box-shadow: 5px 5px 0 var(--ink); padding: 8px 8px 10px; position: relative;
        }
        .reel-bar {
            display: flex; align-items: center; gap: 7px; padding: 2px 5px 8px;
            color: #fff; font-size: 12.5px; font-weight: 700;
        }
        .reel-av { width: 25px; height: 25px; border-radius: 50%; overflow: hidden; background: #fff; flex: none; }
        .reel-av img { width: 100%; height: 100%; object-fit: cover; }

        /* 高さ固定。ここが伸び縮みすると、下のCTAの位置が動く。
           高さは「記録カード1枚＋吹き出し1つ」がちょうど収まる値にしてある。
           足りないと上の吹き出しが途中で切れ、実際のトーク画面ではなく
           描画の崩れに見える（文字を大きくしたぶん、以前の186pxでは足りない）。 */
        .reel-stage {
            height: 252px; overflow: hidden; display: flex; flex-direction: column;
            justify-content: flex-end; gap: 8px;
            /* 下辺はラベルがかぶるので、その分をあけて行が隠れないようにする */
            padding: 0 2px 56px;
        }
        /* 狭い端末でも高さは下げない。下げると記録カードの上の吹き出しが切れて、
           トーク画面ではなく描画の崩れに見える。高さより、切れないほうを優先する。 */

        .rr-msg { display: flex; flex: none; animation: rrIn .34s cubic-bezier(.16,1,.3,1); }
        .rr-msg.is-me { justify-content: flex-end; }
        @keyframes rrIn { from { opacity: 0; transform: translateY(9px) scale(.97); } to { opacity: 1; transform: none; } }

        .rr-bubble {
            background: #fff; border-radius: 14px; padding: 9px 13px; font-size: 13.5px;
            line-height: 1.6; max-width: 86%; box-shadow: 0 1px 2px rgba(0,0,0,.1);
        }
        .rr-bubble.is-me { background: #9be26c; }
        .rr-typing i {
            display: inline-block; width: 5px; height: 5px; border-radius: 50%;
            background: #b8c4bd; margin: 0 1.5px; animation: rrTp 1.2s infinite;
        }
        .rr-typing i:nth-child(2) { animation-delay: .2s } .rr-typing i:nth-child(3) { animation-delay: .4s }
        @keyframes rrTp { 0%,60%,100% { opacity: .3 } 30% { opacity: 1 } }

        .rr-card {
            background: #fff; border-radius: 12px; overflow: hidden; width: 95%;
            box-shadow: 0 2px 5px rgba(0,0,0,.12); font-size: 13px;
        }
        .rr-head { background: #f4f7f5; padding: 8px 11px; font-weight: 900; color: var(--ink); font-size: 11.5px; }
        .rr-head.is-ok { background: #e9f8ee; color: #1c7a3d; }
        .rr-head.is-fix { background: #fdf3e2; color: #a8701c; }
        .rr-row {
            display: flex; justify-content: space-between; align-items: center; gap: 8px;
            padding: 6px 11px; border-top: 1px dashed #eef1ee;
        }
        .rr-row span { color: #93a29a; flex: none; }
        .rr-row b { text-align: right; font-weight: 700; }
        .rr-row.is-warn { background: #fdf3e2; }
        .rr-row.is-warn b { color: #a8701c; }
        .rr-row.is-changed b { color: #1c7a3d; }
        /* ラベルが指したときだけ、その行を光らせる */
        .rr-row.is-spot { box-shadow: inset 0 0 0 2.5px var(--warn); border-radius: 6px; }
        .rr-chk {
            font-style: normal; font-size: 10px; font-weight: 900; padding: 1px 6px;
            border-radius: 999px; margin-left: 4px; background: #f6d9a8; color: #8a5c12;
        }
        .rr-chk.is-ok { background: #cdeed8; color: #1c7a3d; }

        /* --- 実況ラベル。枠の下辺にかぶせて出す --- */
        .reel-note {
            position: absolute; left: 8px; right: 8px; bottom: -13px;
            background: var(--sun); color: var(--ink); border: 2.5px solid var(--ink);
            border-radius: 12px; box-shadow: 3px 3px 0 var(--ink);
            font-size: 13px; font-weight: 900; line-height: 1.55; padding: 9px 13px;
            text-align: center;
            opacity: 0; transform: translateY(6px) scale(.96); transition: opacity .25s, transform .25s;
        }
        .reel-note.is-on { opacity: 1; transform: none; }
        /* 吹き出しのしっぽ */
        .reel-note::before {
            content: ''; position: absolute; top: -9px; left: 50%; margin-left: -7px;
            border: 7px solid transparent; border-top: 0; border-bottom-color: var(--ink);
        }
        .reel-note::after {
            content: ''; position: absolute; top: -5px; left: 50%; margin-left: -5px;
            border: 5px solid transparent; border-top: 0; border-bottom-color: var(--sun);
        }
        .rr-note-in { display: inline-block; animation: rrIn .3s cubic-bezier(.16,1,.3,1); }

        /* --- 特徴の名前と進み具合 --- */
        .reel-foot { margin-top: 20px; text-align: center; }
        .reel-act { font-size: 12.5px; font-weight: 900; color: var(--ink-2); min-height: 18px; }
        .reel-bars { display: flex; gap: 5px; justify-content: center; margin-top: 8px; }
        .reel-bars span {
            width: 34px; height: 5px; border-radius: 3px; background: rgba(18,60,43,.16);
            position: relative; overflow: hidden;
        }
        .reel-bars span::after {
            content: ''; position: absolute; inset: 0; width: 0; background: var(--leaf-dark);
            transition-property: width; transition-timing-function: linear;
        }
        .reel-bars span.is-run::after { width: 100%; }
        .reel-bars span.is-done::after { width: 100%; transition-duration: 0s; }

        /* リールを入れたぶん、ヒーローの他の要素を詰める */
        .hero { padding-top: 84px; }
        body.has-deadline .hero { padding-top: 138px; }
        @media (max-width: 560px) { body.has-deadline .hero { padding-top: 164px; } }
        .hero-for { margin-bottom: 12px; }
        .hero-sub { margin-top: 30px; font-size: 13.5px; }
        .hero-act { margin-top: 16px; }
        .hero-badges { margin-top: 22px; }

        @media (prefers-reduced-motion: reduce) {
            .rr-msg, .rr-note-in { animation: none; }
            .aj-goat, .aj-bite, .act-props i { animation: none; }
            .reel-bars span::after { transition: none; }
        }
    

/* ===== 会計ソフトとの違い：見えない学習コストを伝える ===== */
.compare-intro { max-width: 850px; }
.compare-lead { margin: 28px auto 0; max-width: 790px; text-align: left; color: var(--sub); font-size: 15px; line-height: 2; }
.compare-lead p + p { margin-top: 14px; }
.hidden-cost { margin: 42px auto 0; max-width: 1040px; padding: 28px 24px 30px; background: var(--paper); border: 2.5px solid var(--ink); border-radius: 24px; box-shadow: 4px 4px 0 var(--ink); text-align: center; }
.hidden-cost h3 { font-size: clamp(18px, 2.2vw, 25px); font-weight: 900; line-height: 1.6; }
.cost-chips { display: flex; align-items: stretch; justify-content: center; gap: 10px; margin-top: 22px; }
.cost-chips span { flex: 1; display: grid; place-items: center; align-content: center; min-height: 92px; padding: 12px 8px; background: #fff4d2; border: 2px solid var(--ink); border-radius: 16px; font-size: 13px; font-weight: 900; line-height: 1.5; }
.cost-chips i { display: block; margin-bottom: 5px; font-size: 24px; font-style: normal; }
.cost-chips b { align-self: center; flex: none; font-size: 22px; }
.cost-message { margin-top: 27px; font-family: 'Mochiy Pop One', 'Zen Maru Gothic', sans-serif; font-size: clamp(19px, 3vw, 30px); line-height: 1.75; }
.cost-message em { position: relative; z-index: 0; font-style: normal; }
.cost-message em::after { content: ''; position: absolute; z-index: -1; left: -4px; right: -4px; bottom: .02em; height: .42em; border-radius: 5px; opacity: .78; }
.cost-message .work::after { background: var(--sun); }
.cost-message .worry::after { background: #79d88b; }
.question-bubbles { display: flex; justify-content: center; gap: 12px; margin: 38px auto -15px; position: relative; z-index: 2; }
.question-bubbles span { position: relative; padding: 9px 15px; background: var(--paper); border: 2px solid var(--ink); border-radius: 999px; box-shadow: 2px 2px 0 var(--ink); font-size: 13px; font-weight: 900; }
.question-bubbles span::after { content: ''; position: absolute; left: 50%; bottom: -7px; width: 10px; height: 10px; background: var(--paper); border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: translateX(-50%) rotate(45deg); }
#compare .cmp { margin-top: 0; }
#compare .cmp-row { padding: 18px 18px; font-size: 14px; }
#compare .cmp-k { font-size: 14px; }
#compare .cmp-a, #compare .cmp-b { padding: 14px 15px; }
#compare .cmp-row--focus { background: #fff7d9; }
#compare .cmp-row--focus .cmp-k { font-size: 15px; }
.cmp-badge { display: table !important; width: fit-content; margin-bottom: 7px; padding: 3px 9px; border: 1.5px solid currentColor; border-radius: 999px; font-size: 11px !important; font-weight: 900 !important; line-height: 1.4 !important; }
.cmp-badge.burden { color: #9b5d2b !important; background: #fff7eb; }
.cmp-badge.relief { color: #176b36 !important; background: #effbf1; }
.plan-note { display: table !important; margin-top: 8px; padding: 4px 9px; background: var(--leaf-dark); border-radius: 6px; color: #fff !important; font-size: 12px !important; font-weight: 900 !important; line-height: 1.4 !important; }
.compare-note { margin-top: 20px; font-size: 12px; line-height: 1.8; }
.sp-only { display: none; }
@media (max-width: 759px) {
    .compare-lead { font-size: 14px; line-height: 1.9; }
    .hidden-cost { margin-top: 32px; padding: 23px 16px 25px; }
    .sp-only { display: block; }
    .cost-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .cost-chips b { display: none; }
    .cost-chips span { min-height: 88px; font-size: 12.5px; }
    .cost-message { margin-top: 22px; }
    .question-bubbles { flex-wrap: wrap; gap: 9px; margin-top: 32px; margin-bottom: 17px; }
    .question-bubbles span { padding: 7px 11px; font-size: 11.5px; }
    .question-bubbles span::after { display: none; }
    #compare .cmp { overflow: visible; background: transparent; border: 0 !important; box-shadow: none; }
    #compare .cmp-head { display: none; }
    #compare .cmp-row { display: block; margin-bottom: 14px; padding: 17px 14px 14px; background: var(--paper); border: 2.5px solid var(--ink); border-radius: 18px; box-shadow: 3px 3px 0 var(--ink); }
    #compare .cmp-row--focus { background: #fff7d9; border-width: 3px; }
    #compare .cmp-k { display: block; margin: 0 0 11px; color: var(--ink); font-size: 15px; }
    #compare .cmp-a, #compare .cmp-b { display: block; position: relative; padding: 37px 12px 12px; font-size: 13px; line-height: 1.75; }
    #compare .cmp-b { margin-top: 10px; }
    #compare .cmp-a::before, #compare .cmp-b::before { position: absolute; top: 9px; left: 12px; font-size: 11px; font-weight: 900; letter-spacing: .04em; }
    #compare .cmp-a::before { content: '会計ソフト'; color: #795c43; }
    #compare .cmp-b::before { content: 'スマタク'; color: #176b36; }
    .cmp-badge { margin-top: 2px; }
    .plan-note { font-size: 12px !important; }
    .compare-note { text-align: left; font-size: 11.5px; }
}
