:root {
    --orange: #eb5505;
    --orange-dark: #c94500;
    --orange-light: #ff7530;
    --orange-pale: #fff4ee;
    --orange-ultra-pale: #fff9f6;
    --orange-shadow: rgba(235, 85, 5, 0.22);

    --black: #0f0f1a;
    --text: #1e1e2e;
    --text-sub: #52525e;
    --text-muted: #8a8a9a;

    --bg: #ffffff;
    --bg-off: #faf9f7;
    --bg-section: #f4f3f0;
    --border: #e6e5e2;
    --border-light: #eeede9;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.07);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.07);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
    --shadow-orange: 0 6px 24px rgba(235, 85, 5, 0.25);

    --font-display: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    --font-body: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', sans-serif;

    --transition: 0.2s ease;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--bg);
}

a {
    color: var(--orange);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ========================================
   Site Header — ロゴのみ
   ======================================== */
.site-header {
    padding: 12px 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

.site-logo {
    height: 32px;
    width: auto;
    display: block;
}

/* Legal Bar — 法的表記: ほぼ見えない */
.legal-bar {
    background: var(--bg-section);
    padding: 4px 16px;
    font-size: 9px;
    color: rgba(160, 158, 154, 0.85);
    text-align: right;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-light);
}

@media (max-width: 767px) {
    .legal-bar {
        font-size: 8.5px;
        text-align: left;
    }
}

/* ========================================
   Info Bar (後方互換)
   ======================================== */
.info-bar {
    background: var(--bg-section);
    padding: 6px 16px;
    font-size: 10px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.info-bar-left {
    flex-shrink: 0;
}

.info-bar-logo {
    height: 44px;
    width: auto;
    display: block;
    margin: 6px 0;
}

.info-bar-right {
    align-self: flex-end;
    text-align: right;
}

.info-bar-right span {
    display: inline;
    margin-right: 10px;
}

.info-bar-right span:last-child {
    margin-right: 0;
}

@media (max-width: 767px) {
    .info-bar {
        font-size: 9px;
        padding: 5px 12px;
    }

    .info-bar-logo {
        height: 36px;
    }

    .info-bar-right span {
        display: block;
        margin-right: 0;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

/* 背景装飾: 右上コーナーにドットグリッド */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background-image: radial-gradient(circle, rgba(235, 85, 5, 0.22) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    pointer-events: none;
    z-index: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

/* 上部に細いオレンジボーダー */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 32px 24px 16px;
    text-align: center;
}

.hero-headline {
    margin-bottom: 20px;
}

.hero-catch {
    font-size: 14px;
    font-family: var(--font-display);
    color: var(--text-sub);
    margin-bottom: 14px;
    letter-spacing: 0.12em;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-catch::before,
.hero-catch::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--orange);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 16px;
}

.hero-title strong {
    color: var(--orange);
    font-size: 30px;
    display: inline;
}

.hero-logo {
    display: block;
    height: 48px;
    width: auto;
    margin: 10px auto 0;
    filter: drop-shadow(0 2px 8px rgba(235, 85, 5, 0.2));
}

/* ヒーロー特徴タグ: シンプルな箇条スタイル */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 20px;
    margin-bottom: 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-sub);
    font-size: 12px;
    font-weight: 500;
    padding: 0;
    border-radius: 0;
}

.hero-tag::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-display);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    letter-spacing: 0.04em;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

/* Primary: 塗りつぶし、目立つ */
.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 3px 12px rgba(235, 85, 5, 0.3);
}

.btn-primary:hover {
    background: var(--orange-dark);
    box-shadow: 0 6px 20px rgba(235, 85, 5, 0.35);
}

/* Secondary: オレンジ枠線 */
.btn-outline {
    background: transparent;
    color: var(--orange);
    border: 1.5px solid var(--orange);
}

.btn-outline:hover {
    background: var(--orange-ultra-pale);
    border-color: var(--orange-dark);
    color: var(--orange-dark);
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ========================================
   Section Base
   ======================================== */
.section {
    padding: 28px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 28px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--orange);
    margin-bottom: 10px;
    background: none;
    padding: 0;
    border-radius: 0;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--orange);
    flex-shrink: 0;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.5;
}

.section-title h2 .au-brand {
    color: var(--orange);
}

/* h2のオレンジアンダーライン */
.section-title h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--orange);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-sub {
    font-size: 13px;
    color: var(--text-sub);
    margin-top: 6px;
}

/* au ブランドカラー */
.au-brand {
    color: var(--orange);
}

/* ========================================
   Features Section
   ======================================== */
.features {
    background: var(--bg-off);
    padding-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* 装飾的な番号 — アイコン円の代わりに */
.feature-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 900;
    color: rgba(235, 85, 5, 0.4);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.03em;
    padding-top: 1px;
    user-select: none;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.9;
    text-align: left;
}

/* ========================================
   Speed Compare — 波＋粒子アニメーション
   ======================================== */
.speed-compare {
    background: var(--bg-section);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

.speed-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.speed-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 12px;
}

.speed-label {
    color: var(--text-muted);
    font-weight: 500;
}

.speed-row-fast .speed-label {
    font-weight: 700;
    color: var(--text);
}

.speed-spec {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    font-feature-settings: "tnum" 1;
}

.speed-row-fast .speed-spec {
    font-size: 18px;
    color: var(--orange);
}

.speed-track {
    position: relative;
    width: 100%;
    height: 38px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
}

.speed-row-fast .speed-track {
    background: rgba(235, 85, 5, 0.07);
}

/* Wave SVG: 200% 幅で 2 周期分を描画し、translateX(-50%) で seamless ループ */
.speed-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    animation: speed-wave-shift linear infinite;
}

.speed-row-slow .speed-wave {
    color: #b6b4b0;
    animation-duration: 6s;
}

.speed-row-fast .speed-wave {
    color: var(--orange);
    animation-duration: 1s;
    filter: drop-shadow(0 0 4px rgba(235, 85, 5, 0.5));
}

@keyframes speed-wave-shift {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* 粒子：左から右へ流れる */
.speed-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.speed-particles span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-radius: 50%;
    background: currentColor;
    animation: speed-particle-flow linear infinite;
}

@keyframes speed-particle-flow {
    from { left: -6px; opacity: 0; }
    8% { opacity: 1; }
    92% { opacity: 1; }
    to { left: calc(100% + 6px); opacity: 0; }
}

.speed-row-slow .speed-particles {
    color: #888;
}

.speed-row-slow .speed-particles span {
    animation-duration: 6s;
}

.speed-row-slow .speed-particles span:nth-child(1) { animation-delay: 0s; }
.speed-row-slow .speed-particles span:nth-child(2) { animation-delay: 2s; }
.speed-row-slow .speed-particles span:nth-child(3) { animation-delay: 4s; }

.speed-row-fast .speed-particles {
    color: var(--orange);
}

.speed-row-fast .speed-particles span {
    width: 5px;
    height: 5px;
    margin-top: -2.5px;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgba(235, 85, 5, 0.85), 0 0 4px rgba(235, 85, 5, 1);
}

.speed-row-fast .speed-particles span:nth-child(1) { animation-delay: 0s; }
.speed-row-fast .speed-particles span:nth-child(2) { animation-delay: 0.16s; }
.speed-row-fast .speed-particles span:nth-child(3) { animation-delay: 0.33s; }
.speed-row-fast .speed-particles span:nth-child(4) { animation-delay: 0.5s; }
.speed-row-fast .speed-particles span:nth-child(5) { animation-delay: 0.66s; }
.speed-row-fast .speed-particles span:nth-child(6) { animation-delay: 0.83s; }

.speed-caption {
    margin-top: 4px;
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

.speed-compare-note {
    font-size: 10px;
    color: var(--text-muted);
    text-align: left;
    margin-top: 14px;
    line-height: 1.7;
}

/* a11y: 動きを抑制したいユーザー向けにアニメ停止 */
@media (prefers-reduced-motion: reduce) {
    .speed-wave,
    .speed-particles span {
        animation: none !important;
    }
}

/* ========================================
   Smart Value Card
   ======================================== */
.smartvalue-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 16px;
    border: 1px solid var(--border-light);
}

.smartvalue-header {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    padding: 18px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.smartvalue-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.smartvalue-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
}

.smartvalue-discount {
    padding: 20px;
    background: var(--orange-ultra-pale);
    text-align: center;
}

.discount-label {
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 6px;
}

.discount-amount {
    line-height: 1;
}

.discount-amount .max {
    font-size: 14px;
    color: var(--text);
}

.discount-amount .value {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 900;
    color: var(--orange);
}

.discount-amount .yen {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
}

.discount-amount .off {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.smartvalue-points {
    padding: 16px 20px;
    list-style: none;
}

.smartvalue-points li {
    font-size: 13px;
    color: var(--text);
    padding: 6px 0 6px 22px;
    position: relative;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.smartvalue-points li:last-child {
    border-bottom: none;
}

.smartvalue-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* ========================================
   Notes Accordion
   ======================================== */
.notes-accordion {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.notes-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg);
}

.notes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--bg-section);
    cursor: pointer;
    transition: background var(--transition);
}

.notes-header:hover {
    background: #eceae6;
}

.notes-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}

.notes-toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: transform var(--transition);
}

.notes-item.active .notes-toggle {
    transform: rotate(180deg);
}

.notes-content {
    display: none;
    padding: 12px 14px;
    background: var(--bg);
}

.notes-item.active .notes-content {
    display: block;
}

.notes-section-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px 0;
}

.notes-section-title:not(:first-child) {
    margin-top: 14px;
}

.notes-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes-content li {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 3px 0 3px 14px;
    position: relative;
    text-align: left;
}

.notes-content li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    background: var(--bg);
    padding: 48px 20px;
}

.prices-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.prices-sec {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.prices-sec:hover {
    box-shadow: var(--shadow);
}

.prices-sec-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, var(--bg-off) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border-light);
}

.prices-sec-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.prices-sec-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prices-sec-box {
    flex: 1;
    text-align: center;
}

.prices-sec-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.prices-sec-note {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0 0 2px 0;
}

.prices-sec-amount {
    font-size: 14px;
    color: var(--text-sub);
}

.prices-sec-amount .number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--orange);
}

.prices-sec-amount .unit {
    font-size: 15px;
    font-weight: 700;
    color: var(--orange);
}

.prices-sec-body {
    padding: 14px;
    background: var(--bg-section);
}

.prices-sec-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.prices-type-item {
    padding: 12px 8px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1.5px solid var(--border);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.prices-type-item:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-xs);
}

.prices-type-item.highlight {
    background: var(--orange-ultra-pale);
    border: 2px solid var(--orange);
    position: relative;
}

.prices-type-item.highlight::before {
    content: 'おすすめ';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
}

.prices-type-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 6px;
}

.prices-type-label small {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

.prices-type-price {
    text-align: center;
}

.prices-type-price .prefix {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1px;
}

.prices-type-price .number {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: var(--orange);
}

.prices-type-price .unit {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
}

.prices-type-price .text {
    font-size: 10px;
    color: var(--text);
}

.prices-type-price .tax {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 3px;
}

.prices-note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
    margin-top: 8px;
}

/* ========================================
   Flow Section
   ======================================== */
.flow {
    background: var(--bg-off);
}

.flow-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 440px;
    margin: 0 auto;
}

.flow-item {
    position: relative;
    background: var(--bg);
    padding: 20px 20px 20px 60px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border-light);
    transition: transform var(--transition), box-shadow var(--transition);
}

.flow-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.flow-number {
    position: absolute;
    top: 20px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 50%;
    color: #fff;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 3px 10px rgba(235, 85, 5, 0.35);
    flex-shrink: 0;
}

.flow-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.flow-desc {
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.8;
}

/* ステップ間の連結矢印 */
.flow-arrow {
    display: flex;
    justify-content: center;
    padding: 6px 0;
    position: relative;
    z-index: 1;
}

.flow-arrow svg {
    width: 18px;
    height: 18px;
    fill: var(--orange);
    opacity: 0.45;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    background: var(--bg-section);
    padding-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-sm);
    border-color: rgba(235, 85, 5, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    cursor: pointer;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--bg-off);
}

.faq-q {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-display);
}

.faq-question-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}

.faq-toggle {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: transform var(--transition);
    background: var(--bg-section);
    border-radius: 50%;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: var(--orange-pale);
    color: var(--orange);
}

.faq-answer {
    padding: 0 16px;
    background: var(--bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 16px 16px;
}

.faq-answer p {
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.9;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

/* ========================================
   Final CTA Section
   ======================================== */
.cta-section {
    background: var(--orange);
    padding: 48px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 細い対角ストライプテクスチャ */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.04) 0px,
        rgba(255, 255, 255, 0.04) 1px,
        transparent 1px,
        transparent 10px
    );
    pointer-events: none;
}

.cta-section::after {
    content: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 340px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* CTAセクション内のボタン上書き */
.cta-section .btn-primary {
    background: #fff;
    color: var(--orange);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.cta-section .btn-primary:hover {
    background: #fff;
    color: var(--orange-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.cta-section .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
    color: #fff;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.9);
    padding: 20px 20px 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-copyright {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    padding-bottom: 4px;
}

/* ========================================
   Sticky CTA Bar (Mobile)
   ======================================== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta-inner {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}

.sticky-cta .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .sticky-cta {
        display: block;
    }

    /* ページ下部が隠れないよう余白確保 */
    .footer {
        padding-bottom: 80px;
    }
}

/* ========================================
   Scroll Reveal Animation
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========================================
   Responsive — Tablet & Desktop
   ======================================== */
@media (min-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        max-width: 780px;
        margin: 0 auto;
    }

    /* Hero */
    .hero-content {
        padding: 48px 40px 24px;
    }

    .hero-catch {
        font-size: 16px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-title strong {
        font-size: 40px;
    }

    .hero-logo {
        height: 60px;
    }

    .cta-group {
        flex-direction: row;
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .cta-group .btn {
        flex: 1;
    }

    /* Sections */
    .section {
        padding: 40px 40px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    /* Features */
    .feature-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1;
        min-width: calc(50% - 10px);
    }

    /* Pricing */
    .pricing {
        padding: 64px 40px;
    }

    /* CTA */
    .cta-buttons {
        flex-direction: row;
        max-width: 500px;
    }

    .cta-buttons .btn {
        flex: 1;
    }

    /* Footer */
    .footer {
        padding: 32px 40px 20px;
    }
}

/* ========================================
   Phone Modal (PC)
   ======================================== */
.phone-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 26, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.phone-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.phone-modal {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 0;
    text-align: center;
    position: relative;
    max-width: 440px;
    width: 92%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.22);
    transform: translateY(16px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: visible;
}

.phone-modal-overlay.is-active .phone-modal {
    transform: translateY(0) scale(1);
}

.phone-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--black);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
    color: #fff;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.phone-modal-close:hover {
    background: #333;
    transform: scale(1.08);
}

.phone-modal-close svg {
    width: 15px;
    height: 15px;
}

.phone-modal-header {
    background: var(--orange);
    padding: 16px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.phone-modal-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.phone-modal-icon svg {
    width: 17px;
    height: 17px;
}

.phone-modal-label {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.phone-modal-body {
    padding: 32px 36px 20px;
}

.phone-modal-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 12px;
    user-select: all;
    cursor: text;
}

.phone-modal-hours {
    font-size: 13px;
    color: var(--text-muted);
}

.phone-modal-note {
    padding: 0 36px 24px;
}

.phone-modal-note p {
    font-size: 11px;
    line-height: 1.7;
    color: var(--text-muted);
    text-align: left;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

/* ========================================
   Complete Page
   ======================================== */
.complete-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--bg);
}

.complete-content {
    text-align: center;
    max-width: 360px;
}

.complete-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.complete-icon svg {
    width: 36px;
    height: 36px;
    fill: #4caf50;
}

.complete-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.complete-message {
    font-size: 14px;
    color: var(--text-sub);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-card {
    background: var(--bg-section);
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.contact-card p {
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 8px;
}

.contact-phone {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    display: block;
}

/* ========================================
   Apply Form Section (LP内 埋め込みフォーム)
   ======================================== */
.apply-section {
    background: var(--bg-section);
    padding: 16px 16px 36px;
    scroll-margin-top: 16px;
}

.apply-group {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.apply-phone-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 20px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    background: var(--orange);
    border: 1px solid rgba(160, 50, 0, 0.35);
    border-radius: var(--radius);
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(120, 35, 0, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(120, 35, 0, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
    letter-spacing: 0.04em;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.apply-phone-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        inset 0 -2px 0 rgba(120, 35, 0, 0.25),
        0 3px 6px rgba(0, 0, 0, 0.18);
    text-decoration: none;
}

.apply-phone-btn:active {
    transform: translateY(2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(120, 35, 0, 0.18),
        0 1px 2px rgba(0, 0, 0, 0.15);
}

.apply-phone-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 1px rgba(120, 35, 0, 0.3));
}

.apply-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.apply-view[hidden] {
    display: none;
}

/* ヘッダー（オレンジ塗りつぶしバー） */
.apply-header {
    background: var(--orange);
    text-align: center;
    padding: 22px 28px 20px;
    color: #fff;
}

.apply-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

/* フォーム */
.apply-form {
    display: flex;
    flex-direction: column;
    padding: 26px 28px 24px;
}

.apply-field {
    margin-bottom: 18px;
}

.apply-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text);
    margin-bottom: 6px;
}

.apply-label-required {
    font-size: 10px;
    font-weight: 700;
    color: var(--orange);
    background: var(--orange-pale);
    padding: 2px 7px;
    border-radius: 4px;
}

.apply-label-note {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-section);
    padding: 2px 7px;
    border-radius: 4px;
}

.apply-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.apply-input::placeholder {
    color: var(--text-muted);
}

.apply-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(235, 85, 5, 0.12);
}

.apply-input.error {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.10);
}

.apply-field-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

.apply-error {
    font-size: 12px;
    color: #c0392b;
    margin-top: 6px;
    display: none;
}

.apply-error.show {
    display: block;
}

.apply-form-error {
    font-size: 13px;
    color: #c0392b;
    background: #fff1ef;
    border: 1px solid #f5c4bd;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
    text-align: center;
    display: none;
}

.apply-form-error.show {
    display: block;
}

.apply-submit {
    width: 100%;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-display);
    color: #ffffff;
    background: var(--border);
    border: none;
    border-radius: 10px;
    cursor: not-allowed;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    margin-top: 6px;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.apply-submit:not(:disabled) {
    background: var(--orange);
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(235, 85, 5, 0.28);
}

.apply-submit:not(:disabled):hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(235, 85, 5, 0.35);
}

.apply-submit:not(:disabled):active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(235, 85, 5, 0.22);
}

.apply-submit-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: applyEmbedSpin 0.9s linear infinite;
    display: inline-block;
    margin-right: 8px;
    vertical-align: -3px;
}

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

/* 完了ビュー */
.apply-success {
    text-align: center;
    padding: 40px 28px 32px;
}

.apply-success-icon {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: applyEmbedScaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.apply-success-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

@keyframes applyEmbedScaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.apply-success-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.apply-success-message {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.7;
    margin-bottom: 12px;
}

.apply-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--orange);
    background: var(--orange-pale);
    border: 1px solid rgba(235, 85, 5, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 22px;
    letter-spacing: 0.04em;
}

.apply-success-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

.apply-success-phone {
    background: var(--bg-section);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.apply-success-phone-label {
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 12px;
}

.apply-success-phone-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 14px 16px;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 12px rgba(235, 85, 5, 0.28);
}

.apply-success-phone-link:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(235, 85, 5, 0.35);
}

.apply-success-phone-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.apply-success-phone-row svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.apply-success-phone-num {
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
}

.apply-success-phone-hours {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0;
    line-height: 1;
}

@media (max-width: 480px) {
    .apply-section {
        padding: 12px 12px 28px;
    }
    .apply-header {
        padding: 20px 22px 18px;
    }
    .apply-title {
        font-size: 19px;
    }
    .apply-form {
        padding: 22px 20px 22px;
    }
    .apply-success {
        padding: 32px 20px 24px;
    }
    .apply-success-phone-num {
        font-size: 22px;
    }
}

/* ========================================
   Phone Branch Modal (電話でお申し込み 分岐)
   ======================================== */
.phone-branch-modal {
    max-width: 460px;
}

.phone-branch-body {
    padding: 26px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-branch-lead {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 4px;
}

.phone-branch-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 18px;
    border-radius: var(--radius);
    text-decoration: none;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
    line-height: 1.4;
}

.phone-branch-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.phone-branch-btn-label {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.phone-branch-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    opacity: 0.92;
}

.phone-branch-btn-cta::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1.003 1.003 0 011.01-.24c1.12.37 2.33.57 3.57.57.55 0 1.01.46 1.01 1.01v3.49c0 .55-.46 1.01-1.01 1.01C10.07 21.02 2.98 13.93 2.98 5.01 2.98 4.46 3.44 4 3.99 4h3.5c.55 0 1.01.46 1.01 1.01 0 1.25.2 2.45.57 3.57.11.35.03.74-.24 1.01l-2.21 2.2z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1.003 1.003 0 011.01-.24c1.12.37 2.33.57 3.57.57.55 0 1.01.46 1.01 1.01v3.49c0 .55-.46 1.01-1.01 1.01C10.07 21.02 2.98 13.93 2.98 5.01 2.98 4.46 3.44 4 3.99 4h3.5c.55 0 1.01.46 1.01 1.01 0 1.25.2 2.45.57 3.57.11.35.03.74-.24 1.01l-2.21 2.2z'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}

.phone-branch-btn-primary {
    background: var(--orange);
    color: #fff;
    border: 1px solid rgba(160, 50, 0, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 3px 10px rgba(235, 85, 5, 0.28);
}

.phone-branch-btn-primary:hover {
    background: var(--orange-dark);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 5px 14px rgba(235, 85, 5, 0.35);
}

.phone-branch-btn-secondary {
    background: var(--bg);
    color: var(--orange);
    border: 1.5px solid var(--orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.phone-branch-btn-secondary:hover {
    background: var(--orange-ultra-pale);
    color: var(--orange-dark);
    border-color: var(--orange-dark);
}

.phone-branch-hours {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .phone-branch-body {
        padding: 22px 20px 20px;
    }
    .phone-branch-btn {
        padding: 14px 14px;
    }
    .phone-branch-btn-label {
        font-size: 14px;
    }
    .phone-branch-btn-cta {
        font-size: 12px;
    }
}

/* ========================================
   Entry Modal (流入時 窓口振り分け)
   ======================================== */
.entry-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 26, 0.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.entry-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.entry-modal {
    background: var(--bg);
    border-radius: var(--radius-lg);
    position: relative;
    max-width: 460px;
    width: 100%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 30px 90px rgba(15, 15, 26, 0.32);
    transform: translateY(18px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.entry-modal-overlay.is-active .entry-modal {
    transform: translateY(0) scale(1);
}

.entry-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition), color var(--transition);
    color: var(--text-sub);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(15, 15, 26, 0.08);
}

.entry-modal-close:hover {
    background: #fff;
    color: var(--text);
    transform: scale(1.06);
}

.entry-modal-close svg {
    width: 18px;
    height: 18px;
}

.entry-modal-header {
    position: relative;
    padding: 30px 28px 22px;
    text-align: center;
}

.entry-modal-header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 36px;
    height: 3px;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--orange-light), var(--orange));
    transform: translateX(-50%);
}

.entry-modal-logo {
    display: block;
    margin: 0 auto;
    width: clamp(170px, 55%, 210px);
    height: auto;
}

.entry-modal-body {
    padding: 18px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.entry-modal-btn {
    position: relative;
    display: grid;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 8px;
    padding: 20px 22px 18px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    text-align: left;
    font-family: var(--font-body);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    width: 100%;
    overflow: hidden;
}

.entry-modal-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.entry-modal-btn-badge {
    justify-self: start;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    line-height: 1.4;
}

.entry-modal-btn-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.entry-modal-btn-meta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 2px;
    padding-top: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-top: 1px solid transparent;
}

.entry-modal-btn-meta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Primary: 新規・引越し・乗り換え */
.entry-modal-btn-primary {
    background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange) 100%);
    color: #fff;
    border: 1px solid rgba(160, 50, 0, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 6px 18px rgba(235, 85, 5, 0.32);
}

.entry-modal-btn-primary .entry-modal-btn-badge {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.entry-modal-btn-primary .entry-modal-btn-meta {
    border-top-color: rgba(255, 255, 255, 0.28);
}

.entry-modal-btn-primary:hover {
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 8px 22px rgba(235, 85, 5, 0.4);
}

/* Secondary: ご契約中の方 */
.entry-modal-btn-secondary {
    background: var(--bg);
    color: var(--text);
    border: 1.5px solid var(--border);
    box-shadow: 0 2px 8px rgba(15, 15, 26, 0.05);
}

.entry-modal-btn-secondary .entry-modal-btn-badge {
    background: var(--bg-section);
    color: var(--text-sub);
}

.entry-modal-btn-secondary .entry-modal-btn-meta {
    color: var(--text-muted);
    border-top-color: var(--border-light);
}

.entry-modal-btn-secondary:hover {
    background: var(--bg);
    color: var(--text);
    border-color: var(--text-muted);
    box-shadow: 0 4px 14px rgba(15, 15, 26, 0.08);
}

.entry-modal-note {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.7;
    color: var(--text-muted);
    text-align: left;
    padding: 10px 12px;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
}

@media (max-width: 480px) {
    .entry-modal-header {
        padding: 26px 22px 20px;
    }
    .entry-modal-body {
        padding: 16px 18px 22px;
    }
    .entry-modal-btn {
        padding: 18px 18px 16px;
    }
    .entry-modal-btn-title {
        font-size: 17px;
    }
}

