/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-green: #2F5233;
    --light-forest: #4A7C59;
    --sage-green: #7BA05B;
    --warm-orange: #D2691E;
    --text-dark: #3C4142;
    --yellow-accent: #FFD700;
    --red-accent: #DC2626;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-600: #4B5563;
    --gray-900: #111827;
    --white: #FFFFFF;
}

body {
    font-family: "Yu Gothic", "Yu Gothic Medium", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--gray-50);
    font-size: 16px; /* 緊急修正: 最低フォントサイズ確保 */
}

.l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles - モバイルファースト最適化 */
.l-header {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* モバイル優先: コンパクトなヘッダー */
    min-height: 60px;
}

.l-header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* モバイル: 縦幅を大幅に削減 */
    padding: 0.5rem 0;
    min-height: 60px;
}

.c-logo {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    /* タッチターゲット確保 */
    min-height: 44px;
}

.c-logo__icon {
    /* モバイル: アイコンサイズを削減 */
    font-size: 1.5rem;
    line-height: 1;
}

.c-logo h1 {
    /* モバイル: タイトルサイズを削減 */
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--forest-green);
    line-height: 1.3;
    margin: 0;
}

.l-header__info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.c-service-area {
    display: none; /* モバイルでは非表示 */
}

.c-button--header-phone {
    background: var(--warm-orange);
    color: var(--white);
    /* モバイル: よりコンパクトなボタン */
    padding: 0.375rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.3s ease;
    /* タッチターゲット確保 */
    min-height: 44px;
    white-space: nowrap;
}

.c-button--header-phone .c-icon--phone {
    font-size: 1rem;
    line-height: 1;
}

.c-button--header-phone:active {
    background: #CD5C00;
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--forest-green);
    cursor: pointer;
    /* タッチターゲット確保 */
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
    border-radius: 4px;
}

.mobile-menu-btn:active {
    background: var(--gray-100);
}

/* Hero Section */
.s-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('../images/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.s-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent, rgba(0, 0, 0, 0.6));
}

.s-hero__content {
    position: relative;
    z-index: 10;
    max-width: 28rem;
    padding: 2rem 1rem;
}



.s-hero__title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.s-hero__title-accent {
    font-size: 3.75rem;
    color: var(--yellow-accent);
    display: block;
}

.s-hero__price {
    margin-bottom: 2rem;
}

.c-price__label {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--yellow-accent);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.c-price__amount {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.c-price__small {
    font-size: 1.875rem;
}

.c-price__note {
    font-size: 1.125rem;
    color: #FDE68A;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 3つ並びバッジシステム - モバイル特化 */
.c-trust-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.c-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #2D5AA0 0%, #1e3a5f 100%);
    color: white;
    padding: 12px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(45, 90, 160, 0.3);
    min-width: 95px;
    min-height: 60px;
    justify-content: center;
    animation: badgeSlideIn 0.8s ease-out;
    animation-fill-mode: both;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* タッチターゲット最適化 */
    touch-action: manipulation;
}

.c-badge--urgent {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    animation-delay: 0.2s;
}

.c-badge--area {
    background: linear-gradient(135deg, #28A745 0%, #20c997 100%);
    animation-delay: 0.4s;
}

.c-badge__icon {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.c-badge__text {
    font-size: 1rem; /* 緊急修正: 16px以上でアクセシビリティ確保 */
    line-height: 1.2;
    text-align: center;
}

/* タッチ時のフィードバック */
.c-badge:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(45, 90, 160, 0.4);
}

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

/* Phase 2: 進行性強化アニメーション */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(45, 90, 160, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(45, 90, 160, 0.6);
    }
}



/* 段階的遅延アニメーション */
.c-problem-card {
    animation-fill-mode: both;
}

.c-problem-card:nth-child(1) { animation-delay: 0.1s; }
.c-problem-card:nth-child(2) { animation-delay: 0.2s; }
.c-problem-card:nth-child(3) { animation-delay: 0.3s; }
.c-problem-card:nth-child(4) { animation-delay: 0.4s; }
.c-problem-card:nth-child(5) { animation-delay: 0.5s; }
.c-problem-card:nth-child(6) { animation-delay: 0.6s; }

.c-service-card {
    animation-fill-mode: both;
}

.c-service-card:nth-child(1) { animation-delay: 0.1s; }
.c-service-card:nth-child(2) { animation-delay: 0.2s; }
.c-service-card:nth-child(3) { animation-delay: 0.3s; }

/* カードのタッチフィードバック強化のみ保持 */

/* カードのタッチフィードバック強化 */
.c-problem-card,
.c-service-card,
.c-area-card {
    touch-action: manipulation;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-problem-card:active,
.c-service-card:active,
.c-area-card:active {
    transform: scale(0.98) translateY(2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 料金表タップ比較機能 - 新しい命名規則対応 */
.c-pricing-table tbody tr {
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.c-pricing-table tbody tr.selected {
    background: rgba(45, 90, 160, 0.15);
    border-left: 4px solid #2D5AA0;
    animation: slideInFromLeft 0.3s ease;
}

/* フォーム入力時のリアルタイム検証表示 */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #2D5AA0;
    box-shadow: 0 0 0 3px rgba(45, 90, 160, 0.1);
    transform: scale(1.02);
}

.form-group input.valid {
    border-color: #28A745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-group input.invalid {
    border-color: #DC3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    animation: shake 0.5s ease;
}





@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}

.s-hero__area {
    margin-bottom: 2rem;
    text-align: center;
}

.c-area-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.c-area-header__title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #BBF7D0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.c-area-header__description {
    font-size: 1.125rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* プレミアムCTAボタン - モバイル特化 */
.s-hero__cta {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-button--premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFB627 100%);
    color: white;
    padding: 18px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* タッチターゲット最適化 */
    min-height: 60px;
    touch-action: manipulation;
    position: relative;
    overflow: hidden;
}

.c-button--premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.c-button--premium:active::before {
    left: 100%;
}

.c-cta__icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.c-cta__text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.c-cta__urgent {
    font-size: 1rem; /* ������������: 16px��������������������������������������� */ /* 緊急修正: より読みやすいサイズに */
    font-weight: 500;
    opacity: 0.9;
    margin-top: 2px;
}

/* タッチ時のフィードバック */
.c-button--premium:active {
    transform: scale(0.97);
    box-shadow: 
        0 4px 15px rgba(255, 107, 53, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.c-button--secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: white;
    padding: 16px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* タッチターゲット最適化 */
    min-height: 48px;
    touch-action: manipulation;
}

.c-button--secondary:active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(0.97);
}

.s-hero__hours {
    text-align: center;
}

.c-hours__title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--yellow-accent);
    margin-bottom: 0.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.c-hours__time {
    font-size: 1.125rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Phase 2: 交互背景パターンシステム */
.u-section--primary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    transition: all 0.3s ease;
}

.u-section--accent {
    background: linear-gradient(135deg, #2D5AA0 0%, #1e3a5f 100%);
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

/* アクセントセクション内の適切な色設定 */
.u-section--accent .c-section-header h2 {
    color: var(--forest-green) !important;
}

.u-section--accent .c-section-header p {
    color: var(--text-dark) !important;
}

.u-section--accent h3,
.u-section--accent h4 {
    color: var(--forest-green) !important;
}

.u-section--accent p {
    color: var(--text-dark) !important;
}

/* Service card内のテキストは濃い色を維持 */
.u-section--accent .c-service-card h3,
.u-section--accent .c-service-card p,
.u-section--accent .c-service-card__content h3,
.u-section--accent .c-service-card__content p,
.u-section--accent .service-price .price-label,
.u-section--accent .service-cta-box h3,
.u-section--accent .service-cta-box p {
    color: #333333 !important;
}

.u-section--accent .service-price .price {
    color: var(--forest-green) !important;
}

.u-section--accent .c-area-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}



/* セクション間の視覚的区切り */
.u-section--primary::before,
.u-section--accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(45, 90, 160, 0.3) 50%, transparent 100%);
    z-index: 1;
}

/* Section Headers - c-section-headerが実際に使用される */
.c-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.c-section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--forest-green);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.c-section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .c-section-header {
        margin-bottom: 2rem;
    }
    
    .c-section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .c-section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .c-section-header {
        margin-bottom: 1.5rem;
    }
    
    .c-section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .c-section-header p {
        font-size: 0.9rem;
    }
}

/* Problems Section */
.s-problems {
    padding: 4rem 0;
    background: var(--gray-100);
}

.s-problems__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.c-problem-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.c-problem-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.c-problem-card__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.problem-content h4 {
    font-weight: bold;
    color: var(--forest-green);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.problem-content p {
    color: var(--gray-600);
    font-size: 1rem; /* 緊急修正: 16px以上でアクセシビリティ確保 */
}

.problems-cta {
    text-align: center;
}

.cta-box {
    background: var(--forest-green);
    color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    display: inline-block;
    max-width: 40rem;
}

.cta-box h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1rem; /* ������������: 16px��������������������������������������� */
    margin-bottom: 1.5rem;
}

.cta-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.badge {
    background: var(--warm-orange);
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem; /* ������������: 16px��������������������������������������� */
}

/* Services Section */
.s-services {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.s-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* パターンC：浮遊感強調版 c-service-card */
.c-service-card {
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid rgba(123, 160, 91, 0.2);
    /* 深いシャドウで強い浮遊感 */
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(123, 160, 91, 0.25),
        0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.c-service-card:hover {
    border-color: var(--sage-green);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(123, 160, 91, 0.3),
        0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.c-service-card__image {
    height: 10rem;
    background: var(--gray-50);
    margin: 1rem 1rem 0;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 画像エリアにも軽い浮遊感 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.c-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.c-service-card:hover .c-service-card__image img {
    transform: scale(1.1);
}

/* アイコン表示（画像がない場合） */
.c-service-card__image .service-icon {
    font-size: 3rem;
    color: var(--sage-green);
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.c-service-card__content {
    padding: 1rem 1.5rem 1.5rem;
}

.c-service-card__content h3 {
    color: var(--forest-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* アイコン表示対応：画像がない場合 */
.c-service-card__image .service-icon {
    font-size: 3rem;
    color: var(--sage-green);
    /* 画像がある場合は非表示になる */
}

.c-service-card__image img {
    /* 画像がある場合はアイコンを隠す */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.c-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    /* フラットデザイン：画像のスケール効果を控えめに */
}

.c-service-card:hover .c-service-card__image img {
    /* フラットデザイン：画像スケール効果を削除してシンプルに */
    filter: brightness(1.05);
}

.c-service-card__content {
    padding: 1.5rem;
}

.c-service-card__content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 1rem;
    text-align: left;
    /* フラットデザイン：左揃えでモダンな印象 */
}

.c-service-card__content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
    text-align: left;
    font-size: 0.95rem;
    /* フラットデザイン：左揃え、コンパクトな行間 */
}

.service-price {
    margin: 2rem 0;
    padding: 0;
    background: transparent;
    /* ボックスデザインを削除してクリーンなテキスト表現に */
}

/* 価格比較コンテナ */
.price-comparison {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

/* 価格のタイポグラフィー階層強化 */
.service-price::before {
    content: '料金情報';
    display: block;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 1rem;
    opacity: 1;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price {
    font-size: 2.5rem;
    color: var(--forest-green);
    font-weight: 900;
    display: block;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* 価格比較レイアウト - タイポグラフィー重視版 */
.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid var(--gray-100);
    border-bottom: 2px solid var(--gray-100);
}

/* 当社料金 - テキスト階層化版 */
.our-price {
    text-align: center;
    margin-bottom: 1rem;
}

.our-price .price-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.our-price .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--forest-green);
    line-height: 1;
    margin-bottom: 0.25rem;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.our-price .price.special {
    color: var(--warm-orange);
    position: relative;
}

.our-price .price.special::after {
    content: '特別価格';
    position: absolute;
    top: -0.75rem;
    right: -0.5rem;
    background: var(--red-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transform: rotate(15deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 他社相場 - テキスト階層化版 */
.market-price {
    text-align: center;
    position: relative;
}

.market-price::before {
    content: '他社との価格比較';
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    display: block;
    text-align: center;
}

.market-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.market-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B7280;
    text-decoration: line-through;
    opacity: 1;
    display: block;
    position: relative;
}

/* おすすめポイントセクション - タイポグラフィー重視版 */
.customer-recommendations {
    margin-top: 2rem;
    padding: 0;
    background: transparent;
    border: none;
    border-left: 3px solid var(--forest-green);
    padding-left: 1.5rem;
    /* ボックス要素を全削除してクリーンなテキスト表現に */
}

.customer-recommendations::before {
    content: 'こんなあなたにおすすめです';
    display: block;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    opacity: 1;
}

.customer-recommendations h4 {
    color: var(--forest-green);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.3;
}

.recommendation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommendation-list li {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.recommendation-list li::before {
    content: '▸';
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 0.125rem;
    color: var(--forest-green);
    font-weight: bold;
}

.recommendation-list li:last-child {
    margin-bottom: 0;
}

/* 価格・おすすめポイントのモバイル対応 */
@media (max-width: 768px) {
    .service-price::before {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .our-price .price {
        font-size: 2rem;
    }
    
    .our-price .price.special::after {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
        top: -0.5rem;
        right: -0.3rem;
    }
    
    .market-amount {
        font-size: 1.25rem;
    }
    
    .market-amount::after {
        font-size: 0.65rem;
        bottom: -1.25rem;
    }
    
    /* おすすめポイントのモバイル対応 */
    .customer-recommendations::before {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .customer-recommendations h4 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .customer-recommendations {
        padding-left: 1rem;
    }
    
    .recommendation-list li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .our-price .price {
        font-size: 1.75rem;
    }
    
    .market-amount {
        font-size: 1.125rem;
    }
    
    .price-comparison {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    /* おすすめポイントのスマートフォン対応 */
    .customer-recommendations {
        margin-top: 1.5rem;
        padding-left: 0.75rem;
        border-left-width: 2px;
    }
    
    .customer-recommendations h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .recommendation-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }
    
    .recommendation-list li::before {
        font-size: 0.9rem;
        color: var(--forest-green);
    }
}

.services-cta {
    text-align: center;
}

.service-cta-box {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    max-width: 32rem;
    margin: 0 auto;
}

.service-cta-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333333; /* 緊急修正: より濃い色で確実に読めるように */
    margin-bottom: 1rem;
}

.service-cta-box p {
    color: #555555; /* 緊急修正: より濃い色で確実に読めるように */
    margin-bottom: 1.5rem;
}

.cta-phone {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.cta-hours {
    font-size: 1rem; /* ������������: 16px��������������������������������������� */
    color: var(--gray-600);
}

/* Pricing Section */
.s-pricing {
    padding: 4rem 0;
    background: var(--gray-100);
}

/* プライシングセクションはc-section-headerを使用 */

.c-pricing-table {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid #E5E7EB;
}

.c-pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.c-pricing-table th {
    background: var(--forest-green);
    color: var(--white);
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: bold;
    font-size: 1.125rem;
}

.c-pricing-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    font-weight: 600;
    color: #333333; /* 緊急修正: より濃い色で確実に読めるように */
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.c-pricing-table tbody tr:nth-child(even) {
    background-color: var(--gray-50);
}



.c-pricing-table tbody tr:active {
    background-color: rgba(45, 90, 160, 0.1);
}

.c-pricing-table tbody tr:active td {
    background-color: rgba(45, 90, 160, 0.1);
}



.price-orange {
    color: var(--warm-orange);
    font-weight: bold;
}

.price-green {
    color: var(--forest-green);
    font-weight: bold;
}

.price-special {
    color: #e74c3c;
    font-weight: bold;
    position: relative;
}

.price-special::after {
    content: 'お得！';
    position: absolute;
    top: -0.5rem;
    right: -1rem;
    background: #e74c3c;
    color: white;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

.price-compare {
    color: #6c757d;
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 500;
}

/* WEB限定特典 - 現代的なCTAボックス */
.c-web-special-offer {
    background: linear-gradient(135deg, var(--warm-orange) 0%, #FF8C42 100%);
    color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 
        0 10px 25px rgba(210, 105, 30, 0.3),
        0 5px 15px rgba(210, 105, 30, 0.2);
    position: relative;
    overflow: hidden;
}

.c-web-special-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.c-web-special-offer__header {
    margin-bottom: 1rem;
}

.c-web-special-offer__badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.c-web-special-offer__content {
    position: relative;
    z-index: 2;
}

.c-web-special-offer__title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.c-web-special-offer__description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.c-web-special-offer__benefits {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.c-benefit-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.c-benefit-tag:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.25);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .c-web-special-offer {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .c-web-special-offer__title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .c-web-special-offer__description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .c-web-special-offer__benefits {
        gap: 0.5rem;
    }
    
    .c-benefit-tag {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .c-web-special-offer {
        padding: 1.25rem;
        margin: 1rem 0;
    }
    
    .c-web-special-offer__title {
        font-size: 1.5rem;
    }
    
    .c-web-special-offer__description {
        font-size: 0.9rem;
    }
    
    .c-web-special-offer__badge {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Contact Section */
.s-contact {
    padding: 4rem 0;
    background: var(--gray-100);
}

/* コンタクトセクションはc-section-headerを使用 */

.s-contact > .l-container > p {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info {
    background: var(--forest-green);
    color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
}

.contact-info h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-number {
    font-weight: bold;
    font-size: 1.25rem;
}

.contact-time, .contact-note {
    font-size: 1rem; /* ������������: 16px��������������������������������������� */
}

.contact-email {
    font-weight: bold;
}



.c-button--contact-phone {
    background: var(--warm-orange);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1.125rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
}

.c-button--contact-phone:active {
    background: #CD5C00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(210, 105, 30, 0.4);
}

.phone-sub {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.9;
}

/* 電話誘導のメリット表示 */
.phone-benefits {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1rem;
    font-weight: 500;
}

/* 電話誘導マイクロコピー */
.phone-micro-copy {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border-left: 4px solid var(--warm-orange);
}

.micro-copy-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.micro-copy-item:last-child {
    margin-bottom: 0;
}

.copy-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.copy-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* 代替案表示 */
.alternative-contact {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.alternative-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.c-contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: #333333; /* 緊急修正: より濃い色で確実に読めるように */
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.required {
    color: var(--red-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.25rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(47, 82, 51, 0.1);
}

.form-submit {
    width: 100%;
    background: var(--forest-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background: var(--light-forest);
}

.privacy-note {
    font-size: 0.75rem;
    color: #555555; /* 緊急修正: より濃い色で確実に読めるように */
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Footer */
.l-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0;
}

.l-footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    font-size: 1.5rem;
}

.footer-logo h5 {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-description {
    color: #D1D5DB;
    font-size: 1rem; /* ������������: 16px��������������������������������������� */
}

.footer-section h6 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    color: #D1D5DB;
    font-size: 1rem; /* ������������: 16px��������������������������������������� */
    margin-bottom: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem; /* ������������: 16px��������������������������������������� */
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #4B5563;
    padding-top: 2rem;
    text-align: center;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1rem; /* ������������: 16px��������������������������������������� */
}

.footer-copyright {
    font-size: 1rem; /* ������������: 16px��������������������������������������� */
    color: #9CA3AF;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    margin-left: 0.5rem;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Floating CTA - 横長レイアウト */
.c-floating-cta {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 1000;
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* モバイルメニュー表示時の非表示状態 */
.c-floating-cta.is-hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.c-floating-cta__container {
    background: linear-gradient(135deg, rgba(47, 82, 51, 0.95) 0%, rgba(123, 160, 91, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUpFade 0.5s ease-out;
}

/* マイクロコピー */
.floating-micro-copy {
    text-align: center;
    margin-bottom: 10px;
}

.micro-copy-main {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2px;
}

.micro-copy-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ボタンコンテナ */
.floating-buttons {
    display: flex;
    gap: 8px;
}

/* WEB見積もりボタン（60%） */
.c-button--floating-web {
    flex: 3;
    background: linear-gradient(135deg, var(--sage-green) 0%, #7BA05B 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 8px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    touch-action: manipulation;
    min-height: 48px;
}

.c-button--floating-web:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(123, 160, 91, 0.4);
}

.c-button--floating-web:active {
    transform: translateY(0);
}

.c-icon--web {
    width: 16px;
    height: 16px;
    color: white;
}

/* 電話ボタン（40%） */
.c-button--floating-phone {
    flex: 2;
    background: linear-gradient(135deg, var(--warm-orange) 0%, #FF7F50 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 8px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    touch-action: manipulation;
    min-height: 48px;
}

.c-button--floating-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(210, 105, 30, 0.4);
}

.c-button--floating-phone:active {
    transform: translateY(0);
}

.c-icon--phone {
    font-size: 1rem;
}

.c-btn-text {
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
}

/* アニメーション */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* パルスアニメーション（控えめに） */
.c-floating-cta__container {
    animation: slideUpFade 0.5s ease-out, gentlePulse 3s ease-in-out infinite 2s;
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-2px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(2px);
    }
}

/* Responsive Design */
/* タブレット以上でヘッダーサイズを段階的に拡大 */
@media (min-width: 768px) {
    .l-header {
        min-height: 70px;
    }
    
    .l-header__content {
        padding: 0.75rem 0;
        min-height: 70px;
    }
    
    .c-logo {
        gap: 0.5rem;
    }
    
    .c-logo__icon {
        font-size: 1.75rem;
    }
    
    .c-logo h1 {
        font-size: 1.25rem;
    }
    
    .c-service-area {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.875rem;
        color: var(--gray-600);
    }
    
    .l-header__info {
        gap: 1rem;
    }
    
    .c-button--header-phone {
        padding: 0.5rem 1.25rem;
        font-size: 1.125rem;
        gap: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .l-header {
        min-height: 80px;
    }
    
    .l-header__content {
        padding: 1rem 0;
        min-height: 80px;
    }
    
    .c-logo__icon {
        font-size: 2rem;
    }
    
    .c-logo h1 {
        font-size: 1.5rem;
    }
    
    .c-service-area {
        font-size: 1rem;
    }
    
    .l-header__info {
        gap: 1.5rem;
    }
    
    .c-button--header-phone {
        padding: 0.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    /* 3つ並びバッジ - タブレット最適化 */
    .c-trust-badges {
        gap: 6px;
        margin: 20px 0;
    }

    .c-badge {
        min-width: 90px;
        min-height: 56px;
        padding: 14px 10px; /* 緊急修正: 44px以上の高さ確保 */
    }

    .c-badge__text {
        font-size: 1rem; /* ������������: 16px��������������������������������������� */ /* 緊急修正: より読みやすいサイズに */
    }



    .c-floating-cta {
        display: block;
    }

    .cta-badges {
        grid-template-columns: 1fr;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
    }

    .c-pricing-table {
        overflow-x: visible;
        margin: 1rem 0;
    }

    .c-pricing-table table {
        min-width: auto;
        font-size: 0.9rem;
    }

    .c-pricing-table th,
    .c-pricing-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }

    .c-pricing-table th:first-child,
    .c-pricing-table td:first-child {
        width: 40%;
    }

    .c-pricing-table th:nth-child(2),
    .c-pricing-table td:nth-child(2) {
        width: 35%;
        text-align: center;
    }

    .c-pricing-table th:last-child,
    .c-pricing-table td:last-child {
        width: 25%;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .l-container {
        padding: 0 0.5rem;
    }

    .s-hero__content {
        padding: 1rem 0.5rem;
    }

    .s-hero__title {
        font-size: 2rem;
    }

    .s-hero__title-accent {
        font-size: 2.5rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    /* より小さな画面での料金表最適化 */
    .c-pricing-table table {
        font-size: 0.85rem;
    }

    .c-pricing-table th,
    .c-pricing-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }

    .c-pricing-table th:first-child,
    .c-pricing-table td:first-child {
        width: 42%;
    }

    .c-pricing-table th:nth-child(2),
    .c-pricing-table td:nth-child(2) {
        width: 33%;
    }

    .c-pricing-table th:last-child,
    .c-pricing-table td:last-child {
        width: 25%;
        font-size: 0.75rem;
    }

    /* 3つ並びバッジ - スマートフォン最適化 */
    .c-trust-badges {
        gap: 4px;
        margin: 16px 0;
        justify-content: center;
    }

    .c-badge {
        min-width: 85px;
        min-height: 52px;
        padding: 14px 8px; /* 緊急修正: 44px以上の高さ確保 */
        border-radius: 16px;
    }

    .c-badge__icon {
        font-size: 1rem;
    }

    .c-badge__text {
        font-size: 1rem; /* ������������: 16px��������������������������������������� */ /* 緊急修正: より読みやすいサイズに */
        line-height: 1.1;
    }

    /* プレミアムCTA - スマートフォン最適化 */
    .s-hero__cta {
        gap: 10px;
        margin-bottom: 1rem;
    }

    .c-button--premium {
        padding: 16px 18px;
        min-height: 52px;
        border-radius: 40px;
    }

    .cta-icon {
        font-size: 1.2rem;
    }

    .cta-text {
        font-size: 0.95rem;
    }

    .cta-urgent {
        font-size: 1rem; /* ������������: 16px��������������������������������������� */ /* 緊急修正: より読みやすいサイズに */
    }

    .c-button--secondary {
        padding: 14px 18px;
        min-height: 44px;
        border-radius: 40px;
        font-size: 0.9rem;
    }

    /* EFO フォームボタンのモバイル対応 */
    .form-next-btn {
        padding: 16px 20px;
        min-height: 56px;
    }

    .next-content {
        gap: 10px;
    }

    .c-icon--paper-plane {
        width: 20px;
        height: 20px;
    }

    .next-text {
        font-size: 1rem;
    }

    .next-sub {
        font-size: 0.8rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }



    .contact-content {
        grid-template-columns: 1fr;
    }

    .l-footer__content {
        grid-template-columns: 1fr;
    }

    /* 電話誘導要素のモバイル対応 */
    .phone-benefits {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .benefit-item {
        margin-bottom: 0.5rem;
    }

    .benefit-text {
        font-size: 0.9rem;
    }

    .phone-micro-copy {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .copy-text {
        font-size: 0.85rem;
    }

    .c-button--contact-phone {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .phone-sub {
        font-size: 0.8rem;
    }

    .alternative-contact {
        margin-top: 1rem;
        padding-top: 0.75rem;
    }

    .alternative-text {
        font-size: 0.85rem;
    }

    /* フローティングCTAのモバイル対応 */
    .c-floating-cta {
        bottom: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
    }

    .c-floating-cta__container {
        padding: 10px;
        border-radius: 12px;
    }

    .micro-copy-main {
        font-size: 0.9rem;
    }

    .micro-copy-sub {
        font-size: 0.75rem;
    }

    .floating-buttons {
        gap: 6px;
    }

    .c-button--floating-web,
    .c-button--floating-phone {
        padding: 10px 6px;
        min-height: 44px;
        font-size: 0.8rem;
    }

    .btn-text {
        font-size: 0.75rem;
    }

    .web-icon {
        width: 14px;
        height: 14px;
    }

    .phone-icon {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .c-floating-cta {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--forest-green);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .s-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                    url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&h=800') center/cover;
    }
}

/* =========================
   EFO（フォーム最適化）スタイル 
   ========================= */

/* フォーム進捗表示 */
.form-progress {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    border: 2px solid var(--forest-green);
}

.progress-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.progress-icon {
    font-size: 1.5rem;
}

.progress-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--forest-green);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--forest-green), var(--sage-green));
    width: 50%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-note {
    font-size: 1rem;
    color: var(--warm-orange);
    font-weight: 600;
    margin: 0;
}

/* ステップ表示 */
.form-step {
    display: none;
    animation: slideInFromRight 0.4s ease;
}

.form-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
}

.step-header h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--forest-green);
    margin-bottom: 8px;
}

.step-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    margin: 0;
}

/* フォームグループの拡張 */
.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #333333;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1rem;
}

.field-hint {
    font-weight: normal;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-left: 8px;
}

.optional-badge {
    background: var(--sage-green);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: normal;
    margin-left: 8px;
}

.field-benefit {
    font-size: 0.9rem;
    color: var(--forest-green);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 入力フィールドの改善 */
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(47, 82, 51, 0.1);
    transform: scale(1.01);
}

.contact-form .form-group input.valid {
    border-color: #28A745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.contact-form .form-group input.invalid {
    border-color: #DC3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    animation: shake 0.5s ease;
}

/* バリデーションメッセージ */
.validation-message {
    font-size: 0.9rem;
    color: #DC3545;
    margin-top: 4px;
    min-height: 20px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.validation-message.show {
    opacity: 1;
    transform: translateY(0);
}

.validation-message.success {
    color: #28A745;
}

/* 文字数カウンター */
.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 4px;
}

.char-counter.warning {
    color: var(--warm-orange);
}

.char-counter.error {
    color: #DC3545;
}

/* ボタンスタイル */
.form-next-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 24px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    touch-action: manipulation;
    position: relative;
    overflow: hidden;
}

.form-next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 82, 51, 0.3);
}

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

.next-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.c-icon--paper-plane {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.form-next-btn:hover .c-icon--paper-plane {
    transform: translateX(4px) rotate(5deg);
    animation: paperPlaneFly 0.6s ease-out;
}

.next-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.next-text {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.2;
}

.next-sub {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: normal;
    line-height: 1.2;
}

/* 紙飛行機のアニメーション */
@keyframes paperPlaneFly {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(8px) rotate(10deg) scale(1.1);
    }
    100% {
        transform: translateX(4px) rotate(5deg);
    }
}

/* ボタンの送信エフェクト */
.form-next-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-next-btn:hover::before {
    left: 100%;
}

.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.form-back-btn {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100px;
}

.form-back-btn:hover {
    background: var(--gray-200);
    border-color: var(--gray-400);
}

.form-submit-final {
    flex: 1;
    background: linear-gradient(135deg, var(--warm-orange) 0%, #FF7F50 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-height: 60px;
}

.form-submit-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(210, 105, 30, 0.4);
}

.submit-text {
    font-size: 1.1rem;
}

.submit-time {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* 信頼性シグナル */
.form-trust-signals {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 20px 0;
    padding: 20px;
    background: rgba(47, 82, 51, 0.05);
    border-radius: 12px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    min-width: 100px;
}

.c-icon--trust {
    font-size: 1.5rem;
}

.trust-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest-green);
}

/* プライバシーノートの改善 */
.contact-form .privacy-note {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 15px;
    background: rgba(47, 82, 51, 0.05);
    border-radius: 8px;
    line-height: 1.5;
}

.privacy-link {
    color: var(--forest-green);
    text-decoration: underline;
}

/* EFO レスポンシブ対応 */
@media (max-width: 768px) {
    .form-trust-signals {
        gap: 15px;
    }
    
    .trust-item {
        min-width: 80px;
    }
    
    .trust-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .form-progress {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .progress-text {
        font-size: 1.1rem;
    }
    
    .step-header h4 {
        font-size: 1.3rem;
    }
    
    .form-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .form-back-btn {
        order: 2;
        min-height: 44px;
    }
    
    .form-submit-final {
        order: 1;
        min-height: 56px;
    }
    
    .form-trust-signals {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 8px;
        text-align: left;
    }
}

/* お悩み解決までの流れセクション */
.s-flow {
    padding: 2rem 0;
}

.c-section-header__subtitle {
    font-size: 1.125rem;
    color: var(--warm-orange);
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.s-flow__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    align-items: center;
}

.c-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0.75rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    grid-column: span 1;
}

.c-flow-step:nth-child(odd) {
    grid-column: span 2;
}

.c-flow-step:active {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.c-flow-step__number {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--warm-orange), #FF7F50);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 8px rgba(210, 105, 30, 0.3);
}

.c-flow-step__icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.c-flow-step__title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.c-flow-step__description {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.c-flow-step__description strong {
    color: var(--warm-orange);
    font-weight: bold;
}

.c-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: span 1;
}

.c-flow-arrow__icon {
    font-size: 2rem;
    color: var(--warm-orange);
    font-weight: bold;
}

.s-flow__cta {
    margin-top: 1.5rem;
}

.c-flow-cta-box {
    background: linear-gradient(135deg, var(--forest-green), var(--light-forest));
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(47, 82, 51, 0.2);
}

.c-flow-cta-box h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.c-flow-cta-box p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.c-flow-cta-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* モバイル対応 - タッチフレンドリー最適化 */
@media (max-width: 768px) {
    .s-flow__grid {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .c-flow-step {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 1.25rem 1rem;
        background: var(--white);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-left: 4px solid var(--warm-orange);
        transition: all 0.3s ease;
        /* タッチターゲット確保 */
        min-height: 80px;
    }
    
    .c-flow-step:active {
        transform: scale(0.98);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-left-color: var(--forest-green);
    }
    
    .c-flow-step__number {
        width: 2.5rem;
        height: 2.5rem;
        background: linear-gradient(135deg, var(--warm-orange), #FF7F50);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.125rem;
        font-weight: bold;
        margin-right: 1rem;
        margin-bottom: 0;
        flex-shrink: 0;
        box-shadow: 0 3px 6px rgba(210, 105, 30, 0.3);
    }
    
    .c-flow-step__content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .c-flow-step__icon {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 0.75rem;
        flex-shrink: 0;
    }
    
    .c-flow-step__title {
        font-size: 1.125rem;
        font-weight: bold;
        color: var(--forest-green);
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }
    
    .c-flow-step__description {
        font-size: 0.9rem;
        color: var(--text-dark);
        line-height: 1.5;
        margin: 0;
    }
    
    .c-flow-arrow {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 1rem;
        position: relative;
    }
    
    .c-flow-arrow__icon {
        font-size: 1.5rem;
        color: var(--warm-orange);
        transform: rotate(90deg);
        opacity: 0.7;
    }
    
    .c-flow-arrow::before {
        content: '';
        position: absolute;
        width: 2px;
        height: 1rem;
        background: linear-gradient(to bottom, var(--warm-orange), transparent);
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }
    
    .c-flow-cta-box {
        padding: 1.5rem 1.25rem;
        margin-top: 0.5rem;
    }
    
    .c-flow-cta-badges {
        gap: 0.5rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .s-flow {
        padding: 1.5rem 0;
    }
    
    .c-section-header__subtitle {
        font-size: 1rem;
    }
    
    .c-flow-step {
        padding: 1rem 0.75rem;
        border-radius: 10px;
        /* より小さな画面でもタッチしやすく */
        min-height: 70px;
    }
    
    .c-flow-step__number {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
        margin-right: 0.75rem;
        flex-shrink: 0;
    }
    
    .c-flow-step__icon {
        font-size: 1.25rem;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
    
    .c-flow-step__title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        font-weight: bold;
    }
    
    .c-flow-step__description {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .c-flow-arrow {
        height: 0.75rem;
    }
    
    .c-flow-arrow__icon {
        font-size: 1.25rem;
    }
    
    .c-flow-arrow::before {
        height: 0.75rem;
    }
    
    .c-flow-cta-box {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }
    
    .c-flow-cta-box h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .c-flow-cta-box p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .c-flow-cta-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .c-flow-cta-badges .c-badge {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
        /* より小さなバッジサイズ */
        min-height: 32px;
    }
}

/* Mobile Navigation */
.c-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.c-mobile-nav.is-active {
    visibility: visible;
    opacity: 1;
}

.c-mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.c-mobile-nav__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.c-mobile-nav.is-active .c-mobile-nav__content {
    transform: translateX(0);
}

.c-mobile-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
    background: var(--forest-green);
    color: var(--white);
}

.c-mobile-nav__header .c-logo {
    gap: 0.5rem;
}

.c-mobile-nav__header .c-logo__icon {
    font-size: 1.25rem;
}

.c-mobile-nav__header .c-logo span {
    font-size: 1rem;
    font-weight: bold;
    color: var(--white);
}

.c-mobile-nav__close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.c-mobile-nav__close:active {
    background: rgba(255, 255, 255, 0.1);
}

.c-mobile-nav__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.c-mobile-nav__menu li {
    border-bottom: 1px solid var(--gray-100);
}

.c-mobile-nav__link {
    display: block;
    padding: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.c-mobile-nav__link:active {
    background: var(--gray-50);
    color: var(--forest-green);
}

.c-mobile-nav__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--forest-green);
    transition: width 0.2s ease;
}

.c-mobile-nav__link:active::before {
    width: 3px;
}

.c-mobile-nav__cta {
    padding: 1.5rem 1rem;
    border-top: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.c-mobile-nav__phone {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.c-mobile-nav__phone .c-cta__text {
    font-size: 0.9rem;
}

.c-mobile-nav__info {
    text-align: center;
}

.c-mobile-nav__info p {
    margin: 0.25rem 0;
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* Mobile Menu Button - Show only on mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }
}

/* Hide mobile nav on desktop */
@media (min-width: 769px) {
    .c-mobile-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
}