﻿/* ==========================================================================
   ベルのおうちリフレッシュ — Stylesheet
   Tone: ポップ × クリーン × 女性目線
========================================================================== */

:root {
    /* Sky blue (primary) */
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-200: #bae6fd;
    --sky-300: #7dd3fc;
    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --sky-700: #0369a1;

    /* Accents */
    --yellow: #fde047;
    --yellow-soft: #fef3c7;
    --pink: #fbcfe8;
    --pink-soft: #fce7f3;
    --line-green: #06c755;
    --line-green-dark: #05a548;

    /* Neutrals */
    --cream: #fffdf7;
    --white: #ffffff;
    --navy: #1e3a5f;
    --text: #2d3e5f;
    --text-soft: #5b6c84;
    --grey-line: #e5edf5;

    /* Layout */
    --container-max: 1180px;
    --header-h: 72px;
    --radius: 18px;
    --radius-lg: 28px;

    /* Shadow with sky tint */
    --shadow-soft: 0 12px 28px rgba(14, 165, 233, 0.12);
    --shadow-pop: 0 18px 40px rgba(14, 165, 233, 0.18);

    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
    line-height: 1.8;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

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

/* Headings use rounded pop font */
h1, h2, h3, .pop {
    font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   Header
========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grey-line);
    z-index: 1000;
}

.header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
}

.logo-text {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.line-btn-mini {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--line-green);
    color: var(--white);
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.25);
}

.line-btn-mini:hover {
    background: var(--line-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.35);
}

.line-icon {
    background: var(--white);
    color: var(--line-green);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Hero
========================================================================== */
.hero {
    position: relative;
    padding: calc(var(--header-h) + 4rem) 0 6rem;
    background:
        radial-gradient(ellipse at top right, var(--pink-soft) 0%, transparent 45%),
        radial-gradient(ellipse at bottom left, var(--yellow-soft) 0%, transparent 50%),
        linear-gradient(180deg, var(--sky-100) 0%, var(--sky-50) 100%);
    overflow: hidden;
}

/* Decorative bubbles */
.hero-bubble {
    position: absolute;
    border-radius: 50%;
    background: var(--white);
    opacity: 0.55;
    filter: blur(2px);
    pointer-events: none;
}

.hero-bubble.b1 {
    width: 240px; height: 240px;
    top: 8%; left: -80px;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, rgba(255,255,255,0.3) 70%);
    animation: float 8s ease-in-out infinite;
}
.hero-bubble.b2 {
    width: 160px; height: 160px;
    bottom: 18%; right: 8%;
    background: radial-gradient(circle at 30% 30%, var(--sky-200) 0%, rgba(186,230,253,0.3) 70%);
    animation: float 10s ease-in-out infinite reverse;
}
.hero-bubble.b3 {
    width: 90px; height: 90px;
    top: 55%; left: 38%;
    background: radial-gradient(circle at 30% 30%, var(--pink) 0%, rgba(251,207,232,0.4) 70%);
    animation: float 7s ease-in-out infinite;
    animation-delay: -3s;
}

.hero-sparkle {
    position: absolute;
    color: var(--yellow);
    font-size: 1.8rem;
    pointer-events: none;
    text-shadow: 0 2px 6px rgba(253, 224, 71, 0.4);
    animation: sparkle 3s ease-in-out infinite;
}
.hero-sparkle.s1 { top: 18%; right: 18%; }
.hero-sparkle.s2 { top: 40%; left: 12%; animation-delay: -1s; font-size: 1.3rem; }
.hero-sparkle.s3 { bottom: 28%; left: 48%; animation-delay: -2s; font-size: 1.1rem; color: var(--sky-400); }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--sky-700);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sky-400);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--navy);
    margin-bottom: 1.4rem;
}

.title-accent {
    position: relative;
    display: inline-block;
    color: var(--sky-500);
}

.title-accent::after {
    content: '';
    position: absolute;
    left: -0.1em;
    right: -0.1em;
    bottom: 0.15em;
    height: 0.35em;
    background: var(--yellow);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.7;
}

.hero-sub {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.95;
    color: var(--text-soft);
    margin-bottom: 2.2rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.8rem;
    border-radius: 999px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-line {
    background: var(--line-green);
    color: var(--white);
    padding-right: 2rem;
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
    background: var(--line-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(6, 199, 85, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--sky-700);
    border: 2px solid var(--sky-300);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--sky-50);
    border-color: var(--sky-400);
    transform: translateY(-3px);
    box-shadow: var(--shadow-pop);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-badges li {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.8rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    box-shadow: var(--shadow-soft);
    min-width: 100px;
}

.badge-num {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
    color: var(--sky-500);
    font-size: 1.05rem;
}

.badge-label {
    font-size: 0.75rem;
    color: var(--text-soft);
    letter-spacing: 0.02em;
}

/* Character */
.hero-character {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.character-wrap {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle at 30% 30%, var(--white) 0%, var(--sky-100) 70%, var(--sky-200) 100%);
    box-shadow: 0 30px 60px rgba(14, 165, 233, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.character-wrap:hover {
    transform: translateY(-6px) rotate(-2deg);
    box-shadow: 0 40px 70px rgba(14, 165, 233, 0.3);
}

.character-still,
.character-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.character-still { opacity: 1; z-index: 2; }
.character-video { opacity: 0; z-index: 1; }

.character-wrap.is-playing .character-still { opacity: 0; }
.character-wrap.is-playing .character-video { opacity: 1; }

@media (hover: none) {
    .character-video { display: none; }
    .character-wrap { cursor: default; }
}

.character-label {
    margin-top: 1rem;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    color: var(--sky-700);
    font-size: 0.9rem;
    padding: 0.35rem 1rem;
    background: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
}

/* Wave divider */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    display: block;
}

/* ==========================================================================
   Section common
========================================================================== */
.section {
    padding: 6rem 0;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--sky-500);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.eyebrow-mark {
    color: var(--yellow);
    font-size: 1.2rem;
    animation: sparkle 3s ease-in-out infinite;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.section-lead {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 2;
}

.section-lead strong {
    color: var(--sky-500);
    font-weight: 700;
    background: linear-gradient(transparent 70%, var(--yellow) 70%);
    padding: 0 2px;
}

/* ==========================================================================
   Menu Section
========================================================================== */
.menu-section {
    background: var(--cream);
    position: relative;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category:last-of-type {
    margin-bottom: 2rem;
}

.cat-title {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.8rem;
    padding: 0.5rem 1.4rem 0.5rem 1.2rem;
    background: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.cat-title::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--yellow);
}

.cat-icon {
    font-size: 1.4rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.menu-grid-set {
    grid-template-columns: repeat(2, 1fr);
    max-width: 820px;
    margin: 0 auto;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.5rem 1.4rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-pop);
}

.menu-card-featured {
    background: linear-gradient(135deg, var(--white) 0%, var(--sky-50) 100%);
    border: 2px solid var(--sky-200);
}

.card-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 10px rgba(253, 224, 71, 0.4);
}

.card-badge-pink {
    background: var(--pink);
    color: #9d174d;
    box-shadow: 0 4px 10px rgba(251, 207, 232, 0.6);
}

.menu-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--sky-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.menu-card:hover .menu-icon-wrap {
    background: var(--sky-100);
    transform: scale(1.05) rotate(-3deg);
}

.menu-icon-wrap svg {
    width: 56px;
    height: 56px;
}

.menu-card h4 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 0.5rem;
}

.menu-card h4 small {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-soft);
    margin-top: 0.2rem;
}

.menu-desc {
    font-size: 0.88rem;
    color: var(--text-soft);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    flex: 1;
}

.menu-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1.5px dashed var(--grey-line);
}

.menu-price {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--sky-500);
    letter-spacing: 0.02em;
}

.menu-price .yen {
    font-size: 0.85rem;
    margin-right: 1px;
}

.menu-price .from {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-soft);
    margin-left: 1px;
}

.menu-price-quote {
    font-size: 1.1rem;
    color: var(--sky-700);
}

.menu-time {
    font-size: 0.75rem;
    color: var(--text-soft);
    background: var(--sky-50);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-weight: 500;
}

.menu-notice {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 2;
    margin-top: 3rem;
    padding: 1.5rem 1rem;
    background: var(--yellow-soft);
    border-radius: var(--radius);
    border: 1.5px dashed #fbbf24;
}

.menu-notice strong {
    color: #b45309;
    font-weight: 700;
}

/* ==========================================================================
   Responsive
========================================================================== */
@media (max-width: 980px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .menu-grid-set {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

@media (max-width: 860px) {
    .section { padding: 4rem 0; }
    .section-head { margin-bottom: 3rem; }
    .hero {
        padding: calc(var(--header-h) + 2.5rem) 0 5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .character-wrap {
        max-width: 280px;
    }

    .hero-character {
        order: -1;
    }

    .hero-bubble.b1 { width: 160px; height: 160px; }
    .hero-bubble.b2 { width: 100px; height: 100px; }
}

@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    .menu-icon-wrap { width: 70px; height: 70px; }
    .menu-icon-wrap svg { width: 48px; height: 48px; }
    .cat-title {
        font-size: 1.1rem;
        padding: 0.45rem 1.2rem 0.45rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo-text { font-size: 0.9rem; }
    .line-btn-mini { padding: 0.45rem 0.9rem; font-size: 0.8rem; }
    .hero-badges li { min-width: 90px; padding: 0.65rem 0.9rem; }
    .btn { width: 100%; }
}


/* ==========================================================================
   Flow（作業の流れ）
========================================================================== */
.flow-section { background: var(--white); }

.flow-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    counter-reset: flow;
    max-width: 1080px;
    margin: 0 auto;
}

.flow-step {
    background: var(--sky-50);
    border: 2px solid var(--sky-100);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.2rem 1.4rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.flow-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--sky-300);
}

.flow-step:not(:last-child)::after {
    content: '▶';
    position: absolute;
    right: -1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sky-300);
    font-size: 0.8rem;
    z-index: 2;
}

.flow-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sky-400);
    color: var(--white);
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
    box-shadow: 0 6px 14px rgba(14, 165, 233, 0.3);
}

.flow-body h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.flow-body p {
    font-size: 0.83rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ==========================================================================
   Area（対応エリア）
========================================================================== */
.area-section { background: var(--sky-50); }

.area-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem 2rem;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.area-main {
    display: inline-block;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    background: linear-gradient(transparent 65%, var(--yellow) 65%);
    padding: 0 6px;
    margin-bottom: 1.6rem;
}

.area-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
}

.area-chips li {
    background: var(--sky-50);
    border: 1.5px solid var(--sky-200);
    color: var(--sky-700);
    border-radius: 999px;
    padding: 0.35rem 1.05rem;
    font-size: 0.88rem;
    font-weight: 500;
}

.area-note {
    font-size: 0.82rem;
    color: var(--text-soft);
}

/* ==========================================================================
   FAQ
========================================================================== */
.faq-section { background: var(--white); }

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 0.9rem;
}

.faq-item {
    background: var(--cream);
    border: 2px solid var(--grey-line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: var(--sky-300);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 3rem 1.1rem 3.2rem;
    font-weight: 700;
    color: var(--navy);
    position: relative;
    font-size: 0.95rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::before {
    content: 'Q';
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--sky-400);
    color: var(--white);
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sky-400);
    font-size: 1.4rem;
    font-weight: 700;
    transition: var(--transition);
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    padding: 0 1.4rem 1.2rem 3.2rem;
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.9;
}

.faq-item p a {
    color: var(--sky-500);
    font-weight: 700;
    text-decoration: underline;
}

/* ==========================================================================
   Contact
========================================================================== */
.contact-section {
    background: linear-gradient(180deg, var(--sky-50) 0%, var(--sky-100) 100%);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-pop);
    padding: 3.5rem 2rem;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.contact-head { margin-bottom: 2rem; }

.contact-line-block { margin-bottom: 1.8rem; }

.btn-line-big {
    font-size: 1.15rem;
    padding: 1.2rem 2.6rem;
}

.contact-line-note {
    margin-top: 0.9rem;
    font-size: 0.83rem;
    color: var(--text-soft);
}

.contact-alt {
    border-top: 1px dashed var(--grey-line);
    padding-top: 1.4rem;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.contact-mail {
    color: var(--sky-500);
    font-weight: 700;
    text-decoration: underline;
}

/* ==========================================================================
   Footer
========================================================================== */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 1.5rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.footer-logo {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--white);
}

.footer-tag {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.4rem;
}

.footer-info {
    font-size: 0.85rem;
    line-height: 2;
    text-align: right;
}

.footer-info a {
    color: var(--sky-300);
    text-decoration: underline;
}

.footer-copy {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.4rem;
}

/* ==========================================================================
   Responsive（新セクション）
========================================================================== */
@media (max-width: 900px) {
    .flow-steps { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
    .flow-step:not(:last-child)::after { display: none; }
}

@media (max-width: 600px) {
    .flow-steps { grid-template-columns: 1fr; max-width: 360px; }
    .footer-inner { flex-direction: column; }
    .footer-info { text-align: left; }
    .contact-card { padding: 2.5rem 1.4rem; }
    .btn-line-big { width: 100%; font-size: 1.05rem; }
}


/* ==========================================================================
   Opening Loader（2026/08/07追加）
========================================================================== */
.op-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    /* 動画のフチ色に合わせたグラデーション(縦持ちの上下余白が目立たないように) */
    background: linear-gradient(180deg, #9dcfe5 0%, #a5c6da 55%, #9bafc0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.65s ease;
}

.op-loader.op-hide {
    opacity: 0;
    pointer-events: none;
}

.op-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (orientation: portrait) {
    .op-video { object-fit: contain; }
}

.op-skip {
    position: absolute;
    right: 20px;
    bottom: 24px;
    background: rgba(255, 255, 255, 0.75);
    border: 2px solid var(--sky-300);
    color: var(--sky-700);
    padding: 8px 20px;
    border-radius: 999px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.op-skip:hover {
    background: var(--white);
    border-color: var(--sky-400);
}

body.op-lock { overflow: hidden; }



/* セット割の比較価格・おトク表示（2026/08/07） */
.price-compare {
    display: block;
    margin-top: 0.3rem;
    color: #94a3b8;
    font-size: 0.78rem;
    text-decoration: line-through;
}

.menu-time.save {
    color: #d97706;
    font-weight: 700;
}
