/* 特色詳細セクション */
.feature-circles-detail-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.feature-detail-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 80px;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-detail-item:last-child {
    margin-bottom: 0;
}

.feature-detail-circle {
    flex: 0 0 280px;
    text-align: center;
    margin: 0 auto 30px;
}

.feature-detail-content {
    flex: 1;
    min-width: 300px;
    padding-left: 30px;
}

.feature-detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* トップページと同じ円のスタイル */
.feature-detail-circle .circle {
    width: 220px;
    height: 220px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.feature-detail-circle .circle:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: #f18fb0;
    color: #fff;
}

.feature-detail-circle .circle-icon {
    font-size: 40px;
    color: #f18fb0;
    margin-bottom: 15px;
}

.feature-detail-circle .circle:hover .circle-icon {
    color: #fff;
}

.feature-detail-circle .circle h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* 特定のセクションに到達したときのスタイル（スムーススクロール用） */
:target {
    scroll-margin-top: 80px;
}

/* レスポンシブ対応 */
@media (max-width: 991px) {
    .feature-detail-item {
        padding: 20px;
    }
    
    .feature-detail-circle {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .feature-detail-content {
        flex: 0 0 100%;
        padding-left: 0;
    }
    
    .feature-detail-circle .circle {
        width: 180px;
        height: 180px;
    }
    
    .feature-detail-circle .circle h3 {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .feature-detail-item {
        padding: 15px;
    }
    
    .feature-detail-text {
        font-size: 14px;
    }
}/* スリーハートの特色ページのスタイル */

/* ページヘッダー背景画像 */
.page-header {
    background-image: url('../images/feature-header.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

/* ご挨拶セクション */
.greeting-section {
    padding: 80px 0;
}

.greeting-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.greeting-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
}

/* 特色の詳細セクション */
.feature-detail-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.feature-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.feature-detail-heading {
    font-size: 24px;
    font-weight: 600;
    color: #f18fb0;
    margin-bottom: 20px;
    text-align: center;
}

.feature-detail-subheading {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #f18fb0;
}

.feature-detail-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 訪問看護の内容リスト */
.service-list {
    margin-top: 40px;
}

.service-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #f18fb0;
    margin-bottom: 15px;
}

.service-title i {
    margin-right: 10px;
    font-size: 24px;
}

.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ご利用いただける方 */
.eligible-users {
    margin-top: 30px;
}

.eligible-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.eligible-item {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.eligible-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.eligible-icon {
    width: 40px;
    height: 40px;
    background-color: #f18fb0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.eligible-icon i {
    color: white;
    font-size: 18px;
}

.eligible-text {
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0;
    }
    
    .greeting-text {
        font-size: 15px;
    }
    
    .feature-detail-heading {
        font-size: 22px;
    }
    
    .feature-detail-subheading {
        font-size: 17px;
    }
    
    .feature-detail-text {
        font-size: 15px;
    }
    
    .service-title {
        font-size: 17px;
    }
    
    .service-desc {
        font-size: 14px;
    }
    
    .eligible-list {
        gap: 10px;
    }
    
    .eligible-item {
        min-width: 100%;
    }
    
    .contact-banner-title {
        font-size: 22px;
    }
    
    .contact-banner-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 60px 0;
    }
    
    .greeting-text {
        font-size: 14px;
    }
    
    .feature-detail-heading {
        font-size: 20px;
    }
    
    .feature-detail-subheading {
        font-size: 16px;
    }
    
    .feature-detail-text {
        font-size: 14px;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-title i {
        font-size: 20px;
    }
    
    .service-desc {
        font-size: 13px;
    }
    
    .contact-banner {
        padding: 30px 15px;
    }
    
    .contact-banner-title {
        font-size: 20px;
    }
    
    .contact-banner-text {
        font-size: 14px;
    }
    
    .contact-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}