/* ==========================================================================
   RONILOG TOP v2 — "営業サイト" design proposal
   ========================================================================== */

:root {
    --ink: #101c2e;
    --ink-soft: #2e3d52;
    --muted: #5d6b7e;
    --paper: #fafbfc;
    --surface: #ffffff;
    --tint: #f1f5f9;
    --line: #e3e8ef;
    --navy: #0f1b2d;
    --navy-soft: #16263d;
    --accent: #ec5e2a;
    --accent-deep: #d24c1b;
    --accent-soft: #fdeee6;
    --ok: #1d9a6c;
    --ok-soft: #e5f6ef;
    --warn: #c2410c;
    --warn-soft: #fff1e7;
    --blue: #3e7cb1;
    --font-jp: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-en: 'Manrope', 'Noto Sans JP', sans-serif;
    --radius: 18px;
    --radius-lg: 26px;
    --shadow-sm: 0 1px 2px rgba(16, 28, 46, .05), 0 4px 12px rgba(16, 28, 46, .05);
    --shadow-md: 0 2px 4px rgba(16, 28, 46, .05), 0 14px 34px rgba(16, 28, 46, .09);
    --shadow-lg: 0 24px 60px rgba(16, 28, 46, .16);
    --ease: cubic-bezier(.22, .72, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-jp);
    font-size: 16px;
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
h1, h2, h3, h4, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.container {
    width: min(100% - 48px, 1160px);
    margin-inline: auto;
}

.container-narrow { max-width: 800px; }

.hidden { display: none !important; }
.pc-only { display: block; }
.sp-only { display: none; }

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-deep);
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
}

.eyebrow-light { color: #ffb38a; }
.eyebrow-light::before { background: #ffb38a; }

h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .01em;
    word-break: keep-all;
    line-break: strict;
}

.section { padding: clamp(88px, 10vw, 128px) 0; }
.section-tint { background: var(--tint); }

.section-head {
    max-width: 760px;
    margin: 0 auto clamp(44px, 6vw, 64px);
    text-align: center;
}

.section-head .eyebrow { justify-content: center; }

.section-lead {
    margin-top: 18px;
    color: var(--muted);
    font-size: 16px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 28px;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.btn-lg { min-height: 60px; padding: 17px 34px; font-size: 16px; }

.btn-accent {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 10px 24px rgba(236, 94, 42, .32);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(236, 94, 42, .4);
}

.btn-ghost {
    color: var(--ink);
    background: var(--surface);
    border: 1.5px solid var(--line);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    border-color: var(--ink);
}

.btn-arrow {
    display: inline-block;
    transition: transform .25s var(--ease);
}

.btn:hover .btn-arrow,
.price-card:hover .btn-arrow {
    transform: translateX(5px);
}

.center-actions {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 251, 252, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 4px 24px rgba(16, 28, 46, .06);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-right: auto;
}

.brand-logo {
    display: block;
    width: auto;
    height: 34px;
}

.brand-tagline {
    padding-left: 12px;
    margin-left: 2px;
    border-left: 1px solid var(--line);
    font-family: var(--font-jp);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--muted);
    white-space: nowrap;
}

.global-nav {
    display: flex;
    gap: 4px;
}

.global-nav a {
    position: relative;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 13.5px;
    font-weight: 600;
    transition: color .2s ease, background .2s ease;
}

.global-nav a:hover {
    color: var(--accent-deep);
    background: var(--accent-soft);
}

.global-nav .nav-contact {
    display: none;
}

.btn-header {
    min-height: 44px;
    padding: 10px 22px;
    font-size: 14px;
}

.nav-toggle { display: none; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 116px) 0 clamp(80px, 9vw, 124px);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(16, 28, 46, .035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16, 28, 46, .035) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 30%, transparent 75%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 30%, transparent 75%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .55;
    animation: orbDrift 14s ease-in-out infinite alternate;
}

.orb-1 {
    top: -120px; right: 4%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(236, 94, 42, .22), transparent 65%);
}

.orb-2 {
    bottom: -160px; left: -6%;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(62, 124, 177, .2), transparent 65%);
    animation-delay: -7s;
}

@keyframes orbDrift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-36px, 30px) scale(1.08); }
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: clamp(40px, 5vw, 72px);
}

#typed-heading {
    position: relative;
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 900;
    line-height: 1.42;
    letter-spacing: .015em;
    word-break: keep-all;
    line-break: strict;
}

/* 完成形のテキストを不可視で敷いて高さを確保し、タイピング中のレイアウトシフトを防ぐ */
.typed-ghost {
    display: block;
    visibility: hidden;
}

.typed-live {
    position: absolute;
    inset: 0;
}

.typed-line { display: block; }

.seg-mark {
    background: linear-gradient(transparent 58%, rgba(236, 94, 42, .28) 0);
    color: var(--accent-deep);
}

.caret {
    display: inline-block;
    width: 3px;
    height: .95em;
    margin-left: 4px;
    border-radius: 2px;
    background: var(--accent);
    vertical-align: -.12em;
    animation: caretBlink 1s steps(1) infinite;
}

.caret.is-done { animation: caretBlink 1s steps(1) 2, caretFade .4s ease 2s forwards; }

@keyframes caretBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes caretFade { to { opacity: 0; } }

.hero-lead {
    margin-top: 26px;
    max-width: 540px;
    color: var(--muted);
    font-size: 16.5px;
}

.hero-lead strong { color: var(--ink-soft); font-weight: 700; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-top: 26px;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.hero-trust li::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4 10-10"/></svg>') center / 9px no-repeat,
        var(--ok);
}

/* Hero visual — illustration scene */

.hero-visual {
    position: relative;
    padding: 10px 0 54px;
}

.hero-figure {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, #eef3f8, #fdeee6);
    box-shadow: var(--shadow-lg);
}

.hero-figure img {
    display: block;
    width: 100%;
    height: auto;
}

/* SVGイラスト共通アニメーション */
svg [class^="il-"],
svg [class*=" il-"] {
    transform-box: fill-box;
    transform-origin: center;
}

.il-bob { animation: ilBob 4.5s ease-in-out infinite; }
.il-sway { animation: ilSway 5s ease-in-out infinite; transform-origin: bottom center; }
.il-flag { animation: ilSway 3.6s ease-in-out infinite; transform-origin: bottom center; }
.il-mail { animation: ilMail 5.5s ease-in-out infinite; }
.il-mail-b { animation-delay: -1.8s; }
.il-mail-c { animation-delay: -3.4s; }
.il-point { animation: ilPoint 3.2s ease-in-out infinite; transform-origin: 92% 50%; }
.il-spark { animation: ilSpark 2.6s ease-in-out infinite; }
.il-spark-2 { animation-delay: -1.3s; }
.il-spin { animation: ilSpin 10s linear infinite; }
.il-cta-pulse { animation: ilCtaPulse 2.4s ease-in-out infinite; }

@keyframes ilBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes ilSway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

@keyframes ilMail {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes ilPoint {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-7deg); }
}

@keyframes ilSpark {
    0%, 100% { transform: scale(.7); opacity: .4; }
    50% { transform: scale(1.15); opacity: 1; }
}

@keyframes ilSpin {
    to { transform: rotate(360deg); }
}

@keyframes ilCtaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Floating chips */

.chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    animation: chipFloat 5s ease-in-out infinite;
}

.chip::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.chip-warn { color: var(--warn); background: #fff; border: 1px solid #ffd8bf; }
.chip-ok { color: var(--ok); background: #fff; border: 1px solid #b9e7d4; }

.chip-1 { top: 6%; left: -22px; animation-delay: 0s; }
.chip-2 { top: 38%; right: -18px; animation-delay: -1.6s; }
.chip-3 { bottom: 96px; left: -10px; animation-delay: -3.2s; }

@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.float-card {
    position: absolute;
    right: 6%;
    bottom: 0;
    display: grid;
    gap: 3px;
    padding: 16px 22px;
    border-radius: 16px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow-lg);
    animation: chipFloat 6s ease-in-out -2s infinite;
}

.float-card-label {
    color: #93a5bd;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
}

.float-card-value { font-size: 14.5px; font-weight: 700; line-height: 1.5; }
.float-card-value em { color: #ff9a66; font-style: normal; }

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
    display: grid;
    gap: 13px;
    overflow: hidden;
    padding: 18px 0;
    border-block: 1px solid var(--line);
    background: var(--surface);
}

.marquee-track {
    display: flex;
    gap: 44px;
    width: max-content;
    will-change: transform;
}

.marquee-track span {
    position: relative;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .05em;
    white-space: nowrap;
}

.marquee-track span::after {
    content: "・";
    position: absolute;
    right: -28px;
    color: var(--accent);
}

.marquee-outline span {
    color: transparent;
    -webkit-text-stroke: 1.1px #c3cfdc;
    font-family: var(--font-en);
    font-size: 15px;
    letter-spacing: .1em;
}

.marquee-outline span::after {
    -webkit-text-stroke: 0;
    color: #f0c4a4;
}

/* --------------------------------------------------------------------------
   Problems
   -------------------------------------------------------------------------- */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.problem-card {
    position: relative;
    overflow: hidden;
    padding: 0 30px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: #f3c9b3;
    box-shadow: var(--shadow-md);
}

.problem-thumb {
    display: block;
    margin: 0 -30px 24px;
    border-bottom: 1px solid var(--line);
    background: #f3efe6;
    overflow: hidden;
}

.problem-thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 42%;
    transition: transform .5s var(--ease);
}

.problem-card:hover .problem-thumb img {
    transform: scale(1.04);
}

.problem-num {
    display: block;
    margin-bottom: 16px;
    color: var(--accent);
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .1em;
}

.problem-num::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    margin-top: 9px;
    background: var(--accent-soft);
}

.problem-card h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.6;
}

.problem-card p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.95;
}

.problem-note {
    margin: 46px auto 0;
    max-width: 640px;
    text-align: center;
    color: var(--ink-soft);
    font-size: 16.5px;
}

.problem-note strong {
    background: linear-gradient(transparent 62%, rgba(236, 94, 42, .22) 0);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Approach / statement
   -------------------------------------------------------------------------- */

.statement {
    max-width: 820px;
    margin: 0 auto clamp(48px, 6vw, 72px);
    text-align: center;
}

.statement .eyebrow { justify-content: center; }

.statement-text {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: .015em;
    word-break: keep-all;
    line-break: strict;
}

.statement-text em {
    font-style: normal;
    background: linear-gradient(transparent 60%, rgba(236, 94, 42, .26) 0);
}

.statement-sub {
    max-width: 660px;
    margin: 26px auto 0;
    color: var(--muted);
    font-size: 15.5px;
}

.viewpoint-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.viewpoint {
    display: grid;
    align-content: start;
    padding: 28px 26px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.viewpoint:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.viewpoint-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 14px;
    color: var(--accent-deep);
    background: var(--accent-soft);
}

.viewpoint-icon svg { width: 23px; height: 23px; }

.viewpoint h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
    text-wrap: balance;
}

.viewpoint p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.95;
    letter-spacing: .01em;
    text-wrap: pretty;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

/* --------------------------------------------------------------------------
   Route navi
   -------------------------------------------------------------------------- */

.route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.route-choice {
    display: grid;
    gap: 9px;
    padding: 24px 24px 20px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    text-align: left;
    font: inherit;
    color: var(--ink);
    cursor: pointer;
    transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.route-choice:hover,
.route-choice:focus-visible {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.route-choice:focus-visible {
    outline: 3px solid rgba(236, 94, 42, .25);
    outline-offset: 3px;
}

.route-choice.is-active {
    border-color: var(--accent);
    background: linear-gradient(180deg, #fff8f4, #fff);
}

.route-choice-label {
    color: var(--accent-deep);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.route-choice-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
}

.route-choice-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 700;
    transition: color .2s ease;
}

.route-choice:hover .route-choice-arrow,
.route-choice.is-active .route-choice-arrow { color: var(--accent-deep); }

.route-result {
    margin-top: 28px;
    padding: clamp(26px, 3.4vw, 40px);
    border: 1px solid #f0d4c4;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 0% 0%, rgba(236, 94, 42, .06), transparent 24rem),
        var(--surface);
    box-shadow: var(--shadow-md);
    animation: resultIn .5s var(--ease);
}

@keyframes resultIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.route-summary { margin-bottom: 24px; }

.route-summary span {
    color: var(--accent-deep);
    font-family: var(--font-en);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .08em;
}

.route-summary h3 {
    margin-top: 7px;
    font-size: clamp(21px, 2.6vw, 28px);
    font-weight: 700;
    line-height: 1.5;
}

.route-result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.route-card {
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.route-card h4 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15.5px;
    font-weight: 700;
}

.route-card h4::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 2.5px;
    background: var(--accent);
}

.route-card p {
    margin-top: 11px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.route-steps {
    display: grid;
    gap: 13px;
    margin-top: 14px;
    counter-reset: rs;
}

.route-steps li {
    position: relative;
    padding-left: 36px;
    counter-increment: rs;
    font-size: 14px;
}

.route-steps li::before {
    content: counter(rs, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: .25em;
    color: var(--accent-deep);
    font-family: var(--font-en);
    font-size: 12.5px;
    font-weight: 800;
}

.route-steps li > span { display: block; font-weight: 700; }

.route-steps a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 7px;
    padding: 12px 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    font-size: 13.5px;
    font-weight: 600;
    transition: border-color .2s ease, transform .2s var(--ease);
}

.route-steps a::after {
    content: "→";
    color: var(--accent);
    transition: transform .2s var(--ease);
}

.route-steps a:hover { border-color: var(--accent); transform: translateX(2px); }
.route-steps a:hover::after { transform: translateX(3px); }

.route-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

/* --------------------------------------------------------------------------
   Stats (dark)
   -------------------------------------------------------------------------- */

.section-dark {
    background:
        radial-gradient(circle at 85% 10%, rgba(236, 94, 42, .14), transparent 26rem),
        radial-gradient(circle at 8% 90%, rgba(62, 124, 177, .16), transparent 24rem),
        var(--navy);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat {
    padding: 34px 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(4px);
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 7px;
    font-family: var(--font-en);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .01em;
    background: linear-gradient(135deg, #ffb38a, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-value small {
    font-family: var(--font-jp);
    font-size: 17px;
    font-weight: 700;
    -webkit-text-fill-color: #fff;
}

.stat-label {
    display: block;
    margin-top: 15px;
    color: #aebad0;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.8;
}

.stats-note {
    margin-top: 44px;
    text-align: center;
    color: #c6d0e0;
    font-size: 15.5px;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px 30px 32px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: #f3c9b3;
}

.price-card-featured {
    border-color: var(--accent);
    box-shadow: 0 18px 46px rgba(236, 94, 42, .16);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(236, 94, 42, .3);
}

.price-kicker {
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .03em;
}

.price-card h3 {
    margin-top: 10px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
}

.price-value {
    margin-top: 16px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--line);
    font-family: var(--font-en);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: .01em;
}

.price-value small {
    margin-left: 4px;
    font-family: var(--font-jp);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--muted);
}

.price-list {
    display: grid;
    gap: 11px;
    margin-top: 20px;
}

.price-list li {
    position: relative;
    padding-left: 26px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.75;
}

.price-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .32em;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23d24c1b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4 10-10"/></svg>') center / 10px no-repeat,
        var(--accent-soft);
}

.price-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 26px;
    color: var(--accent-deep);
    font-size: 14.5px;
    font-weight: 700;
}

.price-note {
    margin-top: 34px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}

.price-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

/* --------------------------------------------------------------------------
   Flow
   -------------------------------------------------------------------------- */

.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: flow;
}

.flow-step {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 24px 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.flow-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -19px;
    z-index: 1;
    color: var(--accent);
    font-weight: 700;
    transform: translateY(-50%);
}

.flow-num {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 4px 0 18px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--ink-soft), var(--navy));
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 800;
}

.flow-step h3 { font-size: 16.5px; font-weight: 700; }

.flow-step p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.85;
}

.flow-time {
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-size: 11.5px;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Articles
   -------------------------------------------------------------------------- */

.article-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.article-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.post-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
    background: var(--tint);
    transition: transform .4s var(--ease);
}

.placeholder-thumb {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--tint), var(--accent-soft));
}

.placeholder-thumb span {
    color: var(--accent-deep);
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
}

.post-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 9px;
    padding: 18px 18px 20px;
}

.tag {
    align-self: flex-start;
    padding: 4px 11px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-size: 11.5px;
    font-weight: 700;
}

.article-card h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
}

.article-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.8;
}

.loading-text {
    grid-column: 1 / -1;
    padding: 26px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Profile
   -------------------------------------------------------------------------- */

.profile-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: clamp(28px, 4vw, 52px);
    padding: clamp(32px, 4.5vw, 56px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.profile-photo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-soft);
    box-shadow: var(--shadow-sm);
}

.profile-body h2 { font-size: clamp(24px, 2.8vw, 30px); }

.profile-en {
    margin-left: 10px;
    color: var(--muted);
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
}

.profile-body > p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 15px;
}

.profile-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.profile-social a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 18px;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 700;
    transition: border-color .2s ease, color .2s ease, transform .2s var(--ease);
}

.profile-social a:hover {
    color: var(--accent-deep);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-list { display: grid; gap: 14px; }

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: border-color .25s ease;
}

.faq-item.is-open { border-color: #f3c9b3; }

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 22px 26px;
    border: 0;
    background: none;
    color: var(--ink);
    text-align: left;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.65;
    cursor: pointer;
}

.faq-icon {
    position: relative;
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-soft);
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-deep);
    transform: translate(-50%, -50%);
    transition: transform .3s var(--ease);
}

.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s var(--ease);
}

.faq-item.is-open .faq-a { grid-template-rows: 1fr; }

.faq-a-inner {
    overflow: hidden;
    padding: 0 26px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.95;
    transition: padding .3s var(--ease);
}

.faq-item.is-open .faq-a-inner { padding-bottom: 24px; }

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */

.section-cta { padding-top: 0; }

.cta-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: clamp(32px, 5vw, 64px);
    overflow: hidden;
    padding: clamp(40px, 5.5vw, 72px);
    border-radius: clamp(24px, 3vw, 36px);
    background:
        radial-gradient(circle at 90% 0%, rgba(236, 94, 42, .25), transparent 30rem),
        radial-gradient(circle at 0% 100%, rgba(62, 124, 177, .22), transparent 26rem),
        var(--navy);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.cta-copy,
.cta-visual { min-width: 0; }

.cta-copy h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.5;
}

.cta-copy > p {
    margin-top: 18px;
    color: #c6d0e0;
    font-size: 15px;
    max-width: 480px;
}

.cta-points {
    display: grid;
    gap: 10px;
    margin: 24px 0 32px;
}

.cta-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 600;
}

.cta-points li::before {
    content: "";
    flex: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4 10-10"/></svg>') center / 10px no-repeat,
        var(--accent);
}

.cta-form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto;
    gap: 12px;
    max-width: 560px;
    margin-top: 30px;
}

.cta-form input {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    font: inherit;
    box-shadow: 0 14px 32px rgba(15, 27, 45, .18);
    outline: none;
}

.cta-form input::placeholder {
    color: #8fa0b4;
}

.cta-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(236, 94, 42, .22), 0 14px 32px rgba(15, 27, 45, .18);
}

.cta-form .btn {
    border: none;
    white-space: nowrap;
}

.cta-privacy {
    max-width: 560px;
    margin-top: 12px;
    color: #9fb0c5;
    font-size: 12px;
    line-height: 1.8;
}

.cta-sub {
    margin-top: 18px;
    color: #93a5bd;
    font-size: 13px;
}

.cta-sub a {
    color: #ffb38a;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* checklist visual */

.check-sheet {
    display: grid;
    gap: 13px;
    padding: 30px 28px;
    border-radius: 20px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-lg);
    transform: rotate(-1.5deg);
}

.check-sheet-title {
    color: var(--accent-deep);
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
}

.check-row i {
    flex: none;
    width: 19px;
    height: 19px;
    border: 2px solid var(--line);
    border-radius: 6px;
    background: #fff;
}

.check-row.done i {
    border-color: var(--accent);
    background:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4 10-10"/></svg>') center / 11px no-repeat,
        var(--accent);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
    padding: 60px 0 36px;
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-logo {
    display: block;
    width: auto;
    height: 72px;
}

.footer-brand p {
    color: var(--muted);
    font-size: 13px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.footer-nav a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    transition: color .2s ease;
}

.footer-nav a:hover { color: var(--accent-deep); }

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.footer-bottom small {
    color: #98a4b5;
    font-size: 12px;
}

/* --------------------------------------------------------------------------
   Reveal animation
   -------------------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s var(--ease) var(--d, 0s), transform .8s var(--ease) var(--d, 0s);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger > .reveal:nth-child(2) { --d: .12s; }
.stagger > .reveal:nth-child(3) { --d: .24s; }
.stagger > .reveal:nth-child(4) { --d: .36s; }
.stagger > .reveal:nth-child(5) { --d: .48s; }
.stagger > .reveal:nth-child(6) { --d: .6s; }

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .orb,
    .chip,
    .float-card,
    .mock-scan,
    .marquee-track,
    .caret { animation: none !important; }

    .btn,
    .price-card,
    .problem-card,
    .viewpoint,
    .article-card,
    .route-choice { transition: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
    .global-nav { display: none; }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 46px;
        height: 46px;
        border: 1.5px solid var(--line);
        border-radius: 14px;
        background: var(--surface);
        cursor: pointer;
    }

    .nav-toggle span:not(.sr-only) {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: var(--ink);
        transition: transform .25s var(--ease), opacity .25s ease;
    }

    body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    body.nav-open .global-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 24px;
        right: 24px;
        display: grid;
        gap: 4px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--surface);
        box-shadow: var(--shadow-md);
        animation: resultIn .3s var(--ease);
    }

    body.nav-open .global-nav a { padding: 12px 16px; font-size: 14.5px; }
    body.nav-open .global-nav .nav-contact { display: block; }

    .header-inner { position: relative; }

    .viewpoint-grid { grid-template-columns: repeat(2, 1fr); }
    .article-grid { grid-template-columns: repeat(2, 1fr); }
    .flow-grid { grid-template-columns: repeat(2, 1fr); }
    .flow-step:nth-child(2)::after { display: none; }
}

@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; }

    .hero-visual {
        max-width: 520px;
        margin-inline: auto;
        padding-top: 24px;
    }

    .chip-1 { left: 0; }
    .chip-2 { right: 0; }

    .problem-grid,
    .route-grid,
    .price-grid,
    .stats-grid { grid-template-columns: 1fr; }

    .route-result-grid { grid-template-columns: 1fr; }

    .price-card-featured { order: -1; }

    .cta-panel { grid-template-columns: 1fr; }

    .cta-visual { max-width: 420px; }

    .profile-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-photo { margin-inline: auto; }
    .profile-social { justify-content: center; }

    .btn-header { display: none; }
}

@media (max-width: 560px) {
    .container { width: min(100% - 36px, 1160px); }

    .pc-only { display: none; }
    .sp-only { display: block; }

    #typed-heading { font-size: 30px; }

    .cta-copy h2 {
        font-size: 24px;
        word-break: normal;
    }

    .cta-copy h2 br { display: none; }

    .check-sheet {
        padding: 22px 20px;
        transform: none;
    }

    .check-row { font-size: 12px; }

    .cta-form {
        grid-template-columns: 1fr;
    }

    .cta-form .btn {
        width: 100%;
    }

    .hero { padding-top: 52px; }

    .hero-actions .btn { width: 100%; }

    .viewpoint-grid,
    .article-grid,
    .flow-grid { grid-template-columns: 1fr; }

    .flow-step::after { display: none !important; }

    .mock-cards { grid-template-columns: repeat(2, 1fr); }
    .mock-cards .sk-card:nth-child(3) { display: none; }

    .chip { font-size: 11.5px; padding: 8px 12px; }

    .float-card { right: 0; padding: 13px 17px; }

    .brand-tagline { display: none; }
}

/* --------------------------------------------------------------------------
   v3: Scroll effects & illustrations
   -------------------------------------------------------------------------- */

/* scroll progress bar */
#scroll-progress {
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 5;
    width: 0;
    height: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(90deg, var(--accent), #ffb38a);
}

/* hero scroll cue */
.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
    color: var(--muted);
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
}

.scroll-cue i {
    position: relative;
    display: block;
    overflow: hidden;
    width: 2px;
    height: 44px;
    border-radius: 2px;
    background: var(--line);
}

.scroll-cue i::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: -50%;
    height: 50%;
    border-radius: 2px;
    background: var(--accent);
    animation: cueDrop 1.8s ease-in-out infinite;
}

@keyframes cueDrop {
    from { top: -50%; }
    to { top: 110%; }
}

/* section waves */
.wave {
    display: block;
    width: 100%;
    height: 56px;
}

.wave-flip { transform: scaleY(-1); }

/* parallax decorations */
.section-rel {
    position: relative;
    overflow: hidden;
}

.section-rel > .container {
    position: relative;
    z-index: 1;
}

.deco {
    position: absolute;
    z-index: 0;
    opacity: .65;
    pointer-events: none;
}

.deco-orange { color: #f3a979; }
.deco-mint { color: #8fd4bb; }
.deco-blue { color: #9cc6e4; }

.deco-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: currentColor;
}

.deco-ring {
    width: 36px;
    height: 36px;
    border: 6px solid currentColor;
    border-radius: 50%;
}

.deco-cross {
    width: 26px;
    height: 26px;
}

.deco-cross::before,
.deco-cross::after {
    content: "";
    position: absolute;
    border-radius: 3px;
    background: currentColor;
}

.deco-cross::before {
    left: 50%;
    top: 0;
    width: 6px;
    height: 100%;
    transform: translateX(-50%);
}

.deco-cross::after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 6px;
    transform: translateY(-50%);
}

/* approach journey illustration */
.journey {
    max-width: 920px;
    margin: 0 auto clamp(44px, 6vw, 68px);
}

.journey-copy {
    max-width: 680px;
    margin: 0 auto 24px;
    text-align: center;
}

.journey-copy h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(24px, 3.1vw, 38px);
    font-weight: 900;
    line-height: 1.48;
    letter-spacing: .015em;
    word-break: keep-all;
    line-break: strict;
}

.journey-media {
    overflow: visible;
    margin: 0;
}

.journey-illust {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(212, 226, 236, .78);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.journey-caption {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    gap: 18px;
    align-items: stretch;
    margin-top: 22px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 14px 34px rgba(16, 28, 46, .06);
}

.journey-caption-copy {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 18px 20px;
    border-radius: calc(var(--radius) - 8px);
    background: #fff;
}

.journey-caption-copy span {
    width: fit-content;
    border-radius: 999px;
    background: var(--accent-soft);
    padding: 5px 11px;
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
}

.journey-caption-copy p {
    margin: 0;
    color: var(--ink);
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.9;
}

.journey-caption ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.journey-caption li {
    position: relative;
    display: flex;
    min-height: 46px;
    align-items: center;
    min-width: 0;
    padding: 10px 14px 10px 44px;
    border: 1px solid rgba(214, 226, 236, .86);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.55;
}

.journey-caption li::before {
    position: absolute;
    top: 50%;
    left: 14px;
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #2e72ad, #4c9bc4);
    color: #fff;
    content: "✓";
    font-size: 12px;
    font-weight: 900;
    transform: translateY(-50%);
}

/* pricing illustrations */
.price-illust {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
}

/* flow illustrations */
.flow-illust {
    display: block;
    width: 112px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 18px;
}

/* CTA floating mails */
.cta-visual { position: relative; }

.cta-mail {
    position: absolute;
    z-index: 1;
    width: 54px;
    height: auto;
    filter: drop-shadow(0 8px 14px rgba(16, 28, 46, .18));
}

.cta-mail-1 { top: -26px; right: 6%; }
.cta-mail-2 { bottom: -16px; left: 3%; animation-delay: -2.6s; }

/* phrase reveal (見出しの語句ごとの立ち上がり) */
.ph {
    display: inline-block;
    opacity: 0;
    transform: translateY(.8em);
    transition: opacity .55s var(--ease), transform .7s var(--ease);
    transition-delay: calc(var(--pi, 0) * .055s);
}

.is-visible .ph {
    opacity: 1;
    transform: none;
}

/* v3 reduced motion */
@media (prefers-reduced-motion: reduce) {
    svg [class^="il-"],
    svg [class*=" il-"],
    .scroll-cue i::after { animation: none !important; }

    .ph {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .marquee-track { transform: none !important; }

    [data-parallax] { transform: none !important; }
}

/* v3 responsive */
@media (max-width: 1080px) {
    .scroll-cue { display: none; }
}

@media (max-width: 560px) {
    .deco { display: none; }

    .wave { height: 34px; }

    .journey { margin-bottom: 40px; }

    .journey-copy {
        margin-bottom: 18px;
    }

    .journey-copy h3 {
        font-size: 23px;
    }

    .journey-caption {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 16px;
        padding: 12px;
    }

    .journey-caption-copy {
        padding: 16px;
    }

    .journey-caption-copy p {
        font-size: 14px;
    }

    .journey-caption li {
        min-height: 42px;
        padding-block: 9px;
        font-size: 13px;
    }

    .flow-illust { max-width: 112px; }

    .cta-mail { width: 42px; }
    .cta-mail-1 { top: -18px; }

    .marquee-outline span { font-size: 13px; }
}
