/* スマホのみ: 改行・中央配置・文字サイズ調整 */

@media (max-width: 768px) {
    /* ヒーローセクション改行 */
    .hero-headline-main::after {
        content: "";
    }
    
    /* Pain Section - チェックマーク中央配置 */
    .pain-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .pain-card {
        max-width: 100%;
        text-align: center;
    }
    
    .pain-detail {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .check-icon {
        margin: 0 auto 8px;
    }
    
    /* メトリクスセクション文字サイズ調整 */
    .metrics-title {
        font-size: 22px !important;
        line-height: 1.5;
    }
    
    .metric-average {
        font-size: 20px !important;
        font-weight: 400;
    }
    
    .metric-value {
        font-size: 48px !important;
    }
    
    .metric-value span {
        font-size: 24px !important;
    }
    
    .total-time-value {
        font-size: 38px !important;
        line-height: 1.3;
    }
    
    .total-time-value span {
        font-size: 26px !important;
    }
    
    .total-time-label {
        font-size: 15px !important;
        line-height: 1.6;
    }
    
    /* Value Section - 買い切り型 */
    .value-card-title {
        font-size: 20px !important;
    }
    
    .value-card-highlight {
        font-size: 18px !important;
    }
    
    .value-card-description {
        font-size: 15px !important;
        line-height: 1.7;
    }
    
    /* Target Section */
    .target-title {
        font-size: 24px !important;
    }
}
