    /* ===== reset / tokens ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: #16244c;
      --blue: #2b5cc4;
      --blue-deep: #1c3f86;
      --blue-soft: #eef3fb;
      --blue-line: #d7e2f4;
      --blue-ring: #b9cdec;
      --orange: #f26f21;
      --orange-dark: #dd5f12;
      --ink: #3b4658;
      --muted: #6a7688;
      --line: #e3e8f0;
      --card: #ffffff;
      --radius: 8px;
      --shadow: 0 10px 30px rgba(20, 40, 90, .07);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
      background: #ffffff; color: var(--ink); font-size: 16px; line-height: 1.8; -webkit-font-smoothing: antialiased;
    }
    a { -webkit-tap-highlight-color: transparent; }
    .container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
    section { padding: 58px 0; }
    .dots { display: flex; justify-content: center; gap: 6px; margin-bottom: 12px; }
    .dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); opacity: .55; }
    .dots span:nth-child(2) { opacity: .8; transform: translateY(-2px); }
    h2 { font-size: clamp(23px, 5.4vw, 33px); line-height: 1.4; color: var(--navy); text-align: center; margin-bottom: 34px; font-weight: 800; letter-spacing: .01em; }
    h2 .accent { color: var(--blue); }

    /* ===== CTA button ===== */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      background: var(--orange); color: #fff; font-weight: 800; text-decoration: none;
      border: none; border-radius: 6px; box-shadow: 0 6px 16px rgba(242, 111, 33, .28);
      transition: background-color .16s ease, transform .08s ease, box-shadow .16s ease;
    }
    .btn:hover { background: var(--orange-dark); box-shadow: 0 8px 20px rgba(242, 111, 33, .34); }
    .btn:active { transform: translateY(1px); }
    .btn .arw { font-size: 1.15em; line-height: 1; }
    .btn-lg { font-size: 18px; padding: 17px 34px; min-height: 60px; }
    .btn-sm { font-size: 13.5px; padding: 10px 18px; min-height: 42px; }

    /* ===== header ===== */
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
    .header-inner { max-width: 1120px; margin: 0 auto; padding: 11px 20px; display: flex; align-items: center; gap: 20px; }
    .logo { display: inline-flex; align-items: center; text-decoration: none; }
    .logo-img { height: 28px; width: auto; display: block; }
    .nav-links { display: none; align-items: center; gap: 20px; margin-left: 12px; }
    .nav-links a { display: inline-flex; align-items: center; gap: 4px; color: #3d4a5c; text-decoration: none; font-size: 14px; font-weight: 700; white-space: nowrap; }
    .nav-links a:hover { color: var(--blue); }
    .nav-links svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; opacity: .8; }
    .header-cta { margin-left: auto; }

    /* ===== hero ===== */
    .hero { background: #fff; padding: 40px 0 48px; }
    .hero-inner { display: grid; gap: 26px; align-items: center; }
    .badge {
      display: inline-flex; align-items: center; gap: 8px; background: var(--blue-soft); color: var(--blue-deep);
      font-size: 13px; font-weight: 800; padding: 7px 14px; border: 1px solid var(--blue-line); border-radius: 6px; margin-bottom: 18px;
    }
    .badge::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--blue); }
    .hero h1 { font-size: clamp(26px, 6.2vw, 37px); line-height: 1.34; color: var(--navy); font-weight: 900; letter-spacing: .01em; word-break: keep-all; overflow-wrap: anywhere; }
    .hero h1 .hl { color: var(--blue); }
    .hero .lead { margin: 20px 0 0; color: var(--ink); font-size: 16px; max-width: 620px; }
    .hero-cta { margin-top: 28px; }
    .hero-copy { text-align: center; }
    .hero-cta .btn-lg { display: flex; width: 100%; max-width: 460px; margin: 0 auto; }
    .hero-cta .note { display: block; margin-top: 12px; font-size: 13px; color: var(--muted); font-weight: 700; }
    .hero-media { display: flex; justify-content: center; }
    .hero-media img { display: block; width: 100%; max-width: 560px; height: auto; }

    /* ===== feature bar ===== */
    .features { margin-top: 34px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr; overflow: hidden; }
    .feature { display: flex; gap: 16px; align-items: center; padding: 20px 24px; }
    .feature + .feature { border-top: 1px solid var(--line); }
    .feature .ic {
      flex: none; width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 2px solid var(--blue-ring);
      color: var(--blue-deep); display: grid; place-items: center; font-weight: 900; font-size: 17px;
    }
    .feature .ic svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }
    .feature h3 { font-size: 16px; color: var(--navy); font-weight: 800; margin-bottom: 3px; }
    .feature p { font-size: 13.5px; color: var(--muted); line-height: 1.65; font-weight: 600; }

    /* ===== pains ===== */
    .pains { background: var(--blue-soft); }
    .pain-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
    /* スマホ: アイコン左＋タイトル/説明を右の横並び（620px以上で中央寄せの縦積みに切替） */
    .pain { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 18px; box-shadow: 0 4px 14px rgba(20, 40, 90, .04); display: grid; grid-template-columns: auto 1fr; grid-template-areas: "ic ttl" "ic desc"; column-gap: 14px; align-items: center; text-align: left; }
    .pain .ic { grid-area: ic; color: var(--blue-deep); display: flex; align-items: center; }
    .pain .ic svg { width: 54px; height: 54px; stroke: currentColor; fill: none; }
    .pain h3 { grid-area: ttl; font-size: 16px; color: var(--navy); font-weight: 800; margin-bottom: 4px; line-height: 1.45; }
    .pain p { grid-area: desc; font-size: 13.5px; color: var(--muted); line-height: 1.65; }

    /* ===== reasons ===== */
    .reasons { background: #fff; }
    .reason-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
    .reason { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow); }
    .reason-top { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
    .reason .num { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--blue-deep); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 16px; }
    .reason h3 { font-size: 17px; color: var(--navy); font-weight: 800; line-height: 1.4; }
    .reason-body { display: flex; align-items: flex-start; gap: 14px; }
    .reason-body .ic { flex: none; color: var(--blue-deep); }
    .reason-body .ic svg { width: 50px; height: 50px; stroke: currentColor; fill: none; }
    .reason-body p { font-size: 14px; color: #566174; line-height: 1.7; }

    /* ===== trust / stats ===== */
    .trust { background: var(--blue-soft); }
    .stat-grid { display: grid; grid-template-columns: 1fr; gap: 10px; max-width: 980px; margin: 0 auto; }
    .stat { padding: 12px 16px; text-align: center; }
    .stat .ic { width: 60px; height: 60px; margin: 0 auto 12px; border-radius: 50%; background: #dde9fb; color: var(--blue-deep); display: grid; place-items: center; font-weight: 900; }
    .stat .ic svg { width: 30px; height: 30px; stroke: currentColor; fill: none; }
    .stat .lbl-top { font-size: 13px; color: var(--muted); font-weight: 700; margin-bottom: 2px; }
    .stat .big { font-size: clamp(26px, 7vw, 38px); font-weight: 900; color: var(--blue); line-height: 1.15; }
    .stat .desc { font-size: 13px; color: var(--muted); margin-top: 8px; font-weight: 600; line-height: 1.55; }
    .note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 20px; }

    /* ===== solution ===== */
    .solution { background: #fff; }
    .solution-lead { text-align: center; max-width: 660px; margin: 0 auto 30px; color: var(--ink); font-size: 15.5px; }
    /* Before → After 対比 */
    .ba { display: grid; grid-template-columns: 1fr; gap: 14px; align-items: center; max-width: 940px; margin: 0 auto; }
    .ba-col { border-radius: 12px; padding: 22px 22px; }
    .ba-before { background: #f4f6fa; border: 1px solid var(--line); }
    .ba-after { background: var(--blue-soft); border: 1px solid var(--blue-line); }
    .ba-head { font-size: 14px; font-weight: 800; margin-bottom: 15px; }
    .ba-before .ba-head { color: #7a8598; }
    .ba-after .ba-head { color: var(--blue-deep); }
    .ba-list { list-style: none; display: grid; gap: 12px; }
    .ba-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.6; }
    .ba-before li { color: #5b6675; }
    .ba-after li { color: var(--navy); font-weight: 700; }
    .ba-mk { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; margin-top: 1px; }
    .ba-before .ba-mk { background: #e5e9f0; color: #8a94a6; }
    .ba-after .ba-mk { background: var(--blue); color: #fff; }
    .ba-mk svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 3; }
    .ba-arrow { display: grid; place-items: center; color: var(--blue); transform: rotate(90deg); }
    .ba-arrow svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 2; }

    /* ===== compare points ===== */
    .points { background: var(--blue-soft); }
    /* 比較チェック表 */
    .ptable { max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
    .ptable-head { display: none; font-size: 12.5px; font-weight: 800; color: var(--muted); background: var(--blue-soft); }
    .prow { padding: 18px 20px; border-top: 1px solid var(--line); }
    .prow:first-of-type { border-top: none; }
    .pkey { display: flex; align-items: center; gap: 12px; font-size: 15.5px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
    .pkey .ic { flex: none; width: 40px; height: 40px; border-radius: 9px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; }
    .pkey .ic svg { width: 23px; height: 23px; stroke: currentColor; fill: none; }
    .pval { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

    /* ===== cta band ===== */
    .cta-band { background: #fff; padding-top: 0; }
    .cta-band-inner { border: 1px solid var(--blue-line); background: #fff; border-radius: 12px; box-shadow: var(--shadow); padding: 20px 26px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
    .cta-band-ic { flex: none; color: var(--blue-deep); }
    .cta-band-ic svg { width: 34px; height: 34px; stroke: currentColor; fill: none; }
    .cta-band-inner p { font-size: 17px; font-weight: 800; color: var(--navy); }

    /* ===== closing ===== */
    .closing { background: #fff; padding: 12px 0 64px; }
    .closing-block { background: linear-gradient(155deg, #234a97 0%, #16244c 100%); border-radius: 20px; padding: 38px 30px; color: #eaf0fb; display: grid; gap: 28px; align-items: center; overflow: hidden; }
    .closing-copy { text-align: center; }
    .closing h2 { color: #fff; margin-bottom: 0; word-break: keep-all; overflow-wrap: anywhere; }
    .closing .sub { color: #c7d3ec; font-size: 15px; margin: 12px 0 24px; }
    .closing .btn-lg { width: 100%; max-width: 420px; }
    .closing .note-inline { display: block; margin-top: 12px; font-size: 12.5px; color: #aebbd6; font-weight: 700; }
    .cfeatures { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 24px; }
    .cfeature { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: #e5ecf9; }
    .cfeature .ci { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); display: grid; place-items: center; font-size: 12px; font-weight: 900; color: #fff; }
    .cfeature .ci svg { width: 15px; height: 15px; stroke: currentColor; fill: none; }
    /* closing mockup card */
    .mockup { background: #fff; border-radius: 12px; padding: 16px 15px; box-shadow: 0 20px 50px rgba(0, 0, 0, .28); color: var(--ink); }
    .mockup-title { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 10px; padding-left: 4px; }
    .mockup-row { display: flex; align-items: center; gap: 11px; padding: 11px 6px; border-top: 1px solid var(--line); }
    .mockup-row:first-of-type { border-top: none; }
    .mockup-logo { flex: none; width: 38px; height: 38px; border-radius: 8px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
    .mockup-logo svg { width: 21px; height: 21px; stroke: currentColor; fill: none; }
    .mockup-mid { flex: 1; min-width: 0; }
    .mockup-mid .l1 { height: 8px; width: 78%; background: #d8e0ec; border-radius: 4px; margin-bottom: 8px; }
    .mockup-stars { font-size: 12px; letter-spacing: 1px; line-height: 1; }
    .mockup-stars i { color: #f5a623; font-style: normal; }
    .mockup-stars i.off { color: #cfd8e6; }
    .mockup-req { flex: none; font-size: 11.5px; font-weight: 800; color: #fff; background: var(--blue); border-radius: 5px; padding: 7px 11px; white-space: nowrap; }

    /* ===== footer ===== */
    footer { background: #fff; color: var(--muted); padding: 40px 0 96px; font-size: 12.5px; text-align: center; border-top: 1px solid var(--line); }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-bottom: 20px; }
    .footer-links a { color: #4d5768; text-decoration: none; font-size: 13px; font-weight: 700; }
    .footer-links a:hover { color: var(--blue); text-decoration: underline; }
    .footer-copy { color: var(--muted); font-size: 12px; letter-spacing: .02em; }

    /* ===== sticky bottom CTA (mobile) ===== */
    .sticky { position: fixed; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1px solid var(--line); padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); z-index: 200; box-shadow: 0 -2px 10px rgba(20, 40, 90, .1); }
    .sticky .btn { width: 100%; min-height: 52px; font-size: 16px; }

    /* ===== responsive ===== */
    @media (min-width: 620px) {
      .pain-grid { grid-template-columns: repeat(2, 1fr); }
      /* タブレット/PC: お悩みカードのアイコン・タイトルを中央寄せの縦積みに */
      .pain { display: block; text-align: center; padding: 24px 18px; }
      .pain .ic { justify-content: center; margin-bottom: 14px; }
      .pain .ic svg { width: 62px; height: 62px; }
      .pain h3 { margin-bottom: 9px; }
      /* 比較チェック表: 項目名 | 見るべきポイント の2列に */
      .ptable-head { display: grid; grid-template-columns: 240px 1fr; gap: 20px; padding: 12px 20px; }
      .prow { display: grid; grid-template-columns: 240px 1fr; gap: 20px; align-items: center; }
      .pkey { margin-bottom: 0; }
      .features { grid-template-columns: repeat(3, 1fr); }
      .feature + .feature { border-top: none; border-left: 1px solid var(--line); }
    }
    @media (min-width: 900px) {
      section { padding: 76px 0; }
      .hero { padding: 56px 0 64px; }
      .hero-inner { grid-template-columns: 1.12fr .88fr; column-gap: 44px; }
      .hero-copy { order: 1; } .hero-media { order: 2; }
      .hero-copy, .closing-copy { text-align: left; }
      .hero-cta .btn-lg { max-width: none; margin: 0; }
      .closing .cfeatures { justify-content: flex-start; }
      .pain-grid { grid-template-columns: repeat(4, 1fr); }
      .ba { grid-template-columns: 1fr auto 1fr; }
      .ba-arrow { transform: none; }
      .reason-grid { grid-template-columns: repeat(3, 1fr); }
      .stat-grid { grid-template-columns: repeat(3, 1fr); }
      .stat + .stat { border-left: 1px solid var(--blue-line); }
      .cta-band-inner { flex-direction: row; justify-content: space-between; text-align: left; }
      .cta-band-inner .cta-band-lead { display: flex; align-items: center; gap: 16px; }
      .cta-band-inner .btn { white-space: nowrap; }
      .closing-block { grid-template-columns: 1.05fr .95fr; column-gap: 40px; padding: 46px 44px; }
      .sticky { display: none; }
    }
    @media (max-width: 360px) {
      .stat-grid, .pain-grid { grid-template-columns: 1fr; }
      .logo-img { height: 24px; }
      .header-inner { gap: 12px; }
    }
