/* ============================================================
   Narrav — Manga Marketing
   Light corporate manga-ad style
   White base × navy #043184 × red #e8002c
   Japanese gothic (Hiragino / Yu Gothic / Noto Sans JP)
   ============================================================ */

:root {
    --navy: #043184;         /* primary deep blue */
    --navy-deep: #002261;    /* darkest navy */
    --navy-bright: #0a4bd0;  /* brighter blue for accents */
    --red: #e8002c;          /* accent / CTA red */
    --red-dark: #c40025;
    --teal: #006699;         /* link accent */
    --ink: #222;
    --text: #333;
    --text-mut: #6d6d6d;
    --line: #dcdfe6;
    --line-soft: #e8ebf0;
    --paper: #ffffff;
    --paper-2: #f2f4f8;      /* light gray section */
    --paper-3: #e9edf3;
    --gold: #b8912f;
    --font-jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN", 游ゴシック体, YuGothic, "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
    --font-head: "Hiragino Kaku Gothic ProN", "Hiragino Sans", 游ゴシック体, YuGothic, "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
    --font-display: "Dela Gothic One", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
    --font-en: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --wrap: 1160px;
    --shadow: 0 4px 20px rgba(4,49,132,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 108px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: var(--font-jp);
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
em { font-style: normal; }
address { font-style: normal; }
b, strong { font-weight: 700; }
::selection { background: var(--navy); color: #fff; }

.container { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6em;
    padding: 1.05rem 2.4rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 6px 16px rgba(232,0,44,0.28);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(232,0,44,0.34); }
.btn-navy {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 6px 16px rgba(4,49,132,0.25);
}
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-outline {
    background: #fff;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 1.2rem 3rem; font-size: 1.15rem; }

/* ---------- Top info bar ---------- */
.topbar {
    background: var(--navy);
    color: #fff;
    font-size: .8rem;
    text-align: center;
    padding: .35rem 1rem;
    letter-spacing: .02em;
}
.topbar b { color: #ffd54a; font-weight: 700; }

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}
.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: .7rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}
.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.logo-mark { width: 30px; height: 30px; display: grid; place-items: center; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-word { font-family: 'Outfit', var(--font-en); font-weight: 600; font-size: 1.35rem; color: var(--navy); letter-spacing: -.01em; }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-list { display: flex; gap: 1.35rem; }
.nav-list > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .1rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .92rem;
    color: var(--ink);
    padding: .3em 0;
    position: relative;
}
.nav-list > li > a .en { font-family: var(--font-en); font-weight: 400; font-size: .58rem; color: var(--text-mut); letter-spacing: .12em; }
.nav-list > li > a::after {
    content: '';
    position: absolute; left: 0; bottom: -.2rem;
    width: 100%; height: 2px; background: var(--navy);
    transform: scaleX(0); transform-origin: center;
    transition: transform .3s var(--ease);
}
.nav-list > li > a:hover { color: var(--navy); }
.nav-list > li > a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-cta-note {
    text-align: right;
    font-size: .68rem;
    color: var(--text-mut);
    line-height: 1.4;
}
.header-cta-note b { color: var(--red); font-size: .78rem; }
.header-contact {
    background: var(--red);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .92rem;
    padding: .7em 1.4em;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: .4em;
    box-shadow: 0 4px 12px rgba(232,0,44,0.25);
    transition: background .2s var(--ease), transform .2s var(--ease);
}
.header-contact:hover { background: var(--red-dark); transform: translateY(-1px); }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: #fff;
    padding: 1.6rem 0 0;
    overflow: hidden;
}
.hero-watermark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: .4rem;
    writing-mode: vertical-rl;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 5.2rem;
    line-height: 1;
    letter-spacing: .14em;
    color: rgba(4,49,132,0.045);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
@media (max-width: 1400px) {
    .hero-watermark { display: none; }
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 1.5rem 1.4rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: .6rem 2rem;
    align-items: center;
}
.hero-chara-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-self: end;
    min-width: 0;
}
.hero-chara {
    display: block;
    height: clamp(320px, 37vw, 500px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
/* left vertical catch */
.hero-vert {
    writing-mode: vertical-rl;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    letter-spacing: .06em;
    line-height: 1.3;
    color: var(--navy);
    justify-self: start;
}
.hero-vert .red { color: var(--red); }
.hero-vert .num {
    font-family: inherit;
    font-size: 1em;
    color: var(--red);
}
/* center visual: manga before/after panels */
.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
    min-width: 0;
}
.hero-panel {
    border: 3px solid var(--ink);
    border-radius: 4px;
    padding: 1.6rem 1.1rem 1.3rem;
    position: relative;
    background: #fff;
    box-shadow: 6px 6px 0 rgba(4,49,132,0.12);
}
.hero-panel .tag {
    position: absolute; top: -.85em; left: 1rem;
    font-family: var(--font-en); font-weight: 700; font-style: italic;
    font-size: .78rem; letter-spacing: .14em;
    background: var(--ink); color: #fff;
    border: 2px solid #fff;
    padding: .05em .8em;
}
.hero-panel.after { background: var(--navy); color: #fff; border-color: var(--navy); }
.hero-panel.after .tag { background: var(--red); border-color: #fff; }
.hero-panel .ptext { font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; line-height: 1.5; }
.hero-panel .psub { font-size: .78rem; color: var(--text-mut); margin-top: .4rem; }
.hero-panel.after .psub { color: rgba(255,255,255,0.75); }
.hero-panel .fx {
    position: absolute; right: -.3rem; bottom: -.7rem;
    font-family: var(--font-head); font-weight: 900; font-size: 1.3rem;
    color: #fff; text-shadow: 2px 2px 0 var(--red); transform: rotate(-7deg);
}
.hero-tone {
    background-image: radial-gradient(rgba(4,49,132,0.14) 1.2px, transparent 1.4px);
    background-size: 9px 9px;
}
/* BEFORE/AFTER panels relocated into the about (navy) section */
.about .about-visual { max-width: 640px; margin: 2rem auto; text-align: left; }
.about .hero-panel.after { border-color: #fff; }
.hero-panel .panel-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
    margin-bottom: .7rem;
    border: 1px solid rgba(0,0,0,0.08);
}
/* right numbered outcome callouts (bracket style) */
.hero-outcomes {
    position: relative;
    display: grid;
    gap: .9rem;
    justify-self: end;
    min-width: 260px;
    max-width: 300px;
}
.hero-outcomes-ttl {
    font-family: var(--font-head); font-weight: 900;
    color: var(--navy); font-size: 1rem; margin-bottom: .1rem;
    padding-left: .5rem; border-left: 4px solid var(--red);
}
.outcome {
    position: relative;
    display: flex; align-items: center; gap: .6rem;
    background: transparent;
    padding: .55rem 1rem;
    font-size: .8rem;
}
.outcome::before,
.outcome::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 11px;
    border: 3px solid var(--ink);
}
.outcome::before { left: 0; border-right: 0; }
.outcome::after { right: 0; border-left: 0; }
.outcome .no { font-family: var(--font-en); font-style: italic; font-weight: 700; color: var(--text-mut); font-size: .78rem; }
.outcome .label { font-weight: 700; color: var(--ink); line-height: 1.3; }
.outcome .badge {
    margin-left: auto; white-space: nowrap;
    background: var(--red); color: #fff;
    font-family: var(--font-head); font-weight: 900; font-size: .8rem;
    padding: .15em .6em; border-radius: 4px;
}
.outcome .badge.navy { background: var(--navy); }
/* hero wordmark row (big navy title, overlaps chara feet) */
.hero-wordmark {
    grid-column: 1 / -1;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -56px;
}
.hero-wordmark h1 {
    text-shadow:
        0 0 4px #fff, 0 0 10px #fff,
        0 2px 22px rgba(255,255,255,0.95);
}
.hero-sub .marker {
    background: linear-gradient(transparent 58%, #ffe93c 58%);
    padding: 0 .1em;
}
.hero-wordmark h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 5.2vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: .01em;
    color: var(--navy);
}
.hero-wordmark h1 .reg { font-size: .35em; vertical-align: super; color: var(--navy); }
.hero-wordmark .hero-sub {
    font-family: var(--font-head); font-weight: 700;
    font-size: clamp(.95rem, 1.8vw, 1.35rem);
    color: var(--ink); margin-top: .6rem;
    display: inline-block;
}
.hero-actions { grid-column: 1 / -1; display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; padding: .9rem 0 .3rem; }
.hero-note { grid-column: 1 / -1; text-align: center; font-size: .82rem; color: var(--text-mut); }
.hero-note b { color: var(--red); }

/* featured content bar */
.featured-bar {
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: .1em;
}

/* ---------- Section shared ---------- */
.section { padding: 5rem 0; }
.section-gray { background: var(--paper-2); }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(1.7rem, 3.8vw, 2.9rem);
    line-height: 1.35;
    color: var(--navy);
    letter-spacing: .02em;
}
.section-title .red { color: var(--red); }
.section-title::after {
    content: '';
    display: block;
    width: 68px; height: 4px;
    background: var(--red);
    margin: 1rem auto 0;
    border-radius: 2px;
}
.section-title.no-rule::after { display: none; }
.section-lead {
    margin-top: 1.4rem;
    color: var(--text);
    font-size: 1rem;
    max-width: 46em;
    margin-left: auto; margin-right: auto;
}
/* dark pill category label */
.pill-label {
    display: inline-block;
    position: relative;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: .06em;
    padding: .5em 1.8em;
    border-radius: 4px;
    margin: 0 auto 2rem;
}
.pill-label::after {
    content: '';
    position: absolute; left: 50%; bottom: -12px;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--ink);
}
.center { text-align: center; }

/* ---------- "とは" navy section ---------- */
.about {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    color: #fff;
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1.4px);
    background-size: 11px 11px;
    opacity: .6;
}
.about-inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.about-copy { max-width: 46em; margin: 0 auto; text-align: center; }
.about-copy .eyebrow {
    font-family: var(--font-head); font-weight: 900;
    font-size: 1.8rem; color: #fff; margin-bottom: 1.2rem;
}
.about-copy .eyebrow .red { color: #ff5c78; }
.about-copy p { color: rgba(255,255,255,0.9); font-size: 1.02rem; margin-bottom: 1.8rem; }
.about-figures { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.about-fig {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 1.5rem 1.2rem;
    text-align: center;
}
.about-fig .fnum {
    font-family: var(--font-head); font-weight: 900;
    font-size: 2rem; color: #fff; line-height: 1.1;
}
.about-fig .fnum span { color: #ff5c78; }
.about-fig .flabel { font-size: .82rem; color: rgba(255,255,255,0.8); margin-top: .5rem; }

/* ---------- Needs (red-check grid) ---------- */
.needs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.needs-grid li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 1.3rem 1.3rem 1.3rem 3.4rem;
    position: relative;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(4,49,132,0.04);
}
.needs-grid li::before {
    content: '';
    position: absolute; left: 1.1rem; top: 1.35rem;
    width: 1.5rem; height: 1.5rem;
    background: var(--red);
    border-radius: 4px;
    clip-path: polygon(41% 68%, 82% 22%, 92% 33%, 41% 90%, 12% 56%, 22% 45%);
}
.needs-grid li .kw { color: var(--red); }

/* ---------- Effect / outcome stat cards ---------- */
.effect-note {
    text-align: center; font-size: .85rem; color: var(--text-mut);
    margin-bottom: 2.4rem;
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--navy);
    border-radius: 8px;
    padding: 2rem 1.6rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.stat-card .stat-label { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.stat-card .stat-big {
    font-family: var(--font-head); font-weight: 900;
    color: var(--red); font-size: 2.6rem; line-height: 1.1;
    margin: .6rem 0;
}
.stat-card .stat-big small { font-size: .5em; color: var(--red); }
.stat-card p { font-size: .88rem; color: var(--text-mut); }

/* ---------- Service (thumbnail cards) ---------- */
.service-group { margin-bottom: 3.4rem; }
.service-group:last-child { margin-bottom: 0; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem 1.4rem;
}
.service-card {
    text-align: center;
}
.service-card .scard-label {
    font-family: var(--font-head); font-weight: 700;
    color: var(--ink); font-size: 1.05rem; margin-bottom: .7rem;
}
.service-card .scard-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background:
        linear-gradient(rgba(4,49,132,0.62), rgba(4,49,132,0.72)),
        repeating-linear-gradient(135deg, #0a4bd0 0 22px, #063a9e 22px 44px);
    box-shadow: var(--shadow);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
/* manga screentone hint on visual */
.service-card .scard-visual::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1.4px);
    background-size: 10px 10px;
}
.service-card:hover .scard-visual { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(4,49,132,0.2); }
.service-card .scard-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card .scard-visual .scard-text {
    position: relative;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.12rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.service-card .scard-desc { font-size: .84rem; color: var(--text-mut); margin-top: .8rem; text-align: left; }
.service-card .card-link { color: var(--teal); font-weight: 700; }
.service-card .card-link:hover { color: var(--navy); }

/* ---------- CV band ---------- */
.cv-band {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    position: relative;
    overflow: hidden;
    padding: 3.2rem 0;
}
.cv-band::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 44px 44px;
}
.cv-band-inner { position: relative; text-align: center; }
.cv-band-title {
    color: #fff; font-family: var(--font-head); font-weight: 900;
    font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1.8rem;
    display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.cv-band-title .mark {
    display: inline-grid; place-items: center;
    width: 2rem; height: 2rem; background: #fff; color: var(--navy);
    border-radius: 4px; font-weight: 900; transform: rotate(45deg);
}
.cv-band-title .mark span { transform: rotate(-45deg); }
.cv-card {
    background: #fff;
    border-radius: 10px;
    max-width: 780px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.cv-card-lead { font-family: var(--font-head); font-weight: 900; color: var(--navy); font-size: 1.3rem; line-height: 1.4; }
.cv-card-lead small { display: block; font-size: .8rem; color: var(--text-mut); font-weight: 400; margin-top: .3rem; }

/* ---------- Reason ---------- */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
}
.reason-card {
    display: flex; gap: 1.2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.8rem;
    box-shadow: 0 2px 10px rgba(4,49,132,0.05);
}
.reason-num {
    font-family: var(--font-en); font-style: italic; font-weight: 700;
    font-size: 2.4rem; color: var(--navy); line-height: 1;
    flex-shrink: 0;
}
.reason-card h3 { font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; color: var(--ink); margin-bottom: .5rem; }
.reason-card h3 .red { color: var(--red); }
.reason-card p { font-size: .9rem; color: var(--text-mut); }

/* ---------- Flow ---------- */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.4rem;
}
.flow-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 2rem 1.5rem 1.5rem;
    box-shadow: 0 2px 10px rgba(4,49,132,0.05);
}
.flow-step .flow-num {
    position: absolute; top: -1rem; left: 1.3rem;
    font-family: var(--font-en); font-style: italic; font-weight: 700;
    background: var(--navy); color: #fff;
    padding: .2em .8em; border-radius: 4px; font-size: 1.05rem;
}
.flow-step:nth-child(-n+2) .flow-num { background: var(--red); }
.flow-step h3 { font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; color: var(--ink); margin-bottom: .5rem; }
.flow-step p { font-size: .88rem; color: var(--text-mut); }
.flow-step:not(:nth-child(3n))::after {
    content: '';
    position: absolute; top: 50%; right: -1.1rem;
    width: .85rem; height: .85rem;
    border-top: 3px solid var(--navy); border-right: 3px solid var(--navy);
    transform: translateY(-50%) rotate(45deg);
}

/* ---------- Price ---------- */
.price-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.price-card {
    background: #fff; border: 1px solid var(--line); border-radius: 8px;
    padding: 2rem 1.6rem; text-align: center; box-shadow: var(--shadow);
}
.price-num {
    display: inline-grid; place-items: center;
    width: 3rem; height: 3rem; border-radius: 50%;
    background: var(--navy); color: #fff;
    font-family: var(--font-en); font-style: italic; font-weight: 700; font-size: 1.5rem;
    margin-bottom: 1rem;
}
.price-card h3 { font-family: var(--font-head); font-weight: 900; font-size: 1.2rem; color: var(--ink); margin-bottom: .6rem; }
.price-card p { font-size: .88rem; color: var(--text-mut); text-align: left; }
.price-note {
    margin-top: 2.4rem; text-align: center; background: #fff;
    border: 2px dashed var(--navy); border-radius: 8px; padding: 2rem;
}
.price-note p { margin-bottom: 1.4rem; }
.price-note b { color: var(--navy); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
    background: #fff; border: 1px solid var(--line); border-radius: 8px;
    margin-bottom: .9rem; overflow: hidden;
    box-shadow: 0 2px 8px rgba(4,49,132,0.04);
}
.faq-item summary {
    cursor: pointer; list-style: none;
    padding: 1.15rem 3.2rem 1.15rem 3.4rem;
    font-family: var(--font-head); font-weight: 700; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
    content: 'Q'; position: absolute; left: 1.2rem; top: 50%; transform: translateY(-50%);
    font-family: var(--font-en); font-weight: 700; font-style: italic; font-size: 1.3rem; color: var(--navy);
}
.faq-item summary::after {
    content: '+'; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%);
    font-size: 1.5rem; color: var(--navy); transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
    padding: 0 1.4rem 1.3rem 3.4rem; font-size: .92rem; color: var(--text-mut); position: relative;
}
.faq-item p::before {
    content: 'A'; position: absolute; left: 1.2rem; top: -.1em;
    font-family: var(--font-en); font-weight: 700; font-style: italic; font-size: 1.3rem; color: var(--red);
}

/* ---------- Articles ---------- */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.article-card {
    background: #fff; border: 1px solid var(--line); border-radius: 8px;
    padding: 1.7rem 1.5rem; display: flex; flex-direction: column; gap: .5rem;
    box-shadow: 0 2px 8px rgba(4,49,132,0.04);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(4,49,132,0.12); }
.article-label { font-family: var(--font-en); letter-spacing: .12em; font-size: .72rem; color: var(--red); font-weight: 700; }
.article-card h3 { font-family: var(--font-head); font-weight: 900; font-size: 1.05rem; color: var(--navy); }
.article-card p { font-size: .85rem; color: var(--text-mut); flex-grow: 1; }
.article-card .read { font-weight: 700; font-size: .85rem; color: var(--teal); }

/* ---------- Recruit ---------- */
.recruit { background: var(--paper-2); }
.recruit-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.recruit-copy .section-title { text-align: left; }
.recruit-copy .section-title::after { margin-left: 0; }
.recruit-text { color: var(--text); margin-top: 1.2rem; }
.recruit-links { display: grid; gap: 1rem; }
.recruit-link {
    display: flex; align-items: center; justify-content: space-between;
    background: #fff; border: 1px solid var(--line); border-radius: 8px;
    padding: 1.4rem 1.7rem; box-shadow: 0 2px 8px rgba(4,49,132,0.05);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.recruit-link:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(4,49,132,0.12); }
.recruit-link svg { width: 1.3rem; height: 1.3rem; color: var(--navy); }
.recruit-link-label { display: block; font-family: var(--font-en); letter-spacing: .16em; font-size: .72rem; color: var(--red); font-weight: 700; }
.recruit-link-title { font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; color: var(--ink); }

/* ---------- Contact (final CTA + form) ---------- */
.contact { background: var(--paper-2); }
.contact-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: start; }
.contact-copy .section-title { text-align: left; }
.contact-copy .section-title::after { margin-left: 0; }
.contact-text { margin-top: 1.2rem; color: var(--text); }
.contact-text b { color: var(--red); }
.contact-points { margin-top: 1.5rem; display: grid; gap: .6rem; }
.contact-points li { position: relative; padding-left: 1.9em; font-weight: 700; }
.contact-points li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 900; }
.contact-alt { margin-top: 1.8rem; font-size: .85rem; color: var(--text-mut); }
.contact-alt a { color: var(--teal); text-decoration: underline; }
.contact-form {
    background: #fff; border-radius: 12px; padding: 2.4rem 2.2rem;
    box-shadow: 0 10px 40px rgba(4,49,132,0.12);
    border-top: 5px solid var(--navy);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-family: var(--font-head); font-weight: 700; font-size: .88rem; margin-bottom: .45rem; }
.required { color: var(--red); font-weight: 900; margin-left: .2em; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%; font-family: var(--font-jp); font-size: 1rem;
    padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 6px;
    background: var(--paper-2); transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--navy); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.checkbox-group label { display: flex; align-items: center; gap: .6em; font-weight: 500; cursor: pointer; }
.checkbox-group input { width: 1.15rem; height: 1.15rem; accent-color: var(--navy); }
.btn-submit { width: 100%; }
.btn-submit.sending { opacity: .6; pointer-events: none; }
.form-note { margin-top: .9rem; font-size: .8rem; color: var(--text-mut); text-align: center; }
.form-success { text-align: center; padding: 3rem 1rem; }
.form-success-title { font-family: var(--font-head); font-weight: 900; font-size: 1.3rem; color: var(--navy); margin-bottom: 1rem; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
    padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    box-shadow: 0 -2px 14px rgba(0,0,0,0.12);
    transform: translateY(120%); transition: transform .4s var(--ease);
    display: none;
}
.sticky-cta.visible { transform: none; }
.sticky-cta-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .1em;
    background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 900; font-size: 1.02rem;
    padding: .8rem; border-radius: 8px; box-shadow: 0 6px 16px rgba(232,0,44,0.3);
}
.sticky-cta-btn small { font-size: .68rem; font-weight: 400; opacity: .9; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.72); padding: 4rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-logo { display: flex; align-items: center; gap: .6rem; }
.footer-logo .logo-mark { width: 30px; height: 30px; }
.footer-logo-word { font-family: 'Outfit', var(--font-en); font-weight: 600; font-size: 1.5rem; color: #fff; }
.footer-tagline { font-size: .85rem; margin-top: 1rem; max-width: 28em; }
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: #fff; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .5rem; }
.footer-col a { font-size: .85rem; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-size: .85rem; line-height: 1.9; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: .78rem; }
.foot-en { font-family: var(--font-en); letter-spacing: .12em; }

/* ---------- Back to top ---------- */
.to-top {
    position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 1100;
    width: 44px; height: 44px; border-radius: 6px;
    background: var(--navy); color: #fff; display: grid; place-items: center;
    box-shadow: 0 4px 14px rgba(4,49,132,0.3);
    opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.to-top.visible { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--navy-deep); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; justify-items: center; }
    .hero-vert { writing-mode: horizontal-tb; text-align: center; }
    .hero-visual { max-width: 460px; width: 100%; }
    .hero-outcomes { justify-self: center; width: 100%; max-width: 420px; }
    .hero-chara { height: 280px; }
    .hero-wordmark { margin-top: .4rem; }
    .about-inner { grid-template-columns: 1fr; gap: 2rem; }
    .needs-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-grid { grid-template-columns: repeat(3, 1fr); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .reason-grid { grid-template-columns: 1fr; }
    .flow-steps { grid-template-columns: repeat(2, 1fr); }
    .flow-step:not(:nth-child(3n))::after { display: none; }
    .price-grid { grid-template-columns: repeat(3, 1fr); }
    .article-grid { grid-template-columns: repeat(3, 1fr); }
    .recruit-inner, .contact-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .nav-list { gap: 1rem; }
}

@media (max-width: 768px) {
    body { font-size: 15px; }
    .section { padding: 3.5rem 0; }
    .topbar { font-size: .68rem; }

    /* header / mobile nav */
    .header-inner { padding: .6rem 1rem; }
    .header-cta-note { display: none; }
    .nav {
        position: fixed; top: 0; right: 0; height: 100dvh; width: min(80vw, 340px);
        background: #fff; flex-direction: column; align-items: flex-start; justify-content: center;
        gap: 1.8rem; padding: 2.5rem 2rem; transform: translateX(100%);
        transition: transform .4s var(--ease); z-index: 1100; box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    }
    body.nav-open .nav { transform: none; }
    .nav-list { flex-direction: column; gap: 1.3rem; align-items: flex-start; }
    .nav-list > li > a { flex-direction: row; gap: .5rem; align-items: baseline; font-size: 1.05rem; }
    .header-contact { padding: .7em 1.4em; }
    .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); z-index: 1050; }
    body.nav-open .nav-overlay { opacity: 1; pointer-events: auto; }
    .menu-toggle {
        display: flex; flex-direction: column; justify-content: center; gap: 6px;
        width: 42px; height: 42px; background: transparent; border: 0; cursor: pointer;
        z-index: 1150; position: relative;
    }
    .menu-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 0 auto; transition: transform .35s var(--ease); }
    body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
    body.nav-open .menu-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

    .hero { padding: 1.4rem 0 0; }
    .hero-actions .btn { width: 100%; }
    .hero-chara { height: auto; width: min(78vw, 340px); }
    .hero-wordmark h1 { font-size: clamp(1.4rem, 7vw, 2rem); letter-spacing: 0; }
    .hero-watermark { display: none; }

    .needs-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .flow-steps { grid-template-columns: 1fr; gap: 1.8rem; }
    .price-grid { grid-template-columns: 1fr; }
    .article-grid { grid-template-columns: 1fr; }
    .about-figures { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .cv-card { flex-direction: column; gap: 1.2rem; }
    .cv-card .btn { width: 100%; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: .5rem; align-items: flex-start; }
    .pill-label { font-size: 1.1rem; }

    .sticky-cta { display: block; }
    .footer { padding-bottom: 6rem; }
    .to-top { display: none; }
}
