/* Service Area Section - エアコン工事対応エリアセクション */

.service-area-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
}

.service-area-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 地図画像 */
.service-area-map {
    text-align: center;
    margin-bottom: 50px;
}

.service-area-map img {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: inline-block;
}

/* テーブルコンテナ */
.service-area-table-wrapper {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.service-area-table {
    width: 100%;
    border-collapse: collapse;
}

.service-area-table th,
.service-area-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.service-area-table th {
    background: linear-gradient(135deg, #357CBD 0%, #2563A8 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    width: 31.7708%;
    border-bottom: none;
}

.service-area-table td {
    font-size: 16px;
    line-height: 1.9;
    color: #333333;
    width: 67.9688%;
}

.service-area-table tr:last-child th,
.service-area-table tr:last-child td {
    border-bottom: none;
}

/* エリアリンク */
.service-area-table td a {
    color: #357CBD;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.service-area-table td a:hover {
    color: #E84B8A;
    text-decoration: underline;
}

.service-area-table td a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #E84B8A;
    transition: width 0.3s ease;
}

.service-area-table td a:hover::after {
    width: 100%;
}

/* セパレーター */
.service-area-separator {
    margin: 0 8px;
    color: #999999;
    font-weight: 400;
}

/* レスポンシブ対応 */
@media (max-width: 991px) {
    .service-area-section {
        padding: 60px 0;
    }
    
    .service-area-map {
        margin-bottom: 40px;
    }
    
    .service-area-map img {
        max-width: 600px;
    }
    
    .service-area-table th,
    .service-area-table td {
        padding: 18px 20px;
    }
    
    .service-area-table th {
        font-size: 17px;
    }
    
    .service-area-table td {
        font-size: 15px;
        line-height: 1.8;
    }
}

@media (max-width: 767px) {
    .service-area-section {
        padding: 50px 0;
    }
    
    .service-area-container {
        padding: 0 15px;
    }
    
    .service-area-map {
        margin-bottom: 30px;
    }
    
    .service-area-map img {
        max-width: 100%;
    }
    
    .service-area-table-wrapper {
        border-radius: 6px;
    }
    
    .service-area-table th,
    .service-area-table td {
        display: block;
        width: 100%;
        padding: 15px;
    }
    
    .service-area-table th {
        font-size: 16px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .service-area-table td {
        font-size: 14px;
        line-height: 1.9;
        padding: 20px 15px;
    }
    
    .service-area-table tr {
        display: block;
        margin-bottom: 0;
    }
    
    .service-area-separator {
        margin: 0 5px;
    }
}

@media (max-width: 480px) {
    .service-area-table td {
        font-size: 13px;
        line-height: 2;
    }
    
    .service-area-table td a {
        word-break: keep-all;
    }
    
    .service-area-separator {
        margin: 0 4px;
    }
}







