/**
 * Section Title Size Adjustment
 * セクションタイトルのサイズ調整
 */

/* セクションヘッダー全体 */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* セクションラベル（SERVICES, CONCEPT等） */
.section-label {
    display: inline-block;
    color: #667eea;
    font-size: 11px !important;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* セクションタイトル（サービス概要等） */
.section-title,
.cards-title,
.display-heading {
    font-size: clamp(20px, 2.8vw, 32px) !important;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

/* セクションサブタイトル */
.section-subtitle,
.subtitle-large,
.cards-description {
    font-size: clamp(14px, 1.8vw, 16px) !important;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.85;
}

/* セクション説明文（追加の詳細説明） */
.section-description {
    font-size: clamp(14px, 1.6vw, 15px) !important;
    line-height: 1.8;
    color: #666;
    max-width: 100% !important;
    width: 100% !important;
    margin: 20px auto 0;
    font-weight: 400;
    opacity: 0.9;
    padding: 0;
    white-space: pre-line;
}

/* 特定セクションの調整 */
.concept-section .section-title,
.services-section .section-title,
.programs-section .section-title,
.trainer-section .section-title,
.pricing-section .section-title,
.testimonials-section .section-title,
.blog-section .section-title,
.access-section .section-title {
    font-size: clamp(22px, 3vw, 34px) !important;
}

/* カードセクション */
.overview-cards .cards-title {
    font-size: clamp(22px, 3vw, 34px) !important;
}

.overview-cards .cards-description {
    font-size: clamp(13px, 1.5vw, 15px) !important;
}

/* CTAセクション（例外：大きめに保つ） */
.cta-section .cta-title {
    font-size: clamp(28px, 3.5vw, 40px) !important;
    font-weight: 700;
}

/* ヒーローセクション（例外：大きめに保つ） */
.hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem) !important;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .section-label {
        font-size: 10px !important;
        margin-bottom: 8px;
    }
    
    .section-title,
    .cards-title {
        font-size: 24px !important;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle,
    .cards-description {
        font-size: 14px !important;
    }
    
    .section-description {
        font-size: 13px !important;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .section-title,
    .cards-title {
        font-size: 20px !important;
    }
    
    .section-subtitle,
    .cards-description {
        font-size: 13px !important;
    }
}