        :root {
            --orange: #FF6B35;
            --orange-light: #FF8C5A;
            --orange-pale: #FFF0E6;
            --navy: #1A1A2E;
            --navy-mid: #16213E;
            --navy-light: #1E2A50;
            --white: #FFFFFF;
            --gray: #64748B;
            --gray-light: #F1F5F9;
            --text: #1E293B;
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            color: var(--text);
            background: var(--white);
            overflow-x: hidden;
        }

        /* ── Hero ───────────────────────────── */
        .hero {
            min-height: 100vh;
            background: var(--navy);
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute; inset: 0;
            background:
                    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,107,53,0.12) 0%, transparent 70%),
                    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(255,107,53,0.07) 0%, transparent 60%);
        }

        /* グリッドパターン */
        .hero-grid {
            position: absolute; inset: 0;
            background-image:
                    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        nav {
            position: relative; z-index: 10;
            padding: 1.5rem 5%;
            display: flex; align-items: center; justify-content: space-between;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 1.4rem;
            color: var(--white);
            text-decoration: none;
            display: flex; align-items: center; gap: 0.5rem;
        }

        .nav-cta {
            background: var(--orange);
            color: white;
            padding: 0.6rem 1.4rem;
            border-radius: 6px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 700;
            transition: background 0.2s;
        }
        .nav-cta:hover { background: var(--orange-light); }

        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 4rem 5% 6rem;
            position: relative; z-index: 5;
        }

        .hero-eyebrow {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: rgba(255,107,53,0.15);
            border: 1px solid rgba(255,107,53,0.3);
            border-radius: 100px;
            padding: 0.35rem 1rem;
            color: var(--orange-light);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            margin-bottom: 2rem;
            animation: fadeDown 0.8s ease both;
        }

        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: clamp(2.8rem, 7vw, 5.5rem);
            color: var(--white);
            line-height: 1.05;
            margin-bottom: 0.5rem;
            animation: fadeDown 0.8s 0.1s ease both;
        }

        .hero-title span { color: var(--orange); }

        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: rgba(255,255,255,0.65);
            margin-bottom: 3rem;
            animation: fadeDown 0.8s 0.2s ease both;
        }

        .hero-stats {
            display: flex; gap: 3rem;
            margin-bottom: 4rem;
            animation: fadeDown 0.8s 0.3s ease both;
        }

        .stat {
            text-align: center;
        }
        .stat-num {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--orange);
            line-height: 1;
        }
        .stat-label {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.5);
            margin-top: 0.25rem;
        }

        /* ── 業種選択カード ─────────────────────── */
        .industry-section {
            padding: 2rem 5% 0;
            animation: fadeUp 0.8s 0.4s ease both;
        }

        .industry-label {
            text-align: center;
            color: rgba(255,255,255,0.4);
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .industry-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            max-width: 700px;
            margin: 0 auto;
            width: 100%;
        }

        .industry-card {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 1.4rem 1.2rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            text-decoration: none;
            color: var(--white);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            min-width: 0;
        }

        .industry-card::before {
            content: '';
            position: absolute; inset: 0;
            background: var(--orange);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .industry-card:hover {
            border-color: var(--orange);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(255,107,53,0.25);
        }

        .industry-card:hover::before { opacity: 0.08; }

        .card-emoji {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            position: relative;
        }

        .card-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            position: relative;
        }

        .card-desc {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.6;
            position: relative;
        }

        .card-arrow {
            margin-top: 1.2rem;
            font-size: 0.8rem;
            color: var(--orange);
            font-weight: 700;
            display: flex; align-items: center; gap: 0.3rem;
            position: relative;
            transition: gap 0.2s;
        }
        .industry-card:hover .card-arrow { gap: 0.6rem; }

        /* ── 共通機能セクション ──────────────────── */
        .section {
            padding: 6rem 5%;
        }

        .section-label {
            text-align: center;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: var(--orange);
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 900;
            color: var(--navy);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .section-sub {
            text-align: center;
            color: var(--gray);
            max-width: 560px;
            margin: 0 auto 4rem;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* 機能グリッド */
        .features-dark {
            background: var(--navy);
            padding: 6rem 5%;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .feature-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 2rem;
            transition: border-color 0.3s, transform 0.3s;
        }

        .feature-card:hover {
            border-color: rgba(255,107,53,0.4);
            transform: translateY(-3px);
        }

        .feature-icon {
            width: 48px; height: 48px;
            border-radius: 12px;
            background: rgba(255,107,53,0.15);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
        }

        .feature-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.6rem;
        }

        .feature-desc {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.7;
        }

        /* 料金 */
        .pricing-section { background: var(--gray-light); padding: 6rem 5%; }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            max-width: 860px;
            margin: 0 auto;
        }

        .plan-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            position: relative;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: transform 0.3s;
        }

        .plan-card:hover { transform: translateY(-4px); }

        .plan-card.featured {
            background: var(--navy);
            color: var(--white);
        }

        .plan-badge {
            position: absolute;
            top: -12px; left: 50%; transform: translateX(-50%);
            background: var(--orange);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.3rem 1rem;
            border-radius: 100px;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }

        .plan-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: inherit;
        }
        .plan-card.featured .plan-name { color: rgba(255,255,255,0.6); }

        .plan-price {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: var(--navy);
            line-height: 1;
            margin-bottom: 0.3rem;
        }
        .plan-card.featured .plan-price { color: var(--orange); }

        .plan-unit {
            font-size: 0.8rem;
            color: var(--gray);
            margin-bottom: 1.8rem;
        }
        .plan-card.featured .plan-unit { color: rgba(255,255,255,0.4); }

        .plan-divider {
            height: 1px;
            background: var(--gray-light);
            margin-bottom: 1.5rem;
        }
        .plan-card.featured .plan-divider { background: rgba(255,255,255,0.1); }

        .plan-features { list-style: none; }
        .plan-features li {
            font-size: 0.85rem;
            padding: 0.4rem 0;
            display: flex; align-items: center; gap: 0.6rem;
            color: var(--text);
        }
        .plan-card.featured .plan-features li { color: rgba(255,255,255,0.8); }

        .plan-features li::before {
            content: '✓';
            color: var(--orange);
            font-weight: 700;
            flex-shrink: 0;
        }

        /* CTA */
        .cta-section {
            background: var(--orange);
            padding: 6rem 5%;
            text-align: center;
        }

        .cta-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .cta-sub {
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
            margin-bottom: 2.5rem;
        }

        .cta-btn {
            display: inline-block;
            background: var(--white);
            color: var(--orange);
            font-weight: 700;
            font-size: 1rem;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        /* フッター */
        footer {
            background: var(--navy);
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        footer > div {
            max-width: 1100px; margin: 0 auto;
            padding: 2rem 5%;
            display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
        }
        .footer-brand { font-weight: 700; font-size: 0.95rem; color: white; margin-bottom: 0.3rem; }
        .footer-brand span { color: var(--orange); }
        .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
        footer nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
        footer nav a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
        footer nav a:hover { color: white; }
        @media (max-width: 600px) {
            footer > div { flex-direction: column; text-align: center; }
            footer nav { justify-content: center; }
        }

        /* フロー */
        .flow-section { padding: 6rem 5%; background: var(--white); }

        .flow-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .flow-step {
            text-align: center;
            padding: 2rem 1.5rem;
            position: relative;
        }

        .flow-step:not(:last-child)::after {
            content: '→';
            position: absolute;
            right: -0.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            color: var(--orange);
            font-weight: 700;
        }

        .step-num {
            width: 48px; height: 48px;
            border-radius: 50%;
            background: var(--orange);
            color: white;
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 1.1rem;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1rem;
        }

        .step-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.4rem;
        }

        .step-desc {
            font-size: 0.78rem;
            color: var(--gray);
            line-height: 1.6;
        }

        /* スクロールアニメ */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: none;
        }

        @keyframes fadeDown {
            from { opacity: 0; transform: translateY(-20px); }
            to   { opacity: 1; transform: none; }
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to   { opacity: 1; transform: none; }
        }

        /* レスポンシブ */
        @media (max-width: 600px) {
            .hero-stats { gap: 1.5rem; }
            .stat-num { font-size: 2rem; }
            .flow-step:not(:last-child)::after { display: none; }
        }

        /* ── お問い合わせフォーム ── */
        .contact-section {
            padding: 6rem 5%;
            background: var(--gray-light);
        }

        .contact-form {
            max-width: 680px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 4px 30px rgba(0,0,0,0.06);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin-bottom: 1.2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            margin-bottom: 0;
        }

        .form-label {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--navy);
        }

        .required {
            color: var(--orange);
            margin-left: 0.2rem;
        }

        .form-input {
            padding: 0.75rem 1rem;
            border: 1.5px solid #E2E8F0;
            border-radius: 8px;
            font-size: 0.9rem;
            font-family: 'Noto Sans JP', sans-serif;
            color: var(--text);
            transition: border-color 0.2s, box-shadow 0.2s;
            background: white;
            width: 100%;
            outline: none;
            appearance: none;
        }

        .form-input:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
        }

        .form-textarea {
            min-height: 130px;
            resize: vertical;
            margin-bottom: 1rem;
        }

        .form-note {
            font-size: 0.75rem;
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .form-submit {
            width: 100%;
            background: var(--orange);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            font-family: 'Noto Sans JP', sans-serif;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }
        .form-submit:hover {
            background: var(--orange-light);
            transform: translateY(-1px);
        }

        @media (max-width: 600px) {
            .form-row { grid-template-columns: 1fr; }
            .contact-form { padding: 2rem 1.5rem; }
        }


        /* ── お問い合わせフォーム ── */
        .contact-section { padding: 6rem 5%; }
        .contact-form-wrap {
            max-width: 680px; margin: 0 auto;
            background: #FFFFFF; border-radius: 20px;
            padding: 3rem; box-shadow: 0 4px 30px rgba(0,0,0,0.07);
        }
        .form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; margin-bottom:1.2rem; }
        .form-group { display:flex; flex-direction:column; gap:0.4rem; margin-bottom:1.2rem; }
        .form-label { font-size:0.82rem; font-weight:700; color:#1A1A2E; }
        .req { margin-left:0.2rem; }
        .form-input {
            padding:0.75rem 1rem; border:1.5px solid #E2E8F0; border-radius:8px;
            font-size:0.9rem; font-family:'Noto Sans JP',sans-serif; color:#1E293B;
            transition:border-color 0.2s,box-shadow 0.2s;
            background:white; width:100%; outline:none; -webkit-appearance:none;
        }
        .form-textarea { min-height:130px; resize:vertical; }
        .form-note { font-size:0.75rem; color:#64748B; margin-top:1rem; margin-bottom:1.5rem; line-height:1.6; }
        .form-submit {
            width:100%; border:none; padding:1rem;
            border-radius:8px; font-size:1rem; font-weight:700;
            font-family:'Noto Sans JP',sans-serif; cursor:pointer;
            transition:filter 0.2s,transform 0.2s;
        }
        .form-submit:hover:not(:disabled) { filter:brightness(1.08); transform:translateY(-1px); }
        .form-submit:disabled { opacity:0.65; cursor:not-allowed; }
        .form-success { display:none; text-align:center; padding:2.5rem 1rem; }
        .form-success-icon { font-size:3rem; margin-bottom:1rem; }
        .form-success-title { font-size:1.2rem; font-weight:700; color:#1A1A2E; margin-bottom:0.5rem; }
        .form-success-desc { font-size:0.88rem; color:#64748B; line-height:1.8; }
        @media (max-width:600px) {
            .form-row { grid-template-columns:1fr; }
            .contact-form-wrap { padding:2rem 1.5rem; }
        }

/* ── PRO機能セクション ────────────────────── */
.pro-section {
    padding: 6rem 2rem;
    background: var(--white);
    text-align: center;
}

.pro-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    text-align: left;
}

.pro-feature-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #E2E8F0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pro-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.pro-feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.pro-feature-icon { font-size: 2.2rem; }

.pro-feature-plan {
    background: var(--orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.08em;
}

.pro-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.pro-feature-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.pro-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pro-feature-list li {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

/* ── 業種別活用シーン ──────────────────────── */
.usecase-section {
    padding: 6rem 2rem;
    background: var(--navy);
    text-align: center;
}

.usecase-section .section-label { color: rgba(255,107,53,0.8); }
.usecase-section .section-title { color: var(--white); }
.usecase-section .section-sub   { color: rgba(255,255,255,0.5); }

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    text-align: left;
}

.usecase-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: background 0.3s, transform 0.3s;
}

.usecase-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.usecase-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.usecase-industry {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 1rem;
}

.usecase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.usecase-list li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.usecase-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 0.75rem;
    top: 0.1rem;
}

@media (max-width: 768px) {
    .pro-features-grid,
    .usecase-grid { grid-template-columns: 1fr; }

    /* 業種カード：スマホでは縦1列 */
    .industry-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 1rem;
    }

    .industry-card {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.2rem;
    }

    .card-emoji {
        font-size: 1.8rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .card-desc { display: none; }

    .card-arrow { margin-top: 0.2rem; }

    /* PRO機能カード：スマホではアコーディオン */
    .pro-feature-card {
        cursor: pointer;
    }

    .pro-feature-desc,
    .pro-feature-list {
        display: none;
    }

    .pro-feature-card.is-open .pro-feature-desc,
    .pro-feature-card.is-open .pro-feature-list {
        display: block;
    }

    .pro-feature-header::after {
        content: '＋';
        font-size: 1.2rem;
        color: #94a3b8;
        font-weight: 300;
    }

    .pro-feature-card.is-open .pro-feature-header::after {
        content: '－';
    }
}

/* ── ナビゲーション: ログインリンク追加 ───────────────────── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-login {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-login:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

/* ── 掲載店舗セクション ────────────────────────────────────── */
.stores-section {
    padding: 5rem 2rem;
    background: #f8fafc;
    text-align: center;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2.5rem auto 0;
    text-align: left;
}

.store-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.store-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #e2e8f0;
}

.store-card-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.store-card-body {
    padding: 1rem 1.1rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.store-card-genre {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.store-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
}

.store-card-catch {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-card-location {
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: auto;
    padding-top: 0.4rem;
}

/* ローディング */
.store-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
    color: #94a3b8;
}

.store-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #e2e8f0;
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

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

/* すべて見るボタン */
.stores-cta {
    margin-top: 2.5rem;
}

.stores-more-btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.stores-more-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .store-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .store-grid { grid-template-columns: 1fr; }
    .nav-login  { display: none; } /* スマホではログインリンク省略 */
}
