/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* === PASTEL PALETTE (Phase 1) === */
    /* Backgrounds: off-white / cream tones */
    --bg: #FFFCF2;
    --bg-cream: #FFF8E7;
    --bg-soft: #FFFDF6;
    --bg-pink: #FFF1ED;
    --bg-green: #EAF6E3;
    --bg-blue: #ECF5F9;
    --bg-yellow: #FFFAE0;
    --bg-mint: #E2F1E2;

    /* Greens: fresh mint (mama-friendly) */
    --green: #7BC67E;
    --green-dark: #4CAF50;
    --green-deep: #388E4B;
    /* for dark text on cream */
    --green-light: #A5D6A8;
    --green-pale: #DBEFD3;

    /* Accents */
    --orange: #FFB078;
    /* softer */
    --orange-dark: #FF8A4C;
    --orange-pale: #FFE4D0;
    --yellow: #FFD06A;
    --yellow-pale: #FFF1C8;

    /* Coral pink — primary accent (per spec) */
    --pink: #FF8A80;
    --pink-dark: #F06960;
    --pink-pale: #FFE2DE;
    --pink-soft: #FFB0A8;

    --sky: #9CD0E2;
    --sky-pale: #D6EBF2;
    --purple: #BFB1E5;
    --purple-pale: #E5DDF2;

    /* Text: dark gray, no pure black */
    --ink: #333333;
    --ink-soft: #555555;
    --ink-light: #888888;
    --line: #ECE4D2;

    /* Radii: bigger curves per spec */
    --r-sm: 14px;
    --r-md: 24px;
    --r-lg: 32px;
    --r-xl: 44px;
    --r-pill: 999px;
    --r-blob: 60% 40% 55% 45% / 50% 60% 40% 50%;

    /* Shadows: soft & dreamy */
    --shadow-sm: 0 2px 10px rgba(123, 198, 126, 0.10);
    --shadow: 0 8px 28px rgba(76, 175, 80, 0.10);
    --shadow-lg: 0 18px 48px rgba(76, 175, 80, 0.16);
    --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.04);
    --shadow-pop: 0 6px 0 0 rgba(0, 0, 0, 0.06);

    /* Type: rounded primary */
    --f-display: 'DM Serif Display', serif;
    --f-round: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    --f-body: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    --f-bold: 'Noto Sans JP', sans-serif;
    --f-hand: 'Caveat', cursive;

    --t: 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
    --t-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--f-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    background: none;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--green);
    color: #fff;
    padding: 8px 16px;
    z-index: 1000;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   LAYOUT
   ============================================ */
.wrap {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.04);
}

.container {
    padding: 0 22px;
}

/* On large screens: keep mobile-first single column centered with side decorations */
@media (min-width: 800px) {
    body {
        background: linear-gradient(180deg, #F2E9D8 0%, #EDE1CB 100%);
    }

    .wrap {
        max-width: 500px;
        box-shadow: 0 0 80px rgba(0, 0, 0, 0.10);
    }
}

/* ============================================
   REUSABLE: SVG decorations
   ============================================ */
.squiggle-svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Hand-drawn underline */
.hl {
    background: linear-gradient(transparent 58%, var(--yellow-pale) 58%, var(--yellow-pale) 92%, transparent 92%);
    padding: 0 4px;
    font-weight: 900;
}

.hl-pink {
    background: linear-gradient(transparent 58%, var(--pink-pale) 58%, var(--pink-pale) 92%, transparent 92%);
    padding: 0 4px;
    font-weight: 900;
}

.hl-orange {
    background: linear-gradient(transparent 58%, var(--orange-pale) 58%, var(--orange-pale) 92%, transparent 92%);
    padding: 0 4px;
    font-weight: 900;
}

/* Star sparkle */
.spark {
    display: inline-block;
    position: relative;
    font-style: normal;
}

.spark::before,
.spark::after {
    content: "✦";
    position: absolute;
    color: var(--yellow);
    font-size: 0.7em;
    animation: twinkle 2.4s ease-in-out infinite;
}

.spark::before {
    top: -10px;
    left: -14px;
}

.spark::after {
    bottom: -2px;
    right: -16px;
    animation-delay: 1.2s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(20deg);
    }
}

/* Dotted bg */
.bg-dots-soft {
    background-image: radial-gradient(circle, rgba(58, 122, 92, 0.10) 1.2px, transparent 1.2px);
    background-size: 20px 20px;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Float bob */
@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes bob-rotate {

    0%,
    100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-8px) rotate(4deg);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   HEADER — light over pastel hero
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    z-index: 100;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--t);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 252, 242, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all var(--t);
}

.site-header.scrolled::before {
    background: rgba(255, 252, 242, 0.96);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.10);
}

.site-header>* {
    position: relative;
    z-index: 1;
}

.header-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.96rem;
    color: var(--green-deep);
    letter-spacing: 0.02em;
    transition: color var(--t);
}

.header-logo-img {
    height: 28px;
    width: auto;
    filter: none;
    transition: filter var(--t);
}

/* No more inverted logo: hero is light */

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pink);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 0 var(--pink-dark), 0 6px 14px rgba(255, 138, 128, 0.30);
    transition: transform var(--t), box-shadow var(--t);
    position: relative;
}

.header-cta::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
    border: 2px solid #fff;
    animation: bob 1.8s ease-in-out infinite;
}

.header-cta:hover,
.header-cta:focus-visible {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--pink-dark), 0 3px 8px rgba(255, 138, 128, 0.30);
}

/* ============================================
   STICKY BOTTOM CTA — white bg, colored pills
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--green-pale);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    z-index: 60;
    display: flex;
    gap: 8px;
    box-shadow: 0 -8px 28px rgba(76, 175, 80, 0.10);
}

.sticky-cta::before {
    content: 'ご予約はかんたん30秒！';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--green-deep);
    padding: 4px 14px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.66rem;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.sticky-cta a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.88rem;
    min-height: 52px;
    transition: transform var(--t), box-shadow var(--t);
    position: relative;
}

.btn-phone {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 0 var(--green-dark), 0 6px 16px rgba(76, 175, 80, 0.22);
}

.btn-phone:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--green-dark);
}

.btn-consult {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 4px 0 var(--pink-dark), 0 6px 16px rgba(255, 138, 128, 0.28);
    animation: stickyPulse 2.4s ease-in-out infinite;
}

@keyframes stickyPulse {

    0%,
    100% {
        box-shadow: 0 4px 0 var(--pink-dark), 0 6px 16px rgba(255, 138, 128, 0.28);
    }

    50% {
        box-shadow: 0 4px 0 var(--pink-dark), 0 8px 24px rgba(255, 138, 128, 0.45);
    }
}

.btn-consult:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--pink-dark);
    animation: none;
}

.btn-consult::after {
    content: '';
    display: none;
}

/* ============================================
   HERO — bright pastel, mama-friendly
   ============================================ */
.hero {
    position: relative;
    background:
        radial-gradient(ellipse at 85% -10%, rgba(255, 209, 156, 0.55) 0%, transparent 50%),
        radial-gradient(ellipse at 15% 100%, rgba(156, 208, 226, 0.40) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 30%, rgba(255, 242, 200, 0.5) 0%, transparent 45%),
        linear-gradient(170deg, #FFFBEC 0%, #F5F9E5 55%, #EAF6E3 100%);
    color: var(--ink);
    padding-top: 84px;
    padding-bottom: 0;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    display: none;
}

/* Floating decorative elements */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    animation: floatY 5s ease-in-out infinite;
}

.hero-shape.s1 {
    top: 14%;
    left: 8%;
    width: 18px;
    height: 18px;
    background: var(--pink-soft);
    opacity: 0.7;
    animation-delay: 0s;
}

.hero-shape.s2 {
    top: 26%;
    right: 12%;
    width: 24px;
    height: 24px;
    background: var(--yellow);
    opacity: 0.55;
    animation-delay: 0.8s;
}

.hero-shape.s3 {
    top: 50%;
    left: 4%;
    width: 12px;
    height: 12px;
    background: var(--sky);
    opacity: 0.65;
    animation-delay: 1.4s;
}

.hero-shape.s4 {
    top: 62%;
    right: 6%;
    width: 20px;
    height: 20px;
    background: var(--green-light);
    opacity: 0.5;
    animation-delay: 2s;
}

.hero-shape.s5 {
    top: 78%;
    left: 12%;
    width: 14px;
    height: 14px;
    background: var(--pink);
    opacity: 0.55;
    animation-delay: 2.6s;
}

.hero-shape.s6 {
    top: 36%;
    right: 32%;
    width: 8px;
    height: 8px;
    background: var(--purple);
    opacity: 0.5;
    animation-delay: 3.2s;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-14px) translateX(4px);
    }
}

.cloud {
    position: absolute;
    pointer-events: none;
    animation: floatY 7s ease-in-out infinite;
    z-index: 0;
}

.cloud.c1 {
    top: 6%;
    left: -10px;
    width: 110px;
    opacity: 0.85;
    animation-delay: 0s;
}

.cloud.c2 {
    top: 16%;
    right: -24px;
    width: 90px;
    opacity: 0.7;
    animation-delay: 2s;
}

.cloud.c3 {
    bottom: 14%;
    left: -16px;
    width: 80px;
    opacity: 0.75;
    animation-delay: 4s;
}

.spark-deco {
    position: absolute;
    font-size: 1.1rem;
    color: var(--yellow);
    animation: twinkle 2.4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.spark-deco.k1 {
    top: 14%;
    left: 38%;
    animation-delay: 0s;
}

.spark-deco.k2 {
    top: 44%;
    right: 24%;
    animation-delay: 0.7s;
    color: var(--pink);
}

.spark-deco.k3 {
    top: 70%;
    left: 18%;
    animation-delay: 1.4s;
    color: var(--green);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 16px 22px 30px;
    text-align: center;
}

/* Top-right anniversary badge (40年の実績) */
.hero-anniv {
    position: absolute;
    top: 76px;
    right: 14px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--f-round);
    font-weight: 900;
    text-align: center;
    line-height: 1;
    transform: rotate(10deg);
    box-shadow: 0 8px 22px rgba(255, 138, 128, 0.32);
    z-index: 3;
    animation: bob 3.5s ease-in-out infinite;
}

.hero-anniv::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.hero-anniv .l1 {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
}

.hero-anniv .l2 {
    font-family: var(--f-display);
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1;
    margin: 2px 0;
}

.hero-anniv .l2 small {
    font-family: var(--f-round);
    font-size: 0.5em;
    font-weight: 700;
}

.hero-anniv .l3 {
    font-size: 0.58rem;
    letter-spacing: 0.02em;
}

/* Eyebrow tag */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--green-pale);
    padding: 7px 16px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: var(--green-deep);
    margin-bottom: 16px;
    box-shadow: 0 3px 0 var(--green-pale);
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    animation: bob 1.4s ease-in-out infinite;
}

.hero h1 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: clamp(1.85rem, 7vw, 2.3rem);
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin-bottom: 14px;
    position: relative;
    text-wrap: pretty;
}

.hero h1 .word-yellow,
.hero h1 .word-mint {
    position: relative;
    display: inline-block;
    color: var(--green-deep);
    padding: 0 4px;
}

.hero h1 .word-yellow::before,
.hero h1 .word-mint::before {
    content: '';
    position: absolute;
    inset: 10% -2px 8% -2px;
    background: var(--yellow-pale);
    border-radius: 8px;
    z-index: -1;
}

.hero h1 .word-yellow::after {
    display: none;
}

.hero h1 .word-coral {
    color: var(--pink-dark);
}

/* Hero photo frame — rounded, layered card */
.hero-photo-frame {
    position: relative;
    margin: 6px auto 22px;
    width: 100%;
    max-width: 360px;
    border-radius: var(--r-lg);
    aspect-ratio: 5/4;
    background: var(--green-pale);
    box-shadow: 0 16px 36px rgba(76, 175, 80, 0.18);
    transform: rotate(-1.2deg);
}

.hero-photo-frame::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: var(--yellow);
    border-radius: var(--r-xl);
    z-index: -1;
    opacity: 0.55;
    transform: rotate(3deg);
}

.hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-lg);
    display: block;
}

.hero-photo-frame .balloon-badge {
    position: absolute;
    top: -14px;
    left: -10px;
    background: var(--pink);
    color: #fff;
    padding: 10px 14px;
    border-radius: 50% 50% 50% 8px;
    font-family: var(--f-round);
    font-weight: 900;
    text-align: center;
    line-height: 1.15;
    box-shadow: 0 6px 14px rgba(255, 138, 128, 0.32);
    animation: bob 2.6s ease-in-out infinite;
    transform: rotate(-10deg);
    z-index: 3;
    min-width: 70px;
}

.hero-photo-frame .balloon-badge .big {
    font-size: 1.05rem;
    display: block;
}

.hero-photo-frame .balloon-badge .small {
    font-size: 0.6rem;
    font-weight: 700;
    display: block;
    opacity: 0.95;
}

.hero-photo-frame .ribbon-badge {
    position: absolute;
    bottom: -12px;
    right: -8px;
    background: var(--green);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 0.74rem;
    box-shadow: 0 6px 14px rgba(76, 175, 80, 0.30);
    transform: rotate(4deg);
    z-index: 3;
    white-space: nowrap;
}

.hero-photo-frame .ribbon-badge i {
    color: var(--yellow);
    margin-right: 4px;
}

.hero-sub {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.92rem;
    line-height: 1.95;
    color: var(--ink-soft);
    margin-bottom: 18px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub strong {
    color: var(--green-deep);
    font-weight: 700;
}

.hero-sub small {
    font-size: 0.72em;
    color: var(--ink-light);
}

/* Stats — soft pill cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 0 22px;
    backdrop-filter: none;
}

.hero-stat {
    background: #fff;
    border-radius: var(--r-md);
    padding: 12px 6px 10px;
    box-shadow: 0 4px 0 var(--green-pale);
    border: 1.5px solid var(--green-pale);
    text-align: center;
}

.hero-stat:nth-child(2) {
    box-shadow: 0 4px 0 var(--pink-pale);
    border-color: var(--pink-pale);
}

.hero-stat:nth-child(3) {
    box-shadow: 0 4px 0 var(--yellow-pale);
    border-color: var(--yellow-pale);
}

.hero-stat .num {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 1.45rem;
    color: var(--green-deep);
    line-height: 1.1;
    display: block;
}

.hero-stat:nth-child(2) .num {
    color: var(--pink-dark);
}

.hero-stat:nth-child(3) .num {
    color: var(--orange-dark);
}

.hero-stat .num small {
    font-family: var(--f-round);
    font-size: 0.5em;
    font-weight: 700;
}

.hero-stat .lbl {
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.64rem;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
    margin-top: 4px;
    display: block;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-cta-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--pink);
    color: #fff;
    padding: 17px 28px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 0 var(--pink-dark), 0 10px 24px rgba(255, 138, 128, 0.35);
    position: relative;
    transition: transform var(--t), box-shadow var(--t);
    animation: ctaPulse 2.4s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 6px 0 var(--pink-dark), 0 10px 24px rgba(255, 138, 128, 0.35);
    }

    50% {
        box-shadow: 0 6px 0 var(--pink-dark), 0 14px 32px rgba(255, 138, 128, 0.50);
    }
}

.hero-cta-main:hover {
    transform: translateY(3px);
    box-shadow: 0 3px 0 var(--pink-dark), 0 4px 14px rgba(255, 138, 128, 0.30);
    animation: none;
}

.hero-cta-main .new-badge {
    position: absolute;
    top: -10px;
    right: -8px;
    background: var(--yellow);
    color: var(--green-deep);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-round);
    font-size: 0.55rem;
    font-weight: 900;
    border: 2.5px solid #fff;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
    animation: bob-rotate 2.2s ease-in-out infinite;
}

.hero-cta-tel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: var(--green-deep);
    padding: 12px 22px;
    border-radius: var(--r-pill);
    border: 1.5px solid var(--green-pale);
    font-family: var(--f-display);
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 0 var(--green-pale);
}

.hero-cta-tel .tel-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.hero-cta-tel small {
    font-family: var(--f-round);
    font-size: 0.66rem;
    font-weight: 700;
    display: block;
    color: var(--ink-light);
    margin-top: -2px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    justify-content: center;
    font-family: var(--f-round);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 14px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    border: 1px solid var(--green-pale);
}

.hero-trust i {
    color: var(--pink);
    font-size: 0.7rem;
}

.hero-disclaimer {
    font-family: var(--f-round);
    font-size: 0.62rem;
    color: var(--ink-light);
    margin-top: 2px;
}

/* Hero wave bottom */
.hero-wave {
    position: relative;
    line-height: 0;
    margin-top: 8px;
}

.hero-wave svg {
    width: 100%;
    height: 56px;
    display: block;
}

/* ============================================
   WAVE DIVIDERS — reusable section breakers
   ============================================ */
.wave-divider {
    position: relative;
    line-height: 0;
    margin-top: -1px;
    margin-bottom: -1px;
    z-index: 1;
}

.wave-divider svg {
    width: 100%;
    height: 40px;
    display: block;
}

.wave-divider.tall svg {
    height: 56px;
}

/* ============================================
   SECTION BASE
   ============================================ */
section {
    position: relative;
    padding: 64px 0;
}

.s-eyebrow {
    font-family: var(--f-display);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.s-eyebrow::before {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--pink);
    border-radius: 2px;
}

.s-eyebrow .ja {
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.66rem;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
    background: var(--bg-cream);
    padding: 3px 10px;
    border-radius: var(--r-pill);
}

.s-title {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: clamp(1.45rem, 5.8vw, 1.85rem);
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: 0.01em;
    text-wrap: pretty;
}

.s-title .em {
    color: var(--pink-dark);
}

.s-title .em-green {
    color: var(--green-deep);
}

.s-desc {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.88rem;
    line-height: 2;
    color: var(--ink-soft);
    margin-bottom: 28px;
    letter-spacing: 0.01em;
}

.s-desc strong {
    color: var(--green-deep);
}

/* ============================================
   WAVE DIVIDERS
   ============================================ */
.wave-div {
    line-height: 0;
}

.wave-div svg {
    width: 100%;
    height: 36px;
    display: block;
}

/* ============================================
   PLEDGE — 4つのお約束 (circular icons + cards)
   ============================================ */
.s-pledge {
    background: var(--bg-cream);
    padding-top: 80px;
    overflow: hidden;
}

.s-pledge::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 138, 128, 0.18), transparent 70%);
    z-index: 0;
}

.s-pledge::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123, 198, 126, 0.16), transparent 70%);
    z-index: 0;
}

.s-pledge .container {
    position: relative;
    z-index: 1;
}

.pledge-title-wrap {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.pledge-title-wrap .ico-wrap {
    width: 84px;
    height: 84px;
    margin: 0 auto 16px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 0 var(--pink-dark), 0 14px 24px rgba(255, 138, 128, 0.30);
    position: relative;
    animation: bob 3.5s ease-in-out infinite;
}

.pledge-title-wrap .ico-wrap::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2.5px dashed var(--pink-pale);
    border-radius: 50%;
    animation: spin-slow 20s linear infinite;
}

.pledge-title-wrap .ico-wrap::after {
    content: '★';
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 1.2rem;
    color: var(--yellow);
    animation: twinkle 2s ease-in-out infinite;
}

.pledge-title-wrap h2 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--ink);
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.pledge-title-wrap h2 .num {
    font-family: var(--f-display);
    color: var(--pink-dark);
    font-size: 2.2rem;
    display: inline-block;
    transform: translateY(4px);
    margin: 0 4px;
}

.pledge-title-wrap p {
    font-family: var(--f-round);
    font-size: 0.86rem;
    color: var(--ink-soft);
    margin-top: 12px;
}

.pledge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pledge-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 32px 14px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 0 var(--green-pale), 0 12px 24px rgba(76, 175, 80, 0.08);
    border: none;
    transition: transform var(--t), box-shadow var(--t);
}

.pledge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 0 var(--green-pale), 0 18px 32px rgba(76, 175, 80, 0.14);
}

.pledge-card:nth-child(2) {
    box-shadow: 0 8px 0 var(--pink-pale), 0 12px 24px rgba(255, 138, 128, 0.08);
}

.pledge-card:nth-child(2):hover {
    box-shadow: 0 12px 0 var(--pink-pale), 0 18px 32px rgba(255, 138, 128, 0.14);
}

.pledge-card:nth-child(3) {
    box-shadow: 0 8px 0 var(--yellow-pale), 0 12px 24px rgba(255, 208, 106, 0.10);
}

.pledge-card:nth-child(3):hover {
    box-shadow: 0 12px 0 var(--yellow-pale), 0 18px 32px rgba(255, 208, 106, 0.18);
}

.pledge-card:nth-child(4) {
    box-shadow: 0 8px 0 var(--sky-pale), 0 12px 24px rgba(156, 208, 226, 0.14);
}

.pledge-card:nth-child(4):hover {
    box-shadow: 0 12px 0 var(--sky-pale), 0 18px 32px rgba(156, 208, 226, 0.22);
}

.pledge-card .num-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 1.05rem;
    box-shadow: 0 3px 0 var(--green-dark);
    z-index: 1;
}

.pledge-card:nth-child(2) .num-tag {
    background: var(--pink);
    box-shadow: 0 3px 0 var(--pink-dark);
}

.pledge-card:nth-child(3) .num-tag {
    background: var(--yellow);
    color: var(--green-deep);
    box-shadow: 0 3px 0 #d6a832;
}

.pledge-card:nth-child(4) .num-tag {
    background: var(--sky);
    box-shadow: 0 3px 0 #5f9ab4;
}

.pledge-card .ico {
    width: 60px;
    height: 60px;
    margin: 8px auto 14px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--green-deep);
    position: relative;
}

.pledge-card:nth-child(2) .ico {
    background: var(--pink-pale);
    color: var(--pink-dark);
}

.pledge-card:nth-child(3) .ico {
    background: var(--yellow-pale);
    color: var(--orange-dark);
}

.pledge-card:nth-child(4) .ico {
    background: var(--sky-pale);
    color: #3F7E96;
}

.pledge-card .ico::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1.5px dashed currentColor;
    border-radius: 50%;
    opacity: 0.3;
}

.pledge-card h4 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--ink);
    line-height: 1.55;
    margin-bottom: 8px;
}

.pledge-card p {
    font-family: var(--f-round);
    font-size: 0.74rem;
    line-height: 1.8;
    color: var(--ink-soft);
}

/* ============================================
   CONCERN — 3×2 grid cards w/ illustrative icons
   ============================================ */
.s-concern {
    background: linear-gradient(180deg, var(--bg-pink) 0%, #FFF8F5 100%);
    padding-top: 80px;
    overflow: hidden;
}

.concern-bg-blob {
    position: absolute;
    top: 6%;
    right: -40px;
    width: 160px;
    height: 160px;
    background: var(--pink-pale);
    border-radius: var(--r-blob);
    opacity: 0.6;
    z-index: 0;
}

.concern-bg-blob2 {
    position: absolute;
    bottom: 14%;
    left: -50px;
    width: 140px;
    height: 140px;
    background: var(--yellow-pale);
    border-radius: var(--r-blob);
    opacity: 0.7;
    z-index: 0;
}

.s-concern .container {
    position: relative;
    z-index: 1;
}

.worry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.worry-card {
    background: #fff;
    border-radius: var(--r-md);
    padding: 18px 12px 14px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 0 var(--pink-pale), 0 8px 18px rgba(255, 138, 128, 0.08);
    border: 1.5px solid var(--pink-pale);
    transition: transform var(--t), box-shadow var(--t);
}

.worry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 0 var(--pink-pale), 0 12px 24px rgba(255, 138, 128, 0.14);
}

.worry-card .worry-ico {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--pink-pale);
    color: var(--pink-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
}

.worry-card:nth-child(2) .worry-ico {
    background: var(--yellow-pale);
    color: var(--orange-dark);
}

.worry-card:nth-child(3) .worry-ico {
    background: var(--green-pale);
    color: var(--green-deep);
}

.worry-card:nth-child(4) .worry-ico {
    background: var(--sky-pale);
    color: #3F7E96;
}

.worry-card:nth-child(5) .worry-ico {
    background: var(--purple-pale);
    color: #6E5BA8;
}

.worry-card:nth-child(6) .worry-ico {
    background: var(--orange-pale);
    color: var(--orange-dark);
}

.worry-card .worry-ico::before {
    content: '?';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    font-family: var(--f-display);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.worry-card p {
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--ink);
    margin: 0;
}

/* Old worry-list/worry-item — fallback (in case of cached refs) */
.worry-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.worry-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    padding: 14px 16px 14px 50px;
    border-radius: var(--r-md);
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--ink);
    position: relative;
    box-shadow: 0 3px 0 var(--pink-pale);
    border: 1.5px solid var(--pink-pale);
}

.worry-item::before {
    content: '\f071';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
}

/* Self-check */
.self-check {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 30px 18px 22px;
    margin-top: 32px;
    position: relative;
    box-shadow: 0 8px 0 var(--green-pale), 0 16px 32px rgba(76, 175, 80, 0.10);
    border: 2px solid var(--green-pale);
}

.self-check .deco-tape {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: var(--yellow);
    color: var(--green-deep);
    padding: 6px 20px;
    border-radius: 6px;
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.10);
}

.self-check h3 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--ink);
    margin-top: 8px;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.self-check h3 i {
    color: var(--pink-dark);
}

.self-check .lead {
    font-family: var(--f-round);
    font-size: 0.8rem;
    color: var(--ink-soft);
    text-align: center;
    margin-bottom: 18px;
    line-height: 1.75;
}

.self-check .lead strong {
    color: var(--pink-dark);
    font-weight: 700;
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-cream);
    border-radius: var(--r-sm);
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.82rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--t);
}

.check-item:hover {
    background: var(--yellow-pale);
}

.check-item.checked {
    background: var(--pink-pale);
    border-color: var(--pink);
}

.check-item input {
    display: none;
}

.check-item .box {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid var(--green-light);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-dark);
    font-size: 0.78rem;
    flex-shrink: 0;
    transition: all var(--t);
}

.check-item.checked .box {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}

.check-result {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--r-md);
    background: var(--bg-cream);
    border: 2px dashed var(--green-pale);
    font-family: var(--f-round);
    font-size: 0.82rem;
    line-height: 1.75;
    color: var(--ink-soft);
    display: none;
}

.check-result.show {
    display: block;
}

.check-result.level3 {
    background: var(--pink-pale);
    border-color: var(--pink);
    color: var(--ink);
}

.check-result.level2 {
    background: var(--yellow-pale);
    border-color: var(--yellow);
    color: var(--ink);
}

.check-result strong {
    color: var(--pink-dark);
    display: block;
    margin-bottom: 6px;
}

.check-result .cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pink);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 0.84rem;
    margin-top: 10px;
    box-shadow: 0 4px 0 var(--pink-dark);
}

.bunting {
    position: relative;
    height: 30px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.bunting::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 2px;
    height: 2px;
    background: var(--orange);
    opacity: 0.4;
}

.bunting span {
    width: 14px;
    height: 20px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    animation: bob 2.4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.bunting span:nth-child(1) {
    background: var(--orange);
    animation-delay: 0s;
}

.bunting span:nth-child(2) {
    background: var(--yellow);
    animation-delay: 0.2s;
}

.bunting span:nth-child(3) {
    background: var(--pink);
    animation-delay: 0.4s;
}

.bunting span:nth-child(4) {
    background: var(--sky);
    animation-delay: 0.6s;
}

.bunting span:nth-child(5) {
    background: var(--green-light);
    animation-delay: 0.8s;
}

.bunting span:nth-child(6) {
    background: var(--orange);
    animation-delay: 1.0s;
}

.bunting span:nth-child(7) {
    background: var(--yellow);
    animation-delay: 1.2s;
}

.bunting span:nth-child(8) {
    background: var(--pink);
    animation-delay: 1.4s;
}

.bunting span:nth-child(9) {
    background: var(--sky);
    animation-delay: 1.6s;
}

/* ============================================
   MID CTA (inline)
   ============================================ */
.mid-cta-wrap {
    padding: 20px 22px 32px;
    background: var(--bg-pink);
}

.mid-cta {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 32px 22px 26px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 28px rgba(255, 138, 128, 0.18);
    border: 2px solid var(--yellow);
}

.mid-cta::before {
    content: '\f004';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--pink);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(255, 138, 128, 0.30);
}

.mid-cta::after {
    content: '✦';
    position: absolute;
    top: 10px;
    right: 14px;
    color: var(--yellow);
    font-size: 1.2rem;
    animation: twinkle 2.4s ease-in-out infinite;
}

.mid-cta p {
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--ink);
    margin: 8px 0 18px;
}

.mid-cta p .accent {
    font-weight: 900;
    color: var(--pink-dark);
}

.mid-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink);
    color: #fff;
    padding: 15px 30px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.98rem;
    box-shadow: 0 6px 0 var(--pink-dark), 0 10px 22px rgba(255, 138, 128, 0.32);
    transition: transform var(--t), box-shadow var(--t);
}

.mid-cta a:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 var(--pink-dark), 0 5px 12px rgba(255, 138, 128, 0.25);
}

.mid-cta small {
    display: block;
    font-family: var(--f-round);
    font-size: 0.72rem;
    color: var(--ink-light);
    margin-top: 12px;
    line-height: 1.7;
}

.mid-cta small a {
    background: none;
    color: var(--pink-dark);
    padding: 0;
    font-weight: 900;
    box-shadow: none;
    display: inline;
    transform: none;
}

.mid-cta small a:hover {
    transform: none;
    box-shadow: none;
}

/* ============================================
   CAUSE — diagram-feel cards
   ============================================ */
.s-cause {
    background: var(--bg-yellow);
    overflow: hidden;
}

.s-cause::before {
    content: '';
    position: absolute;
    top: 8%;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 176, 120, 0.30), transparent 70%);
    z-index: 0;
}

.s-cause::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 208, 106, 0.30), transparent 70%);
    z-index: 0;
}

.s-cause .container {
    position: relative;
    z-index: 1;
}

.cause-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 24px 20px;
    margin-bottom: 14px;
    box-shadow: 0 6px 0 var(--green-pale), 0 10px 22px rgba(76, 175, 80, 0.08);
    border: none;
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cause-card::before {
    content: '';
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.3rem;
}

.cause-card:nth-of-type(1)::before {
    content: '\f06c';
}

.cause-card:nth-of-type(2)::before {
    content: '\f017';
    background: var(--orange-pale);
    color: var(--orange-dark);
}

.cause-card .body {
    flex: 1;
    min-width: 0;
}

.cause-card .icn-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-pale);
    color: var(--green-deep);
    padding: 4px 10px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.66rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.cause-card:nth-of-type(2) .icn-tag {
    background: var(--orange-pale);
    color: var(--orange-dark);
}

.cause-card .icn-tag i {
    display: none;
}

.cause-card h3 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 1.02rem;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.5;
}

.cause-card p {
    font-family: var(--f-round);
    font-size: 0.84rem;
    line-height: 1.95;
    color: var(--ink-soft);
}

.cause-card .emph {
    background: linear-gradient(transparent 55%, var(--yellow) 55%, var(--yellow) 92%, transparent 92%);
    padding: 0 2px;
    font-weight: 700;
    color: var(--ink);
}

/* ============================================
   HEALTH — 2×2 diagram cards w/ centered icon
   ============================================ */
.s-health {
    background: linear-gradient(180deg, var(--bg-blue) 0%, #FAFCFE 100%);
    overflow: hidden;
}

.s-health::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(156, 208, 226, 0.28), transparent 70%);
}

.s-health .container {
    position: relative;
    z-index: 1;
}

.health-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.health-card {
    background: #fff;
    border-radius: var(--r-md);
    padding: 20px 14px 16px;
    position: relative;
    box-shadow: 0 5px 0 var(--sky-pale), 0 8px 18px rgba(156, 208, 226, 0.14);
    border: none;
    transition: transform var(--t), box-shadow var(--t);
    text-align: center;
}

.health-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 0 var(--sky-pale), 0 14px 26px rgba(156, 208, 226, 0.22);
}

.health-card .ico {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sky-pale);
    color: #3F7E96;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 10px;
    position: relative;
}

.health-card:nth-child(2) .ico {
    background: var(--pink-pale);
    color: var(--pink-dark);
}

.health-card:nth-child(3) .ico {
    background: var(--purple-pale);
    color: #6E5BA8;
}

.health-card:nth-child(4) .ico {
    background: var(--yellow-pale);
    color: var(--orange-dark);
}

.health-card .ico::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1.5px dashed currentColor;
    border-radius: 50%;
    opacity: 0.3;
}

.health-card h4 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 0.92rem;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.45;
}

.health-card p {
    font-family: var(--f-round);
    font-size: 0.74rem;
    line-height: 1.75;
    color: var(--ink-soft);
    text-align: left;
}

/* ============================================
   APPROACH / DUAL KIDS BRAND BLOCK
   ============================================ */
.s-approach {
    background: var(--bg);
    padding-top: 64px;
    overflow: hidden;
}

.s-approach::before {
    content: '';
    position: absolute;
    top: 12%;
    left: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 138, 128, 0.16), transparent 70%);
    z-index: 0;
}

.s-approach .container {
    position: relative;
    z-index: 1;
}

.brand-mark {
    position: relative;
    text-align: center;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(255, 208, 106, 0.30), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(255, 138, 128, 0.28), transparent 55%),
        linear-gradient(135deg, #4CAF50 0%, #66BB6A 60%, #81C784 100%);
    color: #fff;
    border-radius: var(--r-xl);
    padding: 32px 22px 28px;
    margin: 8px 0 24px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(76, 175, 80, 0.30);
}

.brand-mark::after {
    content: '✦';
    position: absolute;
    top: 14px;
    right: 16px;
    color: var(--yellow);
    font-size: 1.4rem;
    animation: twinkle 2.4s ease-in-out infinite;
}

.brand-mark>* {
    position: relative;
    z-index: 1;
}

.brand-mark .small {
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--yellow);
    letter-spacing: 0.14em;
    margin-bottom: 6px;
}

.brand-mark .logo-text {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 2.6rem;
    line-height: 1.05;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.brand-mark .logo-text .kids {
    background: linear-gradient(180deg, var(--yellow) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.brand-mark .ja {
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
}

.brand-mark .pills {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.brand-mark .pill {
    background: rgba(255, 255, 255, 0.20);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.72rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

/* Visual side-by-side compare */
.compare-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.compare-cards::before {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: 3px solid var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 0.85rem;
    color: var(--pink-dark);
    z-index: 2;
    box-shadow: 0 6px 14px rgba(255, 138, 128, 0.22);
}

.compare-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 24px 20px 20px;
    position: relative;
    box-shadow: 0 5px 0 var(--line), 0 8px 18px rgba(0, 0, 0, 0.04);
    border: none;
}

.compare-card.is-our {
    background: linear-gradient(135deg, #FFFAEA 0%, #FFF1EC 100%);
    box-shadow: 0 5px 0 var(--pink), 0 12px 28px rgba(255, 138, 128, 0.18);
}

.compare-card .tag-lbl {
    position: absolute;
    top: -14px;
    left: 20px;
    background: var(--ink-light);
    color: #fff;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.compare-card.is-our .tag-lbl {
    background: var(--pink);
    padding-left: 28px;
    box-shadow: 0 3px 0 var(--pink-dark);
}

.compare-card.is-our .tag-lbl::before {
    content: '★';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--yellow);
    font-size: 0.85rem;
    animation: twinkle 1.8s ease-in-out infinite;
}

.compare-card h3 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 1rem;
    color: var(--ink-soft);
    margin: 10px 0 8px;
    line-height: 1.55;
}

.compare-card.is-our h3 {
    color: var(--pink-dark);
}

.compare-card p {
    font-family: var(--f-round);
    font-size: 0.82rem;
    line-height: 1.9;
    color: var(--ink-soft);
}

.compare-card p strong {
    color: var(--green-deep);
    font-weight: 700;
}

.compare-card.is-our p strong {
    color: var(--pink-dark);
}

.compare-card .micro {
    font-size: 0.7rem;
    color: var(--ink-light);
    margin-top: 8px;
}

/* ============================================
   FEATURE - 3つの特徴 (dark mint)
   ============================================ */
.s-feature {
    background: linear-gradient(165deg, #388E4B 0%, #4CAF50 60%, #66BB6A 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.s-feature::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 208, 106, 0.22), transparent 70%);
}

.s-feature::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 138, 128, 0.18), transparent 70%);
}

.s-feature .container {
    position: relative;
    z-index: 1;
}

.s-feature .s-eyebrow {
    color: var(--yellow);
}

.s-feature .s-eyebrow::before {
    background: var(--yellow);
}

.s-feature .s-eyebrow .ja {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.92);
}

.s-feature .s-title {
    color: #fff;
}

.s-feature .s-title .em {
    color: var(--yellow);
}

.s-feature .s-desc {
    color: rgba(255, 255, 255, 0.86);
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feat-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--r-lg);
    padding: 28px 20px 22px;
    position: relative;
    backdrop-filter: blur(6px);
    transition: transform var(--t), background var(--t);
}

.feat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.18);
}

.feat-card .feat-num {
    position: absolute;
    top: -18px;
    left: 20px;
    background: var(--yellow);
    color: var(--green-deep);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 1.3rem;
    font-weight: 400;
    border: 4px solid #388E4B;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18), 0 8px 18px rgba(255, 208, 106, 0.30);
}

.feat-card .feat-ico {
    position: absolute;
    top: -10px;
    right: 16px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px dashed rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 1.4rem;
}

.feat-card h3 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 1.08rem;
    color: #fff;
    margin: 18px 0 10px;
    line-height: 1.55;
}

.feat-card h3 .ico {
    display: inline-block;
    width: 26px;
    color: var(--yellow);
}

.feat-card p {
    font-family: var(--f-round);
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 2;
    color: rgba(255, 255, 255, 0.94);
}

.feat-card .micro {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 8px;
}

/* ============================================
   DEVICES — interactive tabs
   ============================================ */
.s-devices {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFFDF6 100%);
    overflow: hidden;
}

.s-devices::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(191, 177, 229, 0.20), transparent 70%);
}

.s-devices::after {
    content: '';
    position: absolute;
    bottom: 8%;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 208, 106, 0.20), transparent 70%);
}

.s-devices .container {
    position: relative;
    z-index: 1;
}

.device-stage {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 18px 16px 22px;
    box-shadow: 0 10px 28px rgba(76, 175, 80, 0.10);
    margin-bottom: 16px;
}

.device-tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-cream);
    padding: 5px;
    border-radius: var(--r-pill);
    margin-bottom: 20px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.device-tabs::-webkit-scrollbar {
    display: none;
}

.device-tab {
    flex: 1;
    min-width: max-content;
    padding: 9px 14px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.78rem;
    font-weight: 900;
    color: var(--ink-soft);
    transition: all var(--t);
    white-space: nowrap;
}

.device-tab.is-active {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 3px 0 var(--pink-dark);
}

.device-panels {
    position: relative;
}

.device-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.device-panel.is-active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.device-illust {
    width: 100%;
    aspect-ratio: 4/3;
    background:
        repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(123, 198, 126, 0.06) 14px, rgba(123, 198, 126, 0.06) 15px),
        linear-gradient(135deg, #FAFBF7 0%, #F5F9F0 100%);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    border: 2px dashed var(--green-pale);
}

/* When real photo is supplied: full-bleed cover, no dashed border, no stripes */
.device-illust:has(.device-photo) {
    background: #fff;
    border: 1.5px solid var(--green-pale);
    padding: 0;
}

.device-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.device-illust .device-glyph {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-deep);
    font-size: 2.6rem;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.16);
    border: 3px solid var(--green-pale);
    position: relative;
    z-index: 1;
}

.device-illust .device-glyph::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1.5px dashed var(--green-light);
    border-radius: 50%;
    opacity: 0.55;
}

#dev-1 .device-glyph {
    color: var(--green-deep);
    border-color: var(--green-pale);
}

#dev-2 .device-glyph {
    color: #3F7E96;
    border-color: var(--sky-pale);
}

#dev-2 .device-glyph::before {
    border-color: var(--sky);
}

#dev-3 .device-glyph {
    color: var(--pink-dark);
    border-color: var(--pink-pale);
}

#dev-3 .device-glyph::before {
    border-color: var(--pink);
}

#dev-4 .device-glyph {
    color: var(--orange-dark);
    border-color: var(--orange-pale);
}

#dev-4 .device-glyph::before {
    border-color: var(--orange);
}

#dev-5 .device-glyph {
    color: #6E5BA8;
    border-color: var(--purple-pale);
}

#dev-5 .device-glyph::before {
    border-color: var(--purple);
}

#dev-pre .device-glyph {
    color: var(--orange-dark);
    border-color: var(--orange-pale);
}

#dev-pre .device-glyph::before {
    border-color: var(--orange);
}

.device-illust .placeholder-note {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: ui-monospace, "SF Mono", "Roboto Mono", Menlo, monospace;
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--ink-light);
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.85);
    padding: 3px 10px;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

.device-illust .num-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--pink);
    color: #fff;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    font-family: var(--f-display);
    font-size: 0.8rem;
    box-shadow: 0 3px 0 var(--pink-dark);
    z-index: 2;
}

.device-illust .age-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fff;
    color: var(--green-deep);
    padding: 5px 12px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.72rem;
    font-weight: 900;
    border: 1.5px solid var(--green-pale);
    z-index: 2;
}

.device-name {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 4px;
    line-height: 1.4;
}

.device-en {
    font-family: var(--f-display);
    font-size: 0.86rem;
    color: var(--pink-dark);
    margin-bottom: 14px;
}

.device-desc {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.84rem;
    line-height: 1.95;
    color: var(--ink-soft);
}

.device-meta {
    display: flex;
    gap: 6px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.device-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-cream);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green-deep);
    border: 1px solid var(--green-pale);
}

.device-meta span i {
    color: var(--pink-dark);
}

/* ============================================
   PROCESS — 6-step timeline
   ============================================ */
.s-process {
    background: linear-gradient(180deg, var(--bg-green) 0%, #F5FBF0 100%);
    overflow: hidden;
}

.s-process::before {
    content: '';
    position: absolute;
    top: 8%;
    right: -50px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 208, 106, 0.20), transparent 70%);
}

.s-process::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -50px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 138, 128, 0.15), transparent 70%);
}

.s-process .container {
    position: relative;
    z-index: 1;
}

.process-flow {
    position: relative;
    padding-left: 4px;
}

.process-flow::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 26px;
    bottom: 26px;
    width: 3px;
    background: repeating-linear-gradient(to bottom,
            var(--green-light) 0,
            var(--green-light) 8px,
            transparent 8px,
            transparent 14px);
}

.process-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-num {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 1.15rem;
    border: 4px solid #F5FBF0;
    box-shadow: 0 4px 0 var(--green-dark), 0 6px 12px rgba(76, 175, 80, 0.22);
    position: relative;
    z-index: 1;
}

.process-step:nth-child(2) .process-num {
    background: var(--pink);
    box-shadow: 0 4px 0 var(--pink-dark), 0 6px 12px rgba(255, 138, 128, 0.22);
}

.process-step:nth-child(3) .process-num {
    background: var(--yellow);
    color: var(--green-deep);
    box-shadow: 0 4px 0 #d6a832, 0 6px 12px rgba(255, 208, 106, 0.30);
}

.process-step:nth-child(4) .process-num {
    background: var(--sky);
    box-shadow: 0 4px 0 #5f9ab4, 0 6px 12px rgba(156, 208, 226, 0.30);
}

.process-step:nth-child(5) .process-num {
    background: var(--orange);
    box-shadow: 0 4px 0 var(--orange-dark), 0 6px 12px rgba(255, 176, 120, 0.30);
}

.process-step:nth-child(6) .process-num {
    background: var(--purple);
    box-shadow: 0 4px 0 #8c7ac4, 0 6px 12px rgba(191, 177, 229, 0.30);
}

.process-step:nth-child(7) .process-num {
    background: var(--pink-dark);
    box-shadow: 0 4px 0 #C24A40, 0 6px 12px rgba(240, 105, 96, 0.30);
}

.process-body {
    flex: 1;
    background: #fff;
    border-radius: var(--r-md);
    padding: 16px 18px;
    box-shadow: 0 4px 0 var(--green-pale), 0 6px 14px rgba(0, 0, 0, 0.05);
    border: none;
    position: relative;
}

.process-body::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 18px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid #fff;
}

.process-body h3 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 0.96rem;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.5;
}

.process-body p {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 1.85;
    color: var(--ink-soft);
}

.process-body .note {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    background: var(--orange-pale);
    color: var(--orange-dark);
    padding: 4px 11px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.7rem;
    font-weight: 700;
}

/* ============================================
   SCHEDULE — 1日の来院ステップ
   ============================================ */
.s-schedule {
    background: linear-gradient(180deg, var(--bg-blue) 0%, #F0F8FB 100%);
    overflow: hidden;
}

.s-schedule::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(156, 208, 226, 0.22), transparent 70%);
}

.s-schedule::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(123, 198, 126, 0.18), transparent 70%);
}

.s-schedule .container {
    position: relative;
    z-index: 1;
}

.schedule-timeline {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 22px 18px;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.10);
}

.schedule-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1.5px dashed var(--green-pale);
    position: relative;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-step {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 1.05rem;
    line-height: 1;
    box-shadow: 0 3px 0 var(--green-dark);
    position: relative;
}

.schedule-step small {
    display: block;
    font-family: var(--f-round);
    font-size: 0.5em;
    font-weight: 700;
    margin-top: 2px;
    letter-spacing: 0.08em;
}

.schedule-row:nth-child(2) .schedule-step {
    background: var(--pink);
    box-shadow: 0 3px 0 var(--pink-dark);
}

.schedule-row:nth-child(3) .schedule-step {
    background: var(--yellow);
    color: var(--green-deep);
    box-shadow: 0 3px 0 #d6a832;
}

.schedule-row:nth-child(4) .schedule-step {
    background: var(--sky);
    box-shadow: 0 3px 0 #5f9ab4;
}

.schedule-row:nth-child(5) .schedule-step {
    background: var(--orange);
    box-shadow: 0 3px 0 var(--orange-dark);
}

.schedule-row:nth-child(6) .schedule-step {
    background: var(--purple);
    box-shadow: 0 3px 0 #8c7ac4;
}

.schedule-body {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.schedule-body .lbl {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 0.92rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.schedule-body .lbl .ico {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.schedule-row:nth-child(2) .lbl .ico {
    background: var(--pink-pale);
    color: var(--pink-dark);
}

.schedule-row:nth-child(3) .lbl .ico {
    background: var(--yellow-pale);
    color: var(--orange-dark);
}

.schedule-row:nth-child(4) .lbl .ico {
    background: var(--sky-pale);
    color: #3F7E96;
}

.schedule-row:nth-child(5) .lbl .ico {
    background: var(--orange-pale);
    color: var(--orange-dark);
}

.schedule-row:nth-child(6) .lbl .ico {
    background: var(--purple-pale);
    color: #6E5BA8;
}

.schedule-body p {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.78rem;
    line-height: 1.8;
    color: var(--ink-soft);
}

.schedule-note {
    margin-top: 16px;
    padding: 14px 16px;
    background: var(--bg-yellow);
    border-radius: var(--r-md);
    font-family: var(--f-round);
    font-size: 0.76rem;
    color: var(--ink-soft);
    line-height: 1.75;
    border-left: 4px solid var(--yellow);
}

.schedule-note strong {
    color: var(--pink-dark);
}

/* ============================================
   COMPARE TABLE — visual w/ ribbon + icons
   ============================================ */
.s-compare {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFFEF8 100%);
    overflow: hidden;
}

.s-compare::before {
    content: '';
    position: absolute;
    top: 14%;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 138, 128, 0.16), transparent 70%);
}

.s-compare .container {
    position: relative;
    z-index: 1;
}

.compare-table-wrap {
    border-radius: var(--r-lg);
    background: #fff;
    padding: 14px 8px 8px;
    box-shadow: 0 10px 28px rgba(76, 175, 80, 0.12);
    overflow: visible;
    position: relative;
    margin-top: 12px;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: var(--f-round);
    font-size: 0.8rem;
}

.compare-table thead th {
    padding: 14px 6px 12px;
    text-align: center;
    font-weight: 900;
    color: var(--ink-soft);
    background: transparent;
    font-size: 0.78rem;
    vertical-align: bottom;
    position: relative;
}

.compare-table thead th .h-ico {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--ink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin: 0 auto 6px;
    border: 2px solid var(--line);
}

.compare-table thead th.is-ours {
    background: linear-gradient(180deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: #fff;
    border-radius: var(--r-md) var(--r-md) 0 0;
    position: relative;
    font-size: 0.85rem;
    padding-top: 28px;
}

.compare-table thead th.is-ours .h-ico {
    background: #fff;
    color: var(--pink-dark);
    border: 2px solid var(--yellow);
}

.compare-table thead th.is-ours .crown {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    background: var(--yellow);
    color: var(--green-deep);
    padding: 5px 14px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.62rem;
    font-weight: 900;
    border: 2.5px solid #fff;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
    white-space: nowrap;
    z-index: 2;
}

.compare-table thead th.is-ours .crown::before {
    content: '★ ';
    color: var(--orange-dark);
}

.compare-table tbody td {
    padding: 14px 6px;
    text-align: center;
    border-bottom: 1px dashed var(--line);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody td:first-child {
    text-align: left;
    font-weight: 900;
    color: var(--ink);
    background: var(--bg-cream);
    border-radius: var(--r-sm);
    font-size: 0.78rem;
    padding-left: 12px;
}

.compare-table tbody td.is-ours {
    background: linear-gradient(180deg, #FFF6F2 0%, #FFEAE3 100%);
    color: var(--pink-dark);
    font-weight: 900;
    font-size: 0.84rem;
}

.compare-table tbody td.is-ours::before {
    content: '◎ ';
    color: var(--orange-dark);
}

.compare-table tbody tr:not(:last-child) td.is-ours {
    border-bottom: 1px dashed rgba(255, 138, 128, 0.25);
}

.compare-table tbody tr:last-child td.is-ours {
    border-radius: 0 0 var(--r-md) var(--r-md);
}

/* ============================================
   MERIT — 5つの理由 (numbered cards)
   ============================================ */
.s-merit {
    background: linear-gradient(180deg, var(--bg-pink) 0%, #FFF5F2 100%);
    overflow: hidden;
}

.s-merit::before {
    content: '';
    position: absolute;
    top: 8%;
    right: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 138, 128, 0.18), transparent 70%);
}

.s-merit::after {
    content: '';
    position: absolute;
    bottom: 6%;
    left: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(191, 177, 229, 0.20), transparent 70%);
}

.s-merit .container {
    position: relative;
    z-index: 1;
}

.merit-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: merit;
}

.merit-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 22px 20px 20px 76px;
    box-shadow: 0 6px 0 var(--pink-pale), 0 10px 22px rgba(255, 138, 128, 0.08);
    border: none;
    position: relative;
    transition: transform var(--t), box-shadow var(--t);
    counter-increment: merit;
}

.merit-card::before {
    content: counter(merit, decimal-leading-zero);
    position: absolute;
    left: 16px;
    top: 18px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 1.15rem;
    border: 3px solid #fff;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08), 0 8px 16px rgba(255, 138, 128, 0.30);
}

.merit-card:nth-child(2)::before {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08), 0 8px 16px rgba(76, 175, 80, 0.30);
}

.merit-card:nth-child(3)::before {
    background: linear-gradient(135deg, var(--yellow) 0%, #DEB14F 100%);
    color: var(--green-deep);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08), 0 8px 16px rgba(255, 208, 106, 0.30);
}

.merit-card:nth-child(4)::before {
    background: linear-gradient(135deg, var(--sky) 0%, #5F9AB4 100%);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08), 0 8px 16px rgba(156, 208, 226, 0.30);
}

.merit-card:nth-child(5)::before {
    background: linear-gradient(135deg, var(--purple) 0%, #8C7AC4 100%);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08), 0 8px 16px rgba(191, 177, 229, 0.30);
}

.merit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 var(--pink-pale), 0 16px 32px rgba(255, 138, 128, 0.16);
}

.merit-card .tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--pink-pale);
    color: var(--pink-dark);
    padding: 4px 12px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.7rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.merit-card:nth-child(1) .tag {
    background: var(--green-pale);
    color: var(--green-deep);
}

.merit-card:nth-child(2) .tag {
    background: var(--orange-pale);
    color: var(--orange-dark);
}

.merit-card:nth-child(3) .tag {
    background: var(--yellow-pale);
    color: #B8862E;
}

.merit-card:nth-child(4) .tag {
    background: var(--sky-pale);
    color: #3F7E96;
}

.merit-card:nth-child(5) .tag {
    background: var(--pink-pale);
    color: var(--pink-dark);
}

.merit-card h3 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 0.98rem;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.55;
}

.merit-card p {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.82rem;
    line-height: 1.9;
    color: var(--ink-soft);
}

.merit-card p small {
    color: var(--ink-light);
    font-size: 0.74rem;
}

/* ============================================
   TIMING — age step cards
   ============================================ */
.s-timing {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%);
    overflow: hidden;
}

.s-timing::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 138, 128, 0.16), transparent 70%);
}

.s-timing::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(123, 198, 126, 0.18), transparent 70%);
}

.s-timing .container {
    position: relative;
    z-index: 1;
}

.timing-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 20px 18px;
    margin-bottom: 14px;
    box-shadow: 0 5px 0 var(--green-pale), 0 8px 18px rgba(76, 175, 80, 0.08);
    border: none;
    display: flex;
    gap: 16px;
    transition: transform var(--t), box-shadow var(--t);
}

.timing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 var(--green-pale), 0 12px 24px rgba(76, 175, 80, 0.14);
}

.timing-card .age-circle {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-pale) 0%, var(--bg-mint) 100%);
    color: var(--green-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 1.1rem;
    line-height: 1;
    text-align: center;
    position: relative;
    border: 3px solid #fff;
    box-shadow: 0 4px 0 var(--green-light);
}

.timing-card .age-circle::before {
    content: '';
    position: absolute;
    inset: -7px;
    border: 1.5px dashed currentColor;
    border-radius: 50%;
    opacity: 0.4;
}

.timing-card:nth-of-type(2) .age-circle {
    background: linear-gradient(135deg, var(--pink-pale) 0%, #FFE3E0 100%);
    color: var(--pink-dark);
    box-shadow: 0 4px 0 var(--pink);
}

.timing-card:nth-of-type(3) .age-circle {
    background: linear-gradient(135deg, var(--yellow-pale) 0%, #FFF5D6 100%);
    color: var(--orange-dark);
    box-shadow: 0 4px 0 var(--yellow);
}

.timing-card .age-circle small {
    font-family: var(--f-round);
    font-size: 0.55rem;
    font-weight: 900;
    margin-top: 2px;
    letter-spacing: 0.04em;
}

.timing-card .body {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
}

.timing-card h3 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 0.96rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.timing-card p {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 1.85;
    color: var(--ink-soft);
}

.timing-card p strong {
    color: var(--pink-dark);
}

.timing-alert {
    background: linear-gradient(135deg, var(--bg-yellow) 0%, #FFF5E0 100%);
    border-radius: var(--r-lg);
    padding: 20px 18px;
    margin-top: 20px;
    border-left: 5px solid var(--pink);
    box-shadow: 0 4px 16px rgba(255, 138, 128, 0.10);
}

.timing-alert .ttl {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 0.92rem;
    color: var(--pink-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timing-alert .ttl i {
    width: 28px;
    height: 28px;
    background: var(--pink);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}

.timing-alert ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.timing-alert li {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--ink-soft);
    line-height: 1.65;
    padding-left: 22px;
    position: relative;
}

.timing-alert li::before {
    content: '✓';
    position: absolute;
    left: 2px;
    top: 1px;
    width: 16px;
    height: 16px;
    background: var(--pink);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.66rem;
    font-weight: 900;
}

/* ============================================
   PHOTO BREAK
   ============================================ */
.photo-break {
    position: relative;
    overflow: hidden;
    margin: 0;
    height: 280px;
}

.photo-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.photo-break.in img {
    transform: scale(1.08);
}

.photo-break-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(255, 208, 106, 0.20), transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(56, 142, 75, 0.55) 100%);
}

.photo-break-overlay::before {
    content: '';
    position: absolute;
    top: 14%;
    left: 8%;
    width: 18px;
    height: 18px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.7;
    animation: floatY 4s ease-in-out infinite;
}

.photo-break-overlay::after {
    content: '';
    position: absolute;
    bottom: 18%;
    right: 12%;
    width: 14px;
    height: 14px;
    background: var(--pink);
    border-radius: 50%;
    opacity: 0.7;
    animation: floatY 4.5s ease-in-out infinite 1s;
}

.photo-break-overlay p {
    font-family: var(--f-round);
    font-weight: 900;
    color: #fff;
    font-size: 1.15rem;
    text-align: center;
    line-height: 1.6;
    padding: 0 24px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.photo-break-overlay p .hand {
    font-family: var(--f-hand);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--yellow);
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

/* ============================================
   FEE — price cards
   ============================================ */
.s-fee {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFFDF0 100%);
    overflow: hidden;
}

.s-fee::before {
    content: '';
    position: absolute;
    top: 12%;
    right: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 208, 106, 0.25), transparent 70%);
}

.s-fee::after {
    content: '';
    position: absolute;
    bottom: 8%;
    left: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(123, 198, 126, 0.18), transparent 70%);
}

.s-fee .container {
    position: relative;
    z-index: 1;
}

.fee-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 26px 20px 22px;
    margin-bottom: 16px;
    box-shadow: 0 6px 0 var(--green-pale), 0 12px 28px rgba(76, 175, 80, 0.10);
    border: none;
    position: relative;
}

.fee-card h3 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 1.02rem;
    color: var(--ink);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fee-card h3 i {
    width: 36px;
    height: 36px;
    background: var(--green-pale);
    color: var(--green-deep);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.fee-table {
    width: 100%;
    font-size: 0.86rem;
    font-family: var(--f-round);
}

.fee-table tr {
    border-bottom: 1.5px dashed var(--green-pale);
}

.fee-table tr:last-child {
    border-bottom: none;
}

.fee-table th {
    text-align: left;
    padding: 14px 10px 14px 0;
    font-weight: 900;
    color: var(--green-deep);
    vertical-align: top;
    width: 110px;
    font-size: 0.84rem;
}

.fee-table td {
    padding: 14px 0;
    color: var(--ink-soft);
}

.fee-table .price {
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--pink-dark);
    font-weight: 400;
    letter-spacing: -0.01em;
    display: inline-block;
    margin-right: 4px;
}

.fee-table small {
    color: var(--ink-light);
    font-size: 0.74rem;
    line-height: 1.7;
}

.fee-guarantee {
    background:
        radial-gradient(ellipse at 90% 0%, rgba(255, 208, 106, 0.30), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(255, 138, 128, 0.22), transparent 55%),
        linear-gradient(140deg, #388E4B 0%, #4CAF50 100%);
    border-radius: var(--r-xl);
    padding: 36px 22px 32px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(76, 175, 80, 0.32);
}

.fee-guarantee::before {
    content: '✦';
    position: absolute;
    top: 16px;
    left: 18px;
    color: var(--yellow);
    font-size: 1.4rem;
    animation: twinkle 2.4s ease-in-out infinite;
    z-index: 1;
}

.fee-guarantee::after {
    content: '★';
    position: absolute;
    bottom: 18px;
    right: 22px;
    color: var(--pink-pale);
    font-size: 1.2rem;
    animation: twinkle 2.4s ease-in-out infinite 1s;
    z-index: 1;
}

.fee-guarantee>* {
    position: relative;
    z-index: 2;
}

.fee-guarantee .ribbon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--yellow);
    color: var(--green-deep);
    padding: 7px 18px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    box-shadow: 0 4px 0 #D6A832;
}

.fee-guarantee .ribbon i {
    color: var(--orange-dark);
}

.fee-guarantee h3 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 10px;
}

.fee-guarantee .cap-price {
    font-family: var(--f-display);
    font-size: 3.6rem;
    color: var(--yellow);
    line-height: 1.05;
    margin: 8px 0;
    font-weight: 400;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.fee-guarantee .cap-price small {
    font-family: var(--f-round);
    font-size: 0.34em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.fee-guarantee p {
    font-family: var(--f-round);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.94);
}

.fee-guarantee p strong {
    color: var(--yellow);
    font-weight: 900;
}

.fee-guarantee .micro {
    margin-top: 14px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
}

.fee-note {
    background: #fff;
    border-radius: var(--r-md);
    padding: 18px 18px;
    margin-top: 16px;
    font-family: var(--f-round);
    font-size: 0.78rem;
    color: var(--ink-soft);
    line-height: 1.85;
    border: 1.5px solid var(--green-pale);
}

.fee-note p {
    margin-bottom: 8px;
    padding-left: 14px;
    position: relative;
}

.fee-note p:last-child {
    margin-bottom: 0;
}

.fee-note p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--pink);
    border-radius: 50%;
}

.fee-note strong {
    color: var(--green-deep);
    font-weight: 900;
}

/* Fee eyecatch — 11万円〜 アイキャッチ */
.fee-eyecatch {
    background:
        radial-gradient(ellipse at 90% 0%, rgba(255, 208, 106, 0.30), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(255, 176, 120, 0.25), transparent 55%),
        linear-gradient(135deg, #FFFBE7 0%, #FFF1ED 100%);
    border-radius: var(--r-xl);
    padding: 28px 22px 24px;
    text-align: center;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(255, 138, 128, 0.18);
    border: 2.5px solid var(--yellow);
}

.fee-eyecatch::before {
    content: '✦';
    position: absolute;
    top: 12px;
    left: 16px;
    color: var(--pink);
    font-size: 1.2rem;
    animation: twinkle 2.4s ease-in-out infinite;
}

.fee-eyecatch::after {
    content: '★';
    position: absolute;
    bottom: 14px;
    right: 18px;
    color: var(--yellow);
    font-size: 1.1rem;
    animation: twinkle 2.4s ease-in-out infinite 1s;
}

.fee-eyecatch .fe-tag {
    display: inline-block;
    background: var(--pink);
    color: #fff;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    font-family: var(--f-display);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    box-shadow: 0 3px 0 var(--pink-dark);
    margin-bottom: 12px;
}

.fee-eyecatch .fe-num {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 4.2rem;
    color: var(--pink-dark);
    line-height: 1;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    text-shadow: 0 4px 14px rgba(255, 138, 128, 0.20);
}

.fee-eyecatch .fe-num small {
    font-family: var(--f-round);
    font-size: 0.28em;
    font-weight: 900;
    color: var(--pink-dark);
}

.fee-eyecatch .fe-num .fe-tilde {
    font-family: var(--f-display);
    font-size: 0.7em;
    color: var(--orange-dark);
}

.fee-eyecatch .fe-unit {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 0.86rem;
    color: var(--green-deep);
    margin: 4px 0 12px;
}

.fee-eyecatch .fe-sub {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 1.85;
    color: var(--ink-soft);
}

/* Per-device card — 装置ごとのお支払い */
.per-device-card {
    background:
        radial-gradient(ellipse at 100% 0%, rgba(255, 208, 106, 0.20), transparent 60%),
        linear-gradient(135deg, var(--bg-green) 0%, var(--bg-cream) 100%);
    border-radius: var(--r-xl);
    padding: 26px 20px 22px;
    margin-top: 16px;
    border: 2px solid var(--green-pale);
    position: relative;
    overflow: hidden;
}

.per-device-card::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -14px;
    right: 18px;
    width: 42px;
    height: 42px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.30);
}

.per-device-card .pd-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--green);
    color: #fff;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.72rem;
    font-weight: 900;
    margin-bottom: 12px;
    box-shadow: 0 3px 0 var(--green-dark);
}

.per-device-card h3 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.55;
}

.per-device-card h3 .em {
    color: var(--pink-dark);
}

.per-device-card p {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.84rem;
    line-height: 1.95;
    color: var(--ink-soft);
    margin-bottom: 8px;
}

.per-device-card p strong {
    color: var(--green-deep);
    font-weight: 900;
}

.per-device-card .pd-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1.5px dashed var(--green-pale);
}

.per-device-card .pd-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--green-deep);
}

.per-device-card .pd-point i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.per-device-card .pd-point:nth-child(2) i {
    background: var(--yellow-pale);
    color: var(--orange-dark);
}

.per-device-card .pd-point:nth-child(3) i {
    background: var(--pink-pale);
    color: var(--pink-dark);
}

/* ============================================
   FAQ — accordion w/ Q/A balloons
   ============================================ */
.s-faq {
    background: linear-gradient(180deg, var(--bg-mint) 0%, #F5FAF0 100%);
    position: relative;
    overflow: hidden;
}

.s-faq::before {
    content: '';
    position: absolute;
    top: 4%;
    left: -50px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 208, 106, 0.22), transparent 70%);
}

.s-faq::after {
    content: '';
    position: absolute;
    bottom: 6%;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 138, 128, 0.18), transparent 70%);
}

.s-faq .container {
    position: relative;
    z-index: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: var(--r-md);
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 0 var(--green-pale), 0 6px 16px rgba(76, 175, 80, 0.06);
    transition: box-shadow var(--t);
}

.faq-item.open {
    box-shadow: 0 4px 0 var(--pink-pale), 0 10px 24px rgba(255, 138, 128, 0.14);
}

.faq-q {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 14px;
    cursor: pointer;
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--ink);
    line-height: 1.6;
    transition: background var(--t);
}

.faq-q:hover {
    background: var(--bg-cream);
}

.faq-item.open .faq-q {
    background: var(--bg-cream);
}

.faq-q .qm {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 1.05rem;
    margin-top: -2px;
    box-shadow: 0 3px 0 var(--green-dark);
}

.faq-q span {
    flex: 1;
    padding-top: 4px;
}

.faq-q .arr {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--bg-cream);
    color: var(--green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: transform var(--t), background var(--t), color var(--t);
    margin-top: 2px;
}

.faq-item.open .faq-q .arr {
    transform: rotate(180deg);
    background: var(--pink);
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #fff 100%);
}

.faq-item.open .faq-a {
    max-height: 600px;
}

.faq-a-inner {
    padding: 4px 14px 18px 60px;
    display: flex;
    gap: 12px;
    position: relative;
}

.faq-a-inner::before {
    content: 'A';
    position: absolute;
    left: 14px;
    top: 4px;
    width: 34px;
    height: 34px;
    background: var(--pink);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 1.05rem;
    box-shadow: 0 3px 0 var(--pink-dark);
}

.faq-a p {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.82rem;
    line-height: 1.95;
    color: var(--ink-soft);
    padding-top: 6px;
}

/* ============================================
   WHY CHOOSE US — badges + trust
   ============================================ */
.s-why {
    background: linear-gradient(180deg, var(--bg-yellow) 0%, #FFFEF5 100%);
    overflow: hidden;
}

.s-why::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 176, 120, 0.20), transparent 70%);
}

.s-why::after {
    content: '';
    position: absolute;
    bottom: 8%;
    left: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(123, 198, 126, 0.20), transparent 70%);
}

.s-why .container {
    position: relative;
    z-index: 1;
}

.badge-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.badge-card {
    background: #fff;
    border-radius: var(--r-md);
    padding: 18px 12px 14px;
    text-align: center;
    box-shadow: 0 5px 0 var(--green-pale), 0 8px 18px rgba(76, 175, 80, 0.08);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform var(--t);
}

.badge-card:hover {
    transform: translateY(-3px);
}

.badge-card::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1.5px dashed transparent;
    border-radius: var(--r-md);
    transition: border-color var(--t);
    pointer-events: none;
}

.badge-card:hover::before {
    border-color: var(--green-light);
}

.badge-card.wide {
    grid-column: span 2;
    flex-direction: row;
    gap: 14px;
    text-align: left;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--green-pale) 0%, var(--bg-mint) 100%);
    box-shadow: 0 5px 0 var(--green-light), 0 8px 18px rgba(76, 175, 80, 0.12);
}

.badge-card i {
    font-size: 1.7rem;
    color: var(--pink-dark);
    margin-bottom: 8px;
    width: 50px;
    height: 50px;
    background: var(--pink-pale);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.badge-card:nth-child(1) i {
    background: var(--yellow-pale);
    color: var(--orange-dark);
}

.badge-card:nth-child(2) i {
    background: var(--green-pale);
    color: var(--green-deep);
}

.badge-card:nth-child(3) i {
    background: #fff;
    color: var(--pink-dark);
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.badge-card:nth-child(4) i {
    background: var(--sky-pale);
    color: #3F7E96;
}

.badge-card:nth-child(5) i {
    background: var(--purple-pale);
    color: #6E5BA8;
}

.badge-card.wide i {
    margin-bottom: 0;
}

.badge-card .text {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 0.78rem;
    color: var(--ink);
    line-height: 1.4;
}

.badge-card .big {
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--pink-dark);
    display: block;
    line-height: 1;
    margin-bottom: 2px;
    font-weight: 400;
}

.badge-card:nth-child(1) .big {
    color: var(--orange-dark);
}

.badge-card:nth-child(2) .big {
    color: var(--green-deep);
}

/* ============================================
   DOCTOR — circular portrait + tag badges
   ============================================ */
.s-doctor {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-green) 100%);
    overflow: hidden;
}

.s-doctor::before {
    content: '';
    position: absolute;
    top: 8%;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(123, 198, 126, 0.22), transparent 70%);
}

.s-doctor::after {
    content: '';
    position: absolute;
    bottom: 8%;
    left: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 208, 106, 0.20), transparent 70%);
}

.s-doctor .container {
    position: relative;
    z-index: 1;
}

.doctor-card {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 28px 22px 24px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.12);
    border: none;
    position: relative;
    overflow: hidden;
}

.doctor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, var(--bg-mint) 0%, transparent 100%);
    z-index: 0;
}

.doctor-card>* {
    position: relative;
    z-index: 1;
}

.doctor-photo {
    width: 156px;
    height: 156px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 6px solid #fff;
    box-shadow: 0 0 0 4px var(--yellow), 0 10px 24px rgba(0, 0, 0, 0.12);
    position: relative;
}

.doctor-photo::after {
    content: '★';
    position: absolute;
    top: 4px;
    right: 4px;
    color: var(--pink);
    font-size: 1.3rem;
    animation: twinkle 2.4s ease-in-out infinite;
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-card h3 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--ink);
    text-align: center;
    margin-bottom: 4px;
}

.doctor-card h3 small {
    font-family: var(--f-round);
    font-size: 0.6em;
    color: var(--ink-light);
    font-weight: 500;
    margin-left: 6px;
}

.doctor-card .role {
    display: inline-block;
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.78rem;
    color: #fff;
    background: var(--pink);
    padding: 5px 14px;
    border-radius: var(--r-pill);
    text-align: center;
    margin: 0 auto 18px;
    box-shadow: 0 3px 0 var(--pink-dark);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.doctor-card p {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.84rem;
    line-height: 1.95;
    color: var(--ink-soft);
    margin-bottom: 10px;
}

.doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1.5px dashed var(--green-pale);
    justify-content: center;
}

.doctor-tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-green);
    color: var(--green-deep);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.72rem;
    font-weight: 700;
    border: 1.5px solid var(--green-pale);
}

.doctor-tags span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

/* ============================================
   STAFF & FACILITY — photo gallery
   ============================================ */
.s-staff {
    background: linear-gradient(180deg, var(--bg-pink) 0%, #FFF6F2 100%);
    position: relative;
    overflow: hidden;
}

.s-staff::before {
    content: '';
    position: absolute;
    top: 8%;
    left: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 138, 128, 0.18), transparent 70%);
}

.s-staff::after {
    content: '';
    position: absolute;
    bottom: 8%;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(156, 208, 226, 0.18), transparent 70%);
}

.s-staff .container {
    position: relative;
    z-index: 1;
}

.facility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.facility-grid .main {
    grid-column: 1;
}

.facility-grid .sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.facility-item {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
    position: relative;
    background: #fff;
    transform: rotate(0);
    transition: transform var(--t), box-shadow var(--t);
}

.facility-item:nth-child(odd) {
    transform: rotate(-0.6deg);
}

.facility-item:nth-child(even) {
    transform: rotate(0.6deg);
}

.facility-item:hover {
    transform: rotate(0) translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.facility-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.facility-item.sub-item img {
    aspect-ratio: 4/3;
}

.facility-item:hover img {
    transform: scale(1.05);
}

.facility-item .cap {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.96);
    padding: 5px 12px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.facility-item .cap i {
    color: var(--pink-dark);
}

.facility-item.main .cap {
    background: var(--pink);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.78rem;
}

.facility-item.main .cap i {
    color: var(--yellow);
}

/* ============================================
   BOOKING — dual CTA cards w/ pulse
   ============================================ */
.s-booking {
    background:
        radial-gradient(ellipse at 0% 0%, rgba(255, 208, 106, 0.22), transparent 55%),
        radial-gradient(ellipse at 100% 100%, rgba(255, 138, 128, 0.20), transparent 55%),
        linear-gradient(165deg, #388E4B 0%, #4CAF50 60%, #5BBA6F 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.s-booking::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 208, 106, 0.20), transparent 70%);
}

.s-booking::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 138, 128, 0.18), transparent 70%);
}

.s-booking .container {
    position: relative;
    z-index: 1;
}

.s-booking .s-eyebrow {
    color: var(--yellow);
}

.s-booking .s-eyebrow::before {
    background: var(--yellow);
}

.s-booking .s-eyebrow .ja {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.92);
}

.s-booking .s-title {
    color: #fff;
}

.last-push {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--r-lg);
    padding: 22px 18px;
    margin-bottom: 26px;
    backdrop-filter: blur(6px);
}

.last-push h3 {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.6;
}

.last-push h3 .accent {
    color: var(--yellow);
}

.last-push p {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.95;
}

.perk-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
    justify-content: center;
}

.perk-row span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.30);
    padding: 7px 14px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(4px);
}

.perk-row i {
    color: var(--yellow);
}

.booking-microcopy {
    text-align: center;
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--yellow);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}

.booking-microcopy::before,
.booking-microcopy::after {
    content: '✦';
    margin: 0 8px;
    color: var(--yellow);
    opacity: 0.7;
}

.booking-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.booking-card {
    display: block;
    background: #fff;
    color: var(--ink);
    border-radius: var(--r-xl);
    padding: 24px 20px;
    position: relative;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.20), 0 14px 30px rgba(0, 0, 0, 0.10);
    transition: transform var(--t), box-shadow var(--t);
    text-decoration: none;
    animation: bookingPulse 2.6s ease-in-out infinite;
}

.booking-card.tel {
    animation-delay: 1.3s;
}

@keyframes bookingPulse {

    0%,
    100% {
        box-shadow: 0 8px 0 rgba(0, 0, 0, 0.20), 0 14px 30px rgba(0, 0, 0, 0.10);
    }

    50% {
        box-shadow: 0 8px 0 rgba(0, 0, 0, 0.20), 0 22px 44px rgba(255, 208, 106, 0.30);
    }
}

.booking-card:hover {
    transform: translateY(3px);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.20), 0 8px 18px rgba(0, 0, 0, 0.10);
    animation: none;
}

.booking-card .label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--pink);
    color: #fff;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-size: 0.7rem;
    font-weight: 900;
    margin-bottom: 12px;
    box-shadow: 0 3px 0 var(--pink-dark);
}

.booking-card.tel .label {
    background: var(--green);
    box-shadow: 0 3px 0 var(--green-dark);
}

.booking-card .main {
    font-family: var(--f-display);
    font-size: 1.95rem;
    color: var(--green-deep);
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.booking-card.tel .main {
    color: var(--green-deep);
}

.booking-card .sub {
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.78rem;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 16px;
}

.booking-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink);
    color: #fff;
    padding: 13px 24px;
    border-radius: var(--r-pill);
    font-family: var(--f-round);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 0 var(--pink-dark);
}

.booking-card.tel .btn {
    background: var(--green);
    box-shadow: 0 4px 0 var(--green-dark);
}

.booking-card .ribbon-deco {
    position: absolute;
    top: -10px;
    right: 22px;
    background: var(--yellow);
    color: var(--green-deep);
    padding: 5px 12px;
    border-radius: 4px;
    font-family: var(--f-round);
    font-size: 0.66rem;
    font-weight: 900;
    transform: rotate(4deg);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.10);
    letter-spacing: 0.04em;
}

.booking-card .ribbon-deco::before {
    content: '★ ';
    color: var(--orange-dark);
}

/* ============================================
   ACCESS — map + info card
   ============================================ */
.s-access {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%);
    overflow: hidden;
}

.s-access::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(123, 198, 126, 0.20), transparent 70%);
}

.s-access .container {
    position: relative;
    z-index: 1;
}

.access-cover {
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 10px 28px rgba(76, 175, 80, 0.14);
    position: relative;
    transform: rotate(-0.5deg);
}

.access-cover::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: var(--yellow);
    border-radius: var(--r-xl);
    z-index: -1;
    opacity: 0.5;
    transform: rotate(1.5deg);
}

.access-cover img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.clinic-card {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 24px 20px;
    box-shadow: 0 6px 0 var(--green-pale), 0 12px 28px rgba(76, 175, 80, 0.10);
    border: none;
}

.info-table {
    width: 100%;
    font-family: var(--f-round);
    font-size: 0.85rem;
}

.info-table tr {
    border-bottom: 1.5px dashed var(--green-pale);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table th {
    text-align: left;
    padding: 14px 8px 14px 0;
    font-weight: 900;
    color: var(--green-deep);
    vertical-align: top;
    width: 76px;
    font-size: 0.8rem;
}

.info-table th::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--pink);
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.info-table td {
    padding: 14px 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.info-table td a {
    color: var(--pink-dark);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.info-table td a i {
    width: 24px;
    height: 24px;
    background: var(--pink-pale);
    color: var(--pink-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.schedule-block {
    margin-top: 22px;
}

.schedule-block .ttl {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 0.92rem;
    color: var(--ink);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-block .ttl i {
    width: 28px;
    height: 28px;
    background: var(--green-pale);
    color: var(--green-deep);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.hours-table {
    width: 100%;
    font-family: var(--f-round);
    font-size: 0.72rem;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--bg-cream);
}

.hours-table th {
    padding: 10px 4px;
    background: var(--green);
    color: #fff;
    font-weight: 900;
    font-size: 0.7rem;
}

.hours-table td {
    padding: 10px 4px;
    background: #fff;
    border-bottom: 1px solid var(--bg-cream);
    font-size: 0.88rem;
    font-weight: 700;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table td.label {
    background: var(--bg-cream);
    color: var(--green-deep);
    font-weight: 900;
    text-align: left;
    padding-left: 10px;
    font-size: 0.7rem;
}

.hours-table td.label small {
    display: block;
    font-weight: 500;
    color: var(--ink-light);
    font-size: 0.62rem;
}

.hours-table td.open {
    color: var(--green-deep);
}

.hours-table td.tri {
    color: var(--pink-dark);
}

.hours-table td.closed {
    color: var(--ink-light);
    font-weight: 500;
}

.hours-note {
    font-family: var(--f-round);
    font-size: 0.72rem;
    color: var(--ink-light);
    margin-top: 8px;
    line-height: 1.7;
}

.map-embed {
    margin-top: 18px;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 2px solid var(--green-pale);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.map-embed iframe {
    width: 100%;
    height: 220px;
    display: block;
    border: 0;
}

/* ============================================
   SYMPTOMS — visual icon grid
   ============================================ */
.s-symptoms {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFFDF6 100%);
    overflow: hidden;
}

.s-symptoms::before {
    content: '';
    position: absolute;
    top: 8%;
    left: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 138, 128, 0.16), transparent 70%);
}

.s-symptoms::after {
    content: '';
    position: absolute;
    bottom: 8%;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(123, 198, 126, 0.18), transparent 70%);
}

.s-symptoms .container {
    position: relative;
    z-index: 1;
}

.s-symptoms .health-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.s-symptoms .health-card {
    padding: 18px 12px 14px;
    background: #fff;
    box-shadow: 0 4px 0 var(--pink-pale), 0 8px 18px rgba(255, 138, 128, 0.06);
    border: none;
}

.s-symptoms .health-card:nth-child(1) {
    box-shadow: 0 4px 0 var(--pink-pale), 0 8px 18px rgba(255, 138, 128, 0.10);
}

.s-symptoms .health-card:nth-child(2) {
    box-shadow: 0 4px 0 var(--yellow-pale), 0 8px 18px rgba(255, 208, 106, 0.14);
}

.s-symptoms .health-card:nth-child(3) {
    box-shadow: 0 4px 0 var(--green-pale), 0 8px 18px rgba(123, 198, 126, 0.14);
}

.s-symptoms .health-card:nth-child(4) {
    box-shadow: 0 4px 0 var(--sky-pale), 0 8px 18px rgba(156, 208, 226, 0.16);
}

.s-symptoms .health-card:nth-child(5) {
    box-shadow: 0 4px 0 var(--purple-pale), 0 8px 18px rgba(191, 177, 229, 0.16);
}

.s-symptoms .health-card:nth-child(6) {
    box-shadow: 0 4px 0 var(--orange-pale), 0 8px 18px rgba(255, 176, 120, 0.14);
}

.s-symptoms .health-card:hover {
    transform: translateY(-3px);
}

.s-symptoms .health-card .ico {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
    margin: 0 auto 10px;
    background: var(--pink-pale);
    color: var(--pink-dark);
}

.s-symptoms .health-card:nth-child(1) .ico {
    background: var(--pink-pale);
    color: var(--pink-dark);
}

.s-symptoms .health-card:nth-child(2) .ico {
    background: var(--yellow-pale);
    color: var(--orange-dark);
}

.s-symptoms .health-card:nth-child(3) .ico {
    background: var(--green-pale);
    color: var(--green-deep);
}

.s-symptoms .health-card:nth-child(4) .ico {
    background: var(--sky-pale);
    color: #3F7E96;
}

.s-symptoms .health-card:nth-child(5) .ico {
    background: var(--purple-pale);
    color: #6E5BA8;
}

.s-symptoms .health-card:nth-child(6) .ico {
    background: var(--orange-pale);
    color: var(--orange-dark);
}

.s-symptoms .health-card h4 {
    font-size: 0.84rem;
    font-weight: 900;
    margin-bottom: 6px;
    color: var(--ink);
}

.s-symptoms .health-card p {
    font-size: 0.72rem;
    line-height: 1.7;
    color: var(--ink-soft);
    text-align: left;
}

/* ============================================
   DISCLAIMER & FOOTER — simple
   ============================================ */
.disclaimer-bar {
    background: #2A5C44;
    color: rgba(255, 255, 255, 0.7);
    padding: 24px 22px;
    font-family: var(--f-round);
    font-weight: 500;
    font-size: 0.7rem;
    line-height: 1.95;
    border-top: 4px solid var(--yellow);
}

.disclaimer-bar strong {
    color: var(--yellow);
    font-weight: 900;
    display: block;
    margin-bottom: 6px;
}

.disclaimer-bar p {
    letter-spacing: 0.01em;
}

footer {
    background: #1F4A35;
    color: rgba(255, 255, 255, 0.6);
    padding: 32px 22px calc(90px + env(safe-area-inset-bottom));
    text-align: center;
    font-family: var(--f-round);
    font-size: 0.72rem;
    position: relative;
}

footer::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
    margin: 0 auto 16px;
}

footer .ft-logo {
    font-family: var(--f-round);
    font-weight: 900;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 4px;
    display: block;
}

footer .ft-tag {
    font-family: var(--f-display);
    font-size: 0.85rem;
    color: var(--yellow);
    display: block;
    margin-bottom: 18px;
    letter-spacing: 0.08em;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

footer a:hover {
    color: var(--yellow);
}

footer p {
    margin-bottom: 6px;
}

footer .ft-divider {
    display: block;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 14px auto;
}

footer small {
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.4);
}