/* ============================================
   スキル探偵事務所 浮気調査LP
   モバイルファースト / 医療クリニック風 / 親しみ × 信頼
============================================ */

/* ===== Design Tokens ===== */
:root {
    --navy:           #1A3A6E;   /* Brand main */
    --navy-deep:      #112548;
    --navy-light:     #2C4F8C;
    --sky:            #5B9CD6;
    --sky-pale:       #DCE9F5;
    --gold:           #D4A857;
    --gold-bright:    #E8BD66;
    --coral:          #E94E4E;   /* CTA */
    --coral-dark:     #C73B3B;
    --line-green:     #06C755;

    --bg-base:        #FAF7F1;   /* Section base (純白NG) */
    --bg-card:        #FFFFFF;
    --bg-pale:        #F0F4FA;   /* sub bg for soft pop */
    --bg-warm:        #FFF8EB;   /* warm yellow tint */

    --text:           #2A2A2A;
    --text-sub:       #555555;
    --text-mute:      #8C8C8C;
    --border:         #E5E0D5;
    --border-light:   #EFEAE0;
    --line:           #EBE6DA;

    --shadow-sm:      0 2px 8px rgba(26, 58, 110, 0.06);
    --shadow-md:      0 6px 20px rgba(26, 58, 110, 0.10);
    --shadow-card:    0 4px 16px rgba(74, 56, 23, 0.06);

    --font-jp:        'Noto Sans JP', sans-serif;
    --font-en:        'Outfit', sans-serif;

    --max:            760px;
    --pad-x:          20px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-jp);
    font-weight: 500;
    color: var(--text);
    background: var(--bg-base);
    line-height: 1.85;
    overflow-x: hidden;
    padding-bottom: 90px;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }
ul, ol { list-style: none; }

/* ===== Helpers ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.text-accent { color: var(--coral); font-weight: 900; }
.sp-only { display: inline; }
@media (min-width: 768px) {
    .sp-only { display: none; }
}

/* ===== Section Heading ===== */
.section-pretitle {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--sky);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 18px;
}
.section-pretitle::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.section-heading {
    font-family: var(--font-jp);
    font-weight: 900;
    font-size: clamp(20px, 5.6vw, 26px);
    line-height: 1.4;
    text-align: center;
    color: var(--navy);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* ============================================
   Header
============================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    max-width: var(--max);
    margin: 0 auto;
}
.header-logo img {
    height: 28px;
    width: auto;
}
.header-right { display: flex; align-items: center; gap: 8px; }
.header-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--coral);
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 11px;
    padding: 6px 12px;
    border: 1.5px solid var(--coral);
    border-radius: 999px;
    background: #FFF;
    line-height: 1.2;
}
.header-tel svg { flex-shrink: 0; }
.header-tel-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.header-tel-num { display: none; }

/* Hamburger */
.hamburger {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1.5px solid var(--navy);
    border-radius: 8px;
    background: var(--navy);
}
.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #FFF;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 1px;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   Drawer
============================================ */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
}
.drawer.is-open { pointer-events: auto; visibility: visible; }
.drawer-overlay {
    position: absolute; inset: 0;
    background: rgba(17, 37, 72, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.drawer.is-open .drawer-overlay { opacity: 1; }
.drawer-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(82%, 360px);
    background: #FFF;
    padding: 60px 24px 28px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-md);
}
.drawer.is-open .drawer-panel { transform: translateX(0); }
.drawer-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--navy);
    border-radius: 8px;
    background: var(--navy);
}
.drawer-close span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: #FFF;
    border-radius: 1px;
}
.drawer-close span:nth-child(1) { transform: rotate(45deg); }
.drawer-close span:nth-child(2) { transform: rotate(-45deg); }

.drawer-logo { margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.drawer-logo img { height: 28px; }
.drawer-list { display: flex; flex-direction: column; margin-bottom: 24px; }
.drawer-link {
    display: block;
    padding: 14px 4px;
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    transition: color 0.2s, padding-left 0.2s;
}
.drawer-link:hover, .drawer-link:focus { color: var(--coral); padding-left: 8px; }

.drawer-cta { display: flex; flex-direction: column; gap: 10px; }
.drawer-cta-tel {
    display: flex; flex-direction: column; align-items: center;
    padding: 12px;
    border: 2px solid var(--coral);
    border-radius: 10px;
    background: #FFF8F8;
}
.drawer-cta-label { font-size: 11px; color: var(--coral); letter-spacing: 0.08em; font-weight: 700; }
.drawer-cta-num { font-family: var(--font-en); font-weight: 900; font-size: 22px; color: var(--coral); margin-top: 2px; letter-spacing: 0.03em; }
.drawer-cta-line {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px;
    background: var(--line-green);
    color: #FFF;
    font-weight: 700;
    border-radius: 10px;
}

/* ============================================
   Hero（写真背景 + ネイビーグラデ / 既存配色準拠）
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 56px;
    padding-bottom: 88px; /* fixed CTA分 */
}
.hero-bg-photo {
    position: absolute;
    inset: 0;
    background-image: url("../img/mv-bg.png");
    background-size: cover;
    background-position: center 8%;
    background-repeat: no-repeat;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(17, 37, 72, 0.55) 0%,
            rgba(17, 37, 72, 0.40) 35%,
            rgba(17, 37, 72, 0.75) 75%,
            rgba(17, 37, 72, 0.95) 100%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 24px var(--pad-x) 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== ゴールドシール（初回最大50%OFF） ===== */
.hero-seal {
    position: absolute;
    top: 76px;
    right: 14px;
    z-index: 3;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-12deg);
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35));
    animation: sealPop 0.6s ease-out;
}
@keyframes sealPop {
    0% { transform: rotate(-12deg) scale(0.6); opacity: 0; }
    100% { transform: rotate(-12deg) scale(1); opacity: 1; }
}
.hero-seal svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-seal-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #4A2E0F;
    line-height: 1;
    font-family: var(--font-jp);
}
.hero-seal-top {
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.hero-seal-num {
    display: block;
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 38px;
    letter-spacing: -0.02em;
    line-height: 0.95;
}
.hero-seal-num small {
    font-size: 18px;
    margin-left: 2px;
}
.hero-seal-bottom {
    display: block;
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

/* ===== メインコンテンツ ===== */
.hero-content {
    text-align: center;
    margin-top: auto;
    margin-bottom: 28px;
}

.hero-headline {
    margin: 0 0 18px;
    font-family: var(--font-jp);
    font-weight: 900;
    color: #FFF;
    line-height: 1.45;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.hero-headline-l1,
.hero-headline-l2,
.hero-headline-l3 {
    display: block;
    font-size: clamp(22px, 6.6vw, 30px);
}
.hero-headline-l2 {
    color: var(--gold-bright);
    font-size: clamp(26px, 7.4vw, 34px);
    margin: 4px 0;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

/* オーナメント（金線+◆） */
.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 16px;
    max-width: 240px;
}
.hero-ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212,168,87,0) 0%, var(--gold-bright) 50%, rgba(212,168,87,0) 100%);
}
.hero-ornament-mark {
    color: var(--gold-bright);
    font-size: 12px;
    line-height: 1;
}

.hero-sub {
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 700;
    color: #FFF;
    line-height: 1.85;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
    margin-bottom: 16px;
}
.hero-sub strong {
    font-family: var(--font-en);
    font-weight: 900;
    color: var(--gold-bright);
    font-size: 1.5em;
    letter-spacing: -0.01em;
    margin: 0 2px;
}
.hero-sub strong small {
    font-size: 0.65em;
    margin-left: 1px;
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(212, 168, 87, 0.5);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-bright);
    letter-spacing: 0.08em;
    backdrop-filter: blur(4px);
}

/* ===== CTA ===== */
.hero-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
.hero-btn-tel,
.hero-btn-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.15s ease;
}
.hero-btn-tel:active,
.hero-btn-line:active { transform: scale(0.98); }
.hero-btn-tel {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: #FFF;
}
.hero-btn-tel span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.hero-btn-tel small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    opacity: 0.95;
}
.hero-btn-tel strong {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.01em;
}
.hero-btn-line {
    background: var(--line-green);
    color: #FFF;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

/* ============================================
   Buttons
============================================ */
.btn-tel, .btn-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 14px 16px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: var(--shadow-md);
}
.btn-tel:active, .btn-line:active { transform: scale(0.98); }

.btn-tel {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: #FFF;
}
.btn-tel-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: 999px;
    margin-bottom: 4px;
}
.btn-tel-num {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 0.02em;
    line-height: 1.2;
}
.btn-tel-note { font-size: 10px; font-weight: 500; opacity: 0.92; margin-top: 2px; }

.btn-line {
    background: var(--line-green);
    color: #FFF;
}
.btn-line img { display: block; }
.btn-line-main {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.04em;
}
.btn-line-note {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.92;
    margin-top: 2px;
}

/* Large buttons (final CTA) */
.btn-tel-large, .btn-line-large { padding: 18px 18px; }
.btn-tel-large .btn-tel-num { font-size: 28px; }
.btn-line-large .btn-line-main { font-size: 19px; }

/* ============================================
   Fixed Bottom CTA
============================================ */
.fixed-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.fixed-cta.is-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   Floating Seal（常設50%OFFバッジ）
============================================ */
.floating-seal {
    position: fixed;
    right: 12px;
    bottom: 96px; /* fixed-CTA分の上 */
    z-index: 95;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-12deg) scale(1);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, bottom 0.3s ease;
}
.floating-seal.is-visible {
    opacity: 1;
    pointer-events: auto;
    animation: floatSealPulse 2.4s ease-in-out infinite;
}
.floating-seal.is-dismissed {
    display: none;
}
@keyframes floatSealPulse {
    0%, 100% { transform: rotate(-12deg) scale(1); }
    50%      { transform: rotate(-12deg) scale(1.05); }
}
.floating-seal:active {
    transform: rotate(-12deg) scale(0.95);
}
.floating-seal svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.floating-seal-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #4A2E0F;
    line-height: 1;
    font-family: var(--font-jp);
    pointer-events: none;
}
.floating-seal-top {
    display: block;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.06em;
    margin-bottom: 1px;
}
.floating-seal-num {
    display: block;
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -0.02em;
    line-height: 0.95;
}
.floating-seal-num small {
    font-size: 13px;
    margin-left: 1px;
}
.floating-seal-bottom {
    display: block;
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.06em;
    margin-top: 1px;
}
.floating-seal-close {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2A2A2A;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFF;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    cursor: pointer;
    transform: rotate(12deg); /* 親の-12degを打ち消し */
    z-index: 2;
    padding: 0;
    transition: transform 0.15s ease, background 0.15s ease;
}
.floating-seal-close:hover { background: #000; }
.floating-seal-close:active { transform: rotate(12deg) scale(0.9); }
.fixed-cta-tel,
.fixed-cta-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
    border-radius: 10px;
    font-weight: 700;
    transition: transform 0.15s ease;
}
.fixed-cta-tel:active,
.fixed-cta-line:active { transform: scale(0.97); }
.fixed-cta-tel {
    background: var(--coral);
    color: #FFF;
}
.fixed-cta-tel span { display: flex; flex-direction: column; line-height: 1.2; align-items: flex-start; }
.fixed-cta-tel strong { font-family: var(--font-en); font-weight: 900; font-size: 16px; letter-spacing: 0.02em; }
.fixed-cta-tel small { font-size: 10px; font-weight: 500; opacity: 0.95; }
.fixed-cta-line {
    background: var(--line-green);
    color: #FFF;
    font-size: 15px;
}

/* ============================================
   Stats Section
============================================ */
.stats {
    padding: 64px 0;
    background: #FFF;
    border-top: 1px solid var(--line);
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}
.stat-card {
    text-align: center;
    padding: 20px 12px;
    background: var(--bg-pale);
    border: 1px solid var(--sky-pale);
    border-radius: 14px;
}
.stat-card-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.stat-card-num {
    font-family: var(--font-en);
    font-weight: 900;
    line-height: 1;
    color: var(--coral);
    margin-bottom: 6px;
}
.stat-card-num strong { font-size: 36px; letter-spacing: -0.02em; }
.stat-card-num small { font-size: 16px; margin-left: 2px; color: var(--coral); }
.stat-card-note { font-size: 11px; color: var(--text-sub); line-height: 1.5; }

.stats-figure {
    text-align: center;
    margin-top: 16px;
}
.stats-figure img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 12px;
}
.stats-figure figcaption {
    margin-top: 10px;
    font-size: 11px;
    color: var(--text-mute);
}

/* ============================================
   Concerns Section
============================================ */
.concerns {
    padding: 72px 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(91, 156, 214, 0.06) 100%),
        var(--bg-base);
}
.concerns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
}
.concern-card {
    background: #FFF;
    border-radius: 16px;
    padding: 14px 12px 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    text-align: center;
}
.concern-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.concern-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.concern-card-bubble {
    position: relative;
    background: var(--bg-warm);
    border: 1.5px solid var(--gold);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.5;
}
.concern-card-bubble::before {
    content: '';
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px; height: 12px;
    background: var(--bg-warm);
    border-left: 1.5px solid var(--gold);
    border-top: 1.5px solid var(--gold);
}
.concern-card-bubble p { margin: 0; }

.concerns-message {
    text-align: center;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
    background: #FFF;
    padding: 20px 16px;
    border-radius: 14px;
    border: 2px solid var(--coral);
    box-shadow: var(--shadow-card);
}
.concerns-message strong {
    color: var(--coral);
    font-weight: 900;
    display: block;
    margin-top: 4px;
    font-size: 16px;
}

/* ============================================
   Features Section
============================================ */
.features {
    padding: 72px 0;
    background: #FFF;
}
.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-card {
    position: relative;
    padding: 32px 20px 24px;
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    text-align: center;
}
.feature-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    background: var(--navy);
    color: #FFF;
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 22px;
    padding: 6px 18px;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.04em;
}
.feature-num span {
    font-size: 11px;
    letter-spacing: 0.15em;
    opacity: 0.9;
}
.feature-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.feature-title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.5;
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}
.feature-text {
    font-size: 14px;
    line-height: 1.85;
    color: var(--text-sub);
    margin-bottom: 16px;
    text-align: left;
}
.feature-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    background: #FFF;
    padding: 14px 16px;
    border-radius: 10px;
}
.feature-points li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text);
}
.feature-points li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0;
    color: var(--coral);
    font-weight: 900;
}

/* ============================================
   Pricing Section
============================================ */
.pricing {
    padding: 72px 0;
    background: var(--bg-base);
}
.pricing-figure {
    margin-bottom: 32px;
    text-align: center;
}
.pricing-figure img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 12px;
}
.pricing-figure figcaption {
    margin-top: 10px;
    font-size: 11px;
    color: var(--text-mute);
}

.pricing-basic {
    text-align: center;
    padding: 24px 18px;
    background: #FFF;
    border: 2px solid var(--navy);
    border-radius: 14px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-card);
}
.pricing-basic-label {
    display: inline-block;
    font-size: 12px;
    color: #FFF;
    background: var(--navy);
    letter-spacing: 0.18em;
    padding: 4px 14px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 14px;
}
.pricing-basic-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.pricing-basic-amount .num {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 56px;
    color: var(--coral);
    line-height: 1;
}
.pricing-basic-amount .unit { font-size: 18px; color: var(--text); font-weight: 700; }
.pricing-basic-amount .per { display: block; width: 100%; font-size: 13px; color: var(--text-sub); margin-top: 4px; font-weight: 500; }
.pricing-basic-note { font-size: 12px; color: var(--text-sub); line-height: 1.7; }

.pricing-discount-title {
    text-align: center;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 18px;
    color: var(--navy);
}
.pricing-discount-title strong {
    display: block;
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 36px;
    color: var(--coral);
    margin-top: 4px;
    letter-spacing: 0.01em;
}
.pricing-table { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.pricing-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 16px 18px;
    background: #FFF;
    border: 1px solid var(--border);
    border-radius: 10px;
}
.pricing-row-recommend {
    border: 2px solid var(--coral);
    background: #FFFAFA;
}
.pricing-row-badge {
    position: absolute;
    top: -10px; left: 14px;
    font-size: 11px;
    font-weight: 700;
    color: #FFF;
    background: var(--coral);
    padding: 2px 12px;
    border-radius: 999px;
    letter-spacing: 0.05em;
}
.pricing-row-time { font-size: 14px; color: var(--text); font-weight: 700; }
.pricing-row-rate { font-size: 13px; color: var(--coral); font-weight: 700; }
.pricing-row-rate strong {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 26px;
    margin-right: 2px;
}

.pricing-discount-example {
    text-align: center;
    font-size: 13px;
    line-height: 1.9;
    padding: 14px;
    background: #FFF;
    border: 1px dashed var(--border);
    border-radius: 10px;
    color: var(--text-sub);
    margin-bottom: 22px;
}
.pricing-discount-example strong {
    color: var(--coral);
    font-size: 16px;
    font-weight: 900;
    display: block;
    margin-top: 4px;
}

.pricing-notes { display: flex; flex-direction: column; gap: 6px; }
.pricing-notes li {
    position: relative;
    padding-left: 18px;
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.7;
}
.pricing-notes li::before {
    content: '※';
    position: absolute;
    left: 0;
    color: var(--coral);
}

/* ============================================
   Flow Section
============================================ */
.flow {
    padding: 72px 0;
    background: #FFF;
}
.flow-list { display: flex; flex-direction: column; gap: 14px; counter-reset: step; }
.flow-item {
    position: relative;
    padding: 24px 20px 22px;
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    text-align: center;
}
.flow-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -14px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--navy);
    z-index: 1;
}
.flow-step-label {
    display: inline-block;
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: #FFF;
    background: var(--navy);
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.flow-step-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flow-step-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.flow-step-title {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.5;
    color: var(--navy);
    margin-bottom: 10px;
}
.flow-item p {
    font-size: 13px;
    line-height: 1.85;
    color: var(--text-sub);
    text-align: left;
}
.flow-item p small {
    display: block;
    font-size: 11px;
    color: var(--coral);
    margin-top: 6px;
    font-weight: 700;
}

/* ============================================
   Evidence Section
============================================ */
.evidence {
    padding: 72px 0;
    background: var(--bg-base);
}
.evidence-lead {
    text-align: center;
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-sub);
    margin-bottom: 28px;
}
.evidence-lead strong {
    display: block;
    color: var(--coral);
    font-weight: 900;
    margin-top: 6px;
    font-size: 16px;
}

.evidence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.evidence-card {
    padding: 16px 12px;
    background: #FFF;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-card);
}
.evidence-card-img {
    width: 110px;
    height: 110px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.evidence-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.evidence-card h3 {
    font-size: 15px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 6px;
}
.evidence-card p {
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-sub);
}
.evidence-card p strong { color: var(--coral); font-weight: 900; }

.evidence-warn {
    padding: 22px 18px;
    background: #FFF;
    border: 2px dashed var(--coral);
    border-radius: 14px;
}
.evidence-warn h3 {
    font-size: 16px;
    font-weight: 900;
    color: var(--coral);
    margin-bottom: 14px;
    text-align: center;
}
.evidence-warn h3::before {
    content: '⚠';
    margin-right: 6px;
}
.evidence-warn ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.evidence-warn li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text);
}
.evidence-warn li::before {
    content: '×';
    position: absolute;
    left: 4px;
    color: var(--coral);
    font-weight: 900;
}
.evidence-warn-conclusion {
    font-size: 13px;
    line-height: 1.8;
    color: var(--navy);
    font-weight: 700;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    text-align: center;
}

/* ============================================
   Reviews Section
============================================ */
.reviews {
    padding: 72px 0;
    background: #FFF;
}
.review-card {
    margin-bottom: 14px;
    padding: 20px 18px;
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}
.review-card:last-child { margin-bottom: 0; }
.review-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.review-avatar {
    width: 64px; height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.review-stars {
    color: #F5B100;
    font-size: 16px;
    letter-spacing: 0.15em;
    margin-bottom: 2px;
}
.review-meta {
    font-size: 12px;
    color: var(--text-sub);
}
.review-text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text);
}

/* ============================================
   Area Section
============================================ */
.area {
    padding: 72px 0;
    background: var(--bg-base);
}
.area-map {
    margin-bottom: 22px;
    text-align: center;
}
.area-map img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 12px;
}
.area-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}
.area-list li {
    text-align: center;
    padding: 10px 6px;
    background: #FFF;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}
.area-note {
    font-size: 11px;
    color: var(--text-sub);
    text-align: center;
    line-height: 1.7;
}

/* ============================================
   FAQ Section
============================================ */
.faq {
    padding: 72px 0;
    background: #FFF;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
}
.faq-item summary {
    position: relative;
    padding: 16px 50px 16px 50px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    cursor: pointer;
    list-style: none;
    color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
    content: 'Q';
    position: absolute;
    left: 16px;
    top: 14px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #FFF;
    border-radius: 50%;
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 13px;
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
    position: relative;
    padding: 0 18px 16px 50px;
    font-size: 13px;
    line-height: 1.85;
    color: var(--text-sub);
}
.faq-item p::before {
    content: 'A';
    position: absolute;
    left: 16px;
    top: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral);
    color: #FFF;
    border-radius: 50%;
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 13px;
}

/* ============================================
   Contact (Final CTA)
============================================ */
.contact {
    padding: 72px 0;
    background:
        radial-gradient(ellipse at center, rgba(91, 156, 214, 0.12) 0%, transparent 60%),
        var(--navy);
    color: #FFF;
    text-align: center;
}
.contact-pretitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.contact-title {
    font-weight: 900;
    font-size: 26px;
    line-height: 1.5;
    color: #FFF;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}
.contact-text {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.86);
    margin-bottom: 28px;
}
.contact-cta { display: flex; flex-direction: column; gap: 12px; }

/* ============================================
   Footer
============================================ */
.footer {
    padding: 36px 0 28px;
    background: var(--navy-deep);
    text-align: center;
    color: rgba(255,255,255,0.7);
}
.footer-logo img {
    height: 26px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
.footer-tagline {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin: 12px 0 14px;
    font-weight: 700;
}
.footer-copy {
    font-family: var(--font-en);
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
}

/* ============================================
   Tablet / Desktop (≥768px)
============================================ */
@media (min-width: 768px) {
    body { padding-bottom: 0; }

    .header-tel { padding: 8px 16px; }
    .header-tel span { display: inline; }

    .section-heading { font-size: 36px; }

    .hero { padding-bottom: 0; }
    .hero-bg-photo { background-position: center 25%; }
    .hero-seal { top: 92px; right: 28px; width: 140px; height: 140px; }
    .hero-seal-num { font-size: 48px; }
    .hero-seal-num small { font-size: 22px; }
    .hero-seal-bottom { font-size: 20px; }
    .hero-seal-top { font-size: 12px; }
    .hero-headline-l1, .hero-headline-l3 { font-size: 32px; }
    .hero-headline-l2 { font-size: 38px; }
    .hero-cta { max-width: 600px; }
    .hero-btn-tel strong { font-size: 22px; }
    .hero-btn-line { font-size: 17px; }

    .fixed-cta { display: none; }
    .floating-seal { bottom: 24px; right: 24px; width: 92px; height: 92px; }
    .floating-seal-num { font-size: 32px; }
    .floating-seal-num small { font-size: 16px; }
    .floating-seal-bottom { font-size: 13px; }
    .floating-seal-top { font-size: 10px; }

    .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .stat-card-num strong { font-size: 42px; }

    .concerns-grid { grid-template-columns: repeat(3, 1fr); }

    .feature-card { padding: 36px 28px 28px; }
    .feature-img { width: 200px; height: 200px; }

    .evidence-grid { grid-template-columns: repeat(4, 1fr); }
    .evidence-card-img { width: 130px; height: 130px; }

    .area-list { grid-template-columns: repeat(6, 1fr); }

    .contact-cta { flex-direction: row; max-width: 600px; margin: 0 auto; }
    .contact-cta .btn-tel, .contact-cta .btn-line { flex: 1; }
    .contact-title { font-size: 32px; }
}

/* Body lock when drawer open */
body.is-locked { overflow: hidden; }
