/* ========================================================= */
/* お問い合わせ固有のスタイル (css/contact.css) */
/* ========================================================= */

#contact-intro {
    background-color: #e8f5e9; /* わずかに色をつけた背景 */
    text-align: center;
    padding: 40px 0;
}

#contact-intro h2 {
    margin-bottom: 10px;
}

#contact-intro p {
    font-size: 16px;
    color: #555;
}

/* 連絡先エリア全体の共通スタイル */
.contact-area {
    padding: 60px 0;
}

.contact-area h3 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid; /* 各事業で色を変える */
}

.target-info {
    text-align: center;
    font-size: 15px;
    margin-bottom: 40px;
    color: #777;
}

/* 連絡方法のグリッドレイアウト */
.contact-methods-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.method-card {
    flex: 1;
    max-width: 300px;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.method-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.tel-number {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.hours {
    font-size: 14px;
    color: #555;
}

.description {
    font-size: 15px;
    margin-bottom: 20px;
    min-height: 45px; /* カードの高さを揃えるための配慮 */
}

.btn-action {
    display: block;
    padding: 12px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s;
}

.caution-note {
    max-width: 800px;
    margin: 30px auto 0;
    padding: 15px;
    background-color: #fff9c4; /* 目立つ薄い黄色 */
    border: 1px solid #fbc02d;
    border-radius: 4px;
    font-size: 14px;
}

/* --- CUTSALON デザイン (スタイリッシュ/モノトーン) --- */
#contact-salon {
    background-color: #fcfcfc;
}

#contact-salon h3 {
    color: #333;
    border-color: #333;
}

#contact-salon .method-card {
    background-color: #fff;
    border: 1px solid #ddd;
}

#contact-salon .btn-action {
    background-color: #4a4a4a;
    color: #fff;
}
#contact-salon .btn-action:hover {
    background-color: #2a2a2a;
}
#contact-salon .tel-number {
    color: #4a4a4a;
}

/* --- 訪問福祉 デザイン (温かい/ナチュラル) --- */
#contact-fukushi {
    background-color: #e8f5e9; /* 薄い緑の背景 */
}

#contact-fukushi h3 {
    color: #00796b;
    border-color: #00796b;
}

#contact-fukushi .method-card {
    background-color: #fff;
    border: 1px solid #b2dfdb;
}

#contact-fukushi .btn-action {
    background-color: #81c784;
    color: #fff;
}
#contact-fukushi .btn-action:hover {
    background-color: #66bb6a;
}
#contact-fukushi .tel-number {
    color: #00796b;
}
@media (max-width: 768px) {
    /* 連絡方法のグリッド */
    .contact-methods-grid {
        flex-direction: column;
        gap: 20px;
    }

    .method-card {
        max-width: 100%;
    }
    
    .tel-number {
        font-size: 24px;
    }
}