/* ==========================================================================
   恵那店詳細ページ（リニューアル）専用スタイル
   ========================================================================== */

/* 全体コンテナの初期化とフォント */
.enashi-renewal {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
}

/* グローバルスタイルのオーバーライド（FVフルワイド化・余白リセット用） */
#container #content.enashi-renewal {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.enashi-renewal *,
.enashi-renewal *::before,
.enashi-renewal *::after {
    box-sizing: border-box;
}

.enashi-renewal .inline-block {
    display: inline-block;
}

.enashi-renewal .pc-br {
    display: inline;
}

/* 共通インナー */
.enashi-renewal .inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}

/* 共通セクションタイトル */
.enashi-renewal .section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #1d76b4;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.enashi-renewal .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #e58d19;
    border-radius: 2px;
}

.enashi-renewal .section-title span {
    color: #e58d19;
}

/* ボタン共通 */
.enashi-renewal .enashi-btn-primary {
    display: inline-block;
    background-color: #1d76b4;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 118, 180, 0.3);
    text-align: center;
}

.enashi-renewal .enashi-btn-primary:hover {
    background-color: #155b8d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 118, 180, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   1. ファーストビュー (Main Visual)
   -------------------------------------------------------------------------- */
.enashi-mv {
    position: relative;
    background-color: #ffffff;
    min-height: 500px;
}

.enashi-mv-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.enashi-mv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.enashi-mv-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 0; /* 下部の余白は無くし、featuresがはみ出るように */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.enashi-mv-content {
    background-color: transparent;
    padding-bottom: 20px;
}

.enashi-mv-tag {
    display: none; /* デザイン指示になかったため非表示 */
}

.enashi-mv-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 20px;
    color: #0f2a58;
    text-shadow: 
        -3px -3px 0 #fff,  3px -3px 0 #fff,
        -3px  3px 0 #fff,  3px  3px 0 #fff,
        -3px  0   0 #fff,  3px  0   0 #fff,
         0    3px 0 #fff,  0   -3px 0 #fff,
         0    0  10px rgba(0,0,0,0.2);
}

.enashi-mv-title .highlight-orange {
    color: #e56b19;
}

.enashi-mv-subcopy {
    font-size: 26px;
    font-weight: 900;
    color: #0f2a58;
    margin-bottom: 30px;
    text-shadow: 
        -2px -2px 0 #fff,  2px -2px 0 #fff,
        -2px  2px 0 #fff,  2px  2px 0 #fff,
        -2px  0   0 #fff,  2px  0   0 #fff,
         0    2px 0 #fff,  0   -2px 0 #fff;
    position: relative;
    display: inline-block;
}

/* 特徴カード */
.enashi-mv-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 1000px;
    margin-bottom: -60px; /* 画像の下にはみ出すようにする */
    position: relative;
    z-index: 10;
}

.enashi-mv-features .feature-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 35px 20px 30px;
    color: #333333;
    box-shadow: 0 10px 30px rgba(15, 42, 88, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.enashi-mv-features .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.enashi-mv-features .feature-card .feature-card-icon {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background-color: transparent !important;
}

.enashi-mv-features .feature-card .feature-card-icon svg {
    width: 48px;
    height: 48px;
}

.enashi-mv-features .feature-card .title {
    font-size: 18px;
    font-weight: 800;
    color: #0f2a58;
    margin-bottom: 8px;
    line-height: 1.4;
}

.enashi-mv-features .feature-card .desc {
    font-size: 13px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 0;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   2. 恵那店で選ばれる3つの理由
   -------------------------------------------------------------------------- */
.enashi-reasons {
    background-color: #ffffff;
    padding: 100px 0 60px;
}

.enashi-reasons .reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background-color: transparent;
    padding: 10px 0;
    box-shadow: none;
    border: none;
}

.enashi-reasons .reason-item {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.enashi-reasons .reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.enashi-reasons .reason-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.enashi-reasons .reason-num {
    background-color: #e58d19;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(229, 141, 25, 0.2);
}

.enashi-reasons .reason-title-text {
    font-size: 20px;
    font-weight: 800;
    color: #0f2a58;
    margin: 0;
    line-height: 1.3;
}

.enashi-reasons .reason-body {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.enashi-reasons .reason-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: transparent;
}

.enashi-reasons .reason-icon svg {
    width: 46px;
    height: 46px;
}

.enashi-reasons .reason-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}



/* --------------------------------------------------------------------------
   4. ディーラー車検との違い
   -------------------------------------------------------------------------- */
.enashi-compare-sec {
    background-color: #ffffff;
    padding: 80px 0;
}

.enashi-compare-sec .compare-table-wrapper {
    overflow-x: auto;
    padding: 10px; /* shadow clipping prevention */
}

.enashi-compare-sec .compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
    background-color: #ffffff;
}

.enashi-compare-sec .compare-table th,
.enashi-compare-sec .compare-table td {
    padding: 24px 20px;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.enashi-compare-sec .compare-table tr:last-child td {
    border-bottom: none;
}

.enashi-compare-sec .compare-table th {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    background-color: #f8fafc;
    color: #333333;
    border-top: 1px solid #e2e8f0;
    border-bottom: 2px solid #cbd5e1;
}

.enashi-compare-sec .compare-table th:first-child {
    border-top-left-radius: 12px;
    border-left: 1px solid #e2e8f0;
}

.enashi-compare-sec .compare-table th:last-child {
    border-top-right-radius: 12px;
    border-right: 1px solid #e2e8f0;
    width: 40%;
}

.enashi-compare-sec .compare-table td:first-child {
    border-left: 1px solid #e2e8f0;
}

.enashi-compare-sec .compare-table td:last-child {
    border-right: 1px solid #e2e8f0;
    width: 40%;
}

.enashi-compare-sec .compare-table tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.enashi-compare-sec .compare-table tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.enashi-compare-sec .compare-table td.feature {
    font-weight: 800;
    color: #0f2a58;
    background-color: #fcfdfe;
    width: 20%;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    font-size: 17px;
}

.enashi-compare-sec .compare-table th.highlight-col {
    background-color: #0f2a58 !important;
    color: #ffffff !important;
    border-top: 3px solid #0f2a58;
    border-left: 3px solid #0f2a58;
    border-right: 3px solid #0f2a58;
    border-bottom: none;
    font-size: 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    position: relative;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    width: 40%;
}

.enashi-compare-sec .compare-table td.highlight-col {
    background-color: #f4f8fc;
    color: #0f2a58;
    font-weight: 700;
    border-left: 3px solid #0f2a58;
    border-right: 3px solid #0f2a58;
    font-size: 17px;
    box-shadow: 4px 0 12px rgba(0,0,0,0.04), -4px 0 12px rgba(0,0,0,0.04);
    width: 40%;
}

.enashi-compare-sec .compare-table tr:last-child td.highlight-col {
    border-bottom: 3px solid #0f2a58;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08), 4px 0 12px rgba(0,0,0,0.04), -4px 0 12px rgba(0,0,0,0.04);
}

.enashi-compare-sec .compare-table td.val-good strong {
    color: #e63946;
    font-size: 18px;
    font-weight: 800;
}

.enashi-compare-sec .compare-table td:last-child {
    color: #555555;
    font-size: 15px;
    padding-left: 24px;
    width: 40%;
}



/* --------------------------------------------------------------------------
   5. お客様の声 & 6. よくあるご質問
   -------------------------------------------------------------------------- */
.enashi-renewal .enashi-voice-sec {
    padding: 80px 0 40px;
}

.enashi-renewal .topBox4 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.enashi-faq-sec .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.enashi-faq-sec .faq-item {
    background-color: #f7f9fc;
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 5px solid #1d76b4;
}

.enashi-faq-sec .faq-q {
    font-size: 16px;
    font-weight: 700;
    color: #1d76b4;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.enashi-faq-sec .faq-q span {
    background-color: #1d76b4;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.enashi-faq-sec .faq-a {
    font-size: 14px;
    color: #444444;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.enashi-faq-sec .faq-a span {
    background-color: #e58d19;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. 店舗概要
   -------------------------------------------------------------------------- */
.enashi-summary-sec {
    background-color: #f8fafc;
    padding: 80px 0;
}

.enashi-summary-sec .summary-media-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.enashi-summary-sec .summary-img-box,
.enashi-summary-sec .summary-map-box {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}

.enashi-summary-sec .summary-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enashi-summary-sec .summary-map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.enashi-summary-sec .summary-info-table-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
}

.enashi-summary-sec .info-table {
    width: 100%;
    border-collapse: collapse;
}

.enashi-summary-sec .info-table th,
.enashi-summary-sec .info-table td {
    padding: 20px 24px;
    border-bottom: 1px solid #edf2f7;
    font-size: 16px;
    line-height: 1.6;
}

.enashi-summary-sec .info-table tr:last-child th,
.enashi-summary-sec .info-table tr:last-child td {
    border-bottom: none;
}

.enashi-summary-sec .info-table th {
    font-weight: 800;
    color: #0f2a58;
    background-color: #f8fafc;
    width: 20%;
    text-align: left;
    vertical-align: middle;
    font-size: 16px;
    border-right: 1px solid #edf2f7;
}

.enashi-summary-sec .info-table td {
    color: #333333;
    padding-left: 30px;
}

/* --------------------------------------------------------------------------
   8. アクセス
   -------------------------------------------------------------------------- */
.enashi-access-sec {
    background-color: #ffffff;
    padding: 80px 0;
}

.enashi-access-sec .access-routes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.enashi-access-sec .access-route {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid #e2e8f0;
}

.enashi-access-sec .route-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f2a58;
    margin-bottom: 25px;
    border-left: 6px solid #e58d19;
    padding-left: 15px;
    line-height: 1.2;
}

.enashi-access-sec .route-map {
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
}

.enashi-access-sec .route-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.enashi-access-sec .route-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.enashi-access-sec .access-route:nth-child(1) .route-steps {
    grid-template-columns: repeat(5, 1fr);
}

.enashi-access-sec .access-route:nth-child(2) .route-steps {
    grid-template-columns: repeat(4, 1fr);
}

.enashi-access-sec .route-steps li {
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.enashi-access-sec .route-steps li img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin-bottom: 12px;
    border: 1px solid #f1f5f9;
}

.enashi-access-sec .route-steps li div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.enashi-access-sec .route-steps .step-num {
    background-color: #e58d19;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.enashi-access-sec .route-steps .step-text {
    font-size: 13px;
    color: #333333;
    line-height: 1.5;
    font-weight: 700;
}



/* --------------------------------------------------------------------------
   10. 対応エリア
   -------------------------------------------------------------------------- */
.enashi-area-sec {
    background-color: #ffffff;
    padding: 80px 0;
}

.enashi-area-sec .area-box {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.enashi-area-sec .area-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f2a58;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.enashi-area-sec .area-title::before {
    content: '📍';
    font-size: 26px;
}

.enashi-area-sec .area-lead {
    font-size: 18px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 40px;
}

.enashi-area-sec .area-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.enashi-area-sec .tag {
    background-color: #ffffff;
    color: #0f2a58;
    font-size: 22px;
    font-weight: 800;
    padding: 20px 10px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.enashi-area-sec .tag:hover {
    background-color: #0f2a58;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 42, 88, 0.15);
    border-color: #0f2a58;
}

.enashi-area-sec .tag:last-child {
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: #666666;
    font-weight: 700;
    font-size: 20px;
}

.enashi-area-sec .tag:last-child:hover {
    background-color: transparent;
    color: #666666;
    transform: none;
    box-shadow: none;
}


/* ==========================================================================
   レスポンシブ対応
   ========================================================================== */



/* タブレット用 */
@media screen and (max-width: 768px) {
    .enashi-renewal .section-title {
        font-size: 24px;
    }
.enashi-renewal .inner{
    padding: 0 20px;
}

.enashi-price-sec .btnblue a{
    padding: 9px 40px;
}
    
.enashi-access-sec .route-title  {
   padding: 12px 0;
   padding-left: 15px;
   font-size: 18px;
}
    .enashi-mv-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 103%;
    }

    .enashi-mv-inner {
        text-align: center;
        padding: 80px 20px 0;
        align-items: center;
    }

    .enashi-mv-content {
        padding-bottom: 10px;
    }
    
    .enashi-mv-title {
        font-size: 38px;
    }
    
    .enashi-mv-subcopy {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .enashi-mv-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        transform: none;
        margin-bottom: -40px;
    }
    
    .enashi-reasons .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .enashi-compare-sec .compare-table-wrapper {
        margin: 0;
    }
    
    .enashi-faq-sec .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .enashi-summary-sec .summary-media-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .enashi-summary-sec .summary-img-box,
    .enashi-summary-sec .summary-map-box {
        height: 250px;
    }
    
    .enashi-summary-sec .summary-info-table-box {
        padding: 20px 15px;
    }
    
    .enashi-summary-sec .info-table th,
    .enashi-summary-sec .info-table td {
        padding: 15px 12px;
        font-size: 14px;
    }
    
    .enashi-access-sec .access-routes {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .enashi-access-sec .access-route:nth-child(1) .route-steps,
    .enashi-access-sec .access-route:nth-child(2) .route-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .enashi-access-sec .route-steps li {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        padding: 15px;
    }
    
    .enashi-access-sec .route-steps li img {
        width: 150px;
        height: 100px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .enashi-access-sec .route-steps li div {
        flex: 1;
    }
}

/* スマホ用 */
@media screen and (max-width: 599px) {
    .enashi-renewal .pc-br {
        display: none !important;
    }
    
    .enashi-renewal .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .enashi-section {
        padding: 40px 0px !important;
        margin: 0 !important;
    }

    .enashi-section h2 {
    padding: 10px 0 !important;
}

    .enashi-mv {
        padding: 20px 0 40px;
    }
    
    .enashi-mv-title {
        font-size: 26px;
    }
    
    .enashi-mv-subcopy {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .enashi-mv-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: -15px;
        position: relative;
        z-index: 10;
    }
    
    .enashi-mv-features .feature-card {
        padding: 20px 10px;
        border-radius: 10px;
    }
    
    .enashi-mv-features .feature-card .feature-card-icon {
        height: 50px;
        width: 50px;
        margin-bottom: 10px;
        background-color: transparent !important;
    }
    
    .enashi-mv-features .feature-card .feature-card-icon svg {
        width: 38px;
        height: 38px;
    }
    
    .enashi-mv-features .feature-card .title {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .enashi-mv-features .feature-card .desc {
        font-size: 10px;
    }
    
    .enashi-reasons .reason-item {
        padding: 25px 20px;
    }
    
    .enashi-reasons .reason-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .enashi-reasons .reason-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 5px;
    }
    
    .sp-only {
        display: block !important;
    }
    
    .enashi-compare-sec .compare-table-wrapper {
        overflow-x: visible;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .enashi-compare-sec .compare-table {
        display: table !important;
        width: 100% !important;
        min-width: auto !important;
        table-layout: fixed !important;
        border-collapse: separate !important;
    }

    .enashi-compare-sec .compare-table tr {
        display: table-row !important;
    }

    .enashi-compare-sec .compare-table th,
    .enashi-compare-sec .compare-table td {
        display: table-cell !important;
        padding: 8px 4px !important;
        font-size: 11px !important;
        line-height: 1.4 !important;
        vertical-align: middle;
        border-bottom: 1px solid #e2e8f0 !important;
        box-sizing: border-box !important;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
    }
    
    .enashi-compare-sec .compare-table th {
        font-size: 11px !important;
    }
    
    .enashi-compare-sec .compare-table th:first-child,
    .enashi-compare-sec .compare-table td.feature {
        font-size: 11px !important;
        width: 22% !important;
        padding: 8px 2px !important;
    }
    
    .enashi-compare-sec .compare-table th.highlight-col,
    .enashi-compare-sec .compare-table td.highlight-col {
        font-size: 11px !important;
        width: 41% !important;
    }

    .enashi-compare-sec .compare-table th:last-child,
    .enashi-compare-sec .compare-table td:last-child {
        width: 37% !important;
    }
    
    .enashi-compare-sec .compare-table tr:last-child td {
        border-bottom: none !important;
    }

    .enashi-compare-sec .compare-table tr:last-child td.highlight-col {
        border-bottom: 3px solid #0f2a58 !important;
    }
    
    .enashi-compare-sec .compare-table td.val-good strong {
        font-size: 11px !important;
    }
    
    .enashi-summary-sec .info-table th {
        width: 100%;
        font-size: 14px;
        padding: 12px 10px;
    }
    
    .enashi-summary-sec .info-table td {
        font-size: 14px;
        padding: 12px 10px 12px 20px;
    }
    
    .enashi-access-sec .route-steps li {
        padding: 10px;
        gap: 12px;
    }
    
    .enashi-access-sec .route-steps li img {
        width: 100px;
        height: 70px;
    }
    
    .enashi-access-sec .route-steps .step-text {
        font-size: 12px;
    }
    
    .enashi-area-sec .area-box {
        padding: 40px 20px;
    }
    
    .enashi-area-sec .area-title {
        font-size: 22px;
    }
    
    .enashi-area-sec .area-lead {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .enashi-area-sec .area-tags {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .enashi-area-sec .tag {
        font-size: 16px;
        padding: 12px 5px;
        border-radius: 8px;
    }
    
    .enashi-area-sec .tag:last-child {
        font-size: 15px;
        padding: 12px 5px;
    }
}
