/* ケアマネージャー様へのページスタイル */

/* ページヘッダー背景 */
.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;
}

/* メッセージセクション */
.message-section {
    padding: 80px 0;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.message-title {
    font-size: 28px;
    font-weight: 700;
    color: #f18fb0;
    text-align: center;
    margin-bottom: 30px;
}

.message-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.message-signature {
    text-align: right;
    font-style: italic;
    margin-top: 30px;
    color: #555;
}

/* 3つのハートの特徴 */
.heart-features {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.heart-feature {
    flex: 1;
    min-width: 220px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.heart-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.heart-feature-icon {
    width: 60px;
    height: 60px;
    background-color: #f18fb0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.heart-feature-icon i {
    font-size: 26px;
    color: #fff;
}

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

.heart-feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 連絡方法セクション */
.contact-methods {
    margin-top: 50px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.contact-methods-title {
    font-size: 20px;
    font-weight: 600;
    color: #f18fb0;
    text-align: center;
    margin-bottom: 30px;
}

.contact-methods-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact-method {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

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

.contact-method-text {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.contact-hours {
    margin-top: 30px;
    text-align: center;
}

.contact-hours-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.contact-hours-text {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* QRコード */
.line-qr-code {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-size: 12px;
}

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

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

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

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

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .message-content {
        padding: 30px;
    }
    
    .message-title {
        font-size: 24px;
    }
    
    .message-text {
        font-size: 15px;
    }
    
    .heart-feature {
        min-width: 100%;
    }
    
    .heart-feature-title {
        font-size: 17px;
    }
    
    .contact-methods-title {
        font-size: 18px;
    }
    
    .contact-method-title {
        font-size: 17px;
    }
    
    .contact-method-text {
        font-size: 15px;
    }
    
    .contact-manager-banner-title {
        font-size: 22px;
    }
    
    .contact-manager-banner-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .message-content {
        padding: 20px;
    }
    
    .message-title {
        font-size: 22px;
    }
    
    .message-text {
        font-size: 14px;
    }
    
    .heart-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .heart-feature-icon i {
        font-size: 22px;
    }
    
    .heart-feature-title {
        font-size: 16px;
    }
    
    .heart-feature-text {
        font-size: 13px;
    }
    
    .contact-methods {
        padding: 20px;
    }
    
    .contact-methods-title {
        font-size: 17px;
    }
    
    .contact-method-icon {
        font-size: 32px;
    }
    
    .contact-method-title {
        font-size: 16px;
    }
    
    .contact-method-text {
        font-size: 14px;
    }
    
    .contact-hours-title {
        font-size: 15px;
    }
    
    .contact-hours-text {
        font-size: 14px;
    }
    
    .contact-manager-banner {
        padding: 30px 15px;
    }
    
    .contact-manager-banner-title {
        font-size: 20px;
    }
    
    .contact-manager-banner-text {
        font-size: 14px;
    }
    
    .contact-manager-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}