@charset "UTF-8";
/* CSS Document */


/* 症状別ページ専用CSS */

/* 症状カテゴリグリッド */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.symptom-category {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.symptom-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.category-header {
    background: linear-gradient(135deg, #f48fb1, #ec407a);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    font-size: 2rem;
    opacity: 0.9;
}

.category-title {
    font-size: 1.3rem;
    margin: 0;
    font-weight: bold;
}

.symptoms-list {
    padding: 1.5rem;
}

.symptoms-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.symptoms-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.symptoms-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f48fb1;
    font-weight: bold;
}

.symptoms-list li:last-child {
    border-bottom: none;
}

/* オイルマッサージ特徴セクション */
.oil-massage-feature {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.oil-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.oil-text {
    flex: 2;
}

.oil-image {
    flex: 1;
}

.oil-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.point-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f48fb1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.point-content h4 {
    color: #f48fb1;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.point-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.point-content p:last-child {
    margin-bottom: 0;
}

.point-content .note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* おすすめコースセクション */
.recommend-section {
    background: white;
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.recommend-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.recommend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    border-color: #f48fb1;
}

.recommend-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f48fb1, #ec407a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.recommend-title {
    color: #f48fb1;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.recommend-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.recommend-card .btn {
    background: #f48fb1;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: background 0.3s;
}

.recommend-card .btn:hover {
    background: #ec407a;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
    
    .oil-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .feature-point {
        gap: 1rem;
    }
    
    .point-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .recommend-grid {
        grid-template-columns: 1fr;
    }
    
    .recommend-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .symptom-category,
    .recommend-card {
        margin-bottom: 1rem;
    }
    
    .category-header {
        padding: 1rem;
    }
    
    .symptoms-list {
        padding: 1rem;
    }
    
    .feature-points {
        gap: 1.5rem;
    }
    
    .recommend-card {
        padding: 1.5rem;
    }
}