/* 訪問エリアページのスタイル */

/* ページヘッダー背景画像 */
.page-header {
    background-image: linear-gradient(to right, rgba(241, 143, 176, 0.2), rgba(148, 187, 233, 0.2));
    background-size: cover;
    background-position: center;
    position: relative;
}

/* エリア説明セクション */
.area-description-section {
    padding: 80px 0;
}

.area-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

.area-description p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.area-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.area-highlight-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.area-highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.area-highlight-icon {
    font-size: 40px;
    color: #f18fb0;
    margin-bottom: 15px;
}

.area-highlight-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.area-highlight-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* エリアマップセクション */
.area-map-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.area-map-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.area-map {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.area-map img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.area-map img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.area-list {
    flex: 1;
    min-width: 300px;
}

.area-category {
    margin-bottom: 30px;
}

.area-category-title {
    font-size: 20px;
    font-weight: 600;
    color: #f18fb0;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid #f18fb0;
}

.area-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-item {
    background-color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.area-item:hover {
    background-color: #f18fb0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 143, 176, 0.3);
}

.area-item.consultation {
    background-color: #f2f2f2;
    border: 1px dashed #ccc;
}

.area-item.consultation:hover {
    background-color: #eaeaea;
    color: #555;
}

/* お問い合わせバナー */
.contact-area-banner {
    background-color: #f18fb0;
    padding: 50px 20px;
    text-align: center;
    color: white;
    border-radius: 10px;
    margin: 60px auto;
    max-width: 800px;
}

.contact-area-banner-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-area-banner-text {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-area-btn {
    display: inline-block;
    background-color: white;
    color: #f18fb0;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-area-btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .area-description p {
        font-size: 16px;
    }
    
    .area-highlight-item {
        min-width: 100%;
    }
    
    .area-map-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .area-map {
        order: 1;
    }
    
    .area-list {
        order: 2;
    }
    
    .area-category-title {
        font-size: 18px;
    }
    
    .contact-area-banner-title {
        font-size: 22px;
    }
    
    .contact-area-banner-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .area-description p {
        font-size: 15px;
    }
    
    .area-highlight-icon {
        font-size: 32px;
    }
    
    .area-highlight-title {
        font-size: 16px;
    }
    
    .area-highlight-text {
        font-size: 14px;
    }
    
    .contact-area-banner {
        padding: 30px 15px;
    }
    
    .contact-area-banner-title {
        font-size: 20px;
    }
    
    .contact-area-banner-text {
        font-size: 14px;
    }
    
    .contact-area-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}