/* ============================================
   02 - Base: Layout / Typography / Labels / Highlights
   ============================================ */

/* --- 数字は標準フォント --- */
.price-number,
.price-unit,
.stat-badge-num,
.stat-number-tiktok,
.result-stat-number,
.comparison-value-large,
.value-unit,
.hero-stat-inline,
.text-highlight-xxl,
.plan-contract {
    font-family: system-ui, -apple-system, sans-serif;
}

/* --- Container & Layout --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 32px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 400;
}

/* --- Text Highlights --- */
.text-highlight {
    color: var(--primary-blue);
    font-weight: 700;
}

.text-highlight-hero {
    color: white;
    font-weight: 800;
    font-size: 1.15em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.text-highlight-large {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.15em;
}

.text-highlight-xxl {
    color: var(--primary-blue);
    font-weight: 900;
    font-size: 1.3em;
}

.text-success-large {
    color: var(--success-green);
    font-weight: 800;
    font-size: 1.15em;
}

.note-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

/* --- Labels (共通バッジスタイル) --- */
.service-label,
.problem-label,
.result-label,
.reason-number,
.plan-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 3px;
    background: rgba(0, 20, 210);
    color: white;
    margin-bottom: 16px;
}

/* バリアント */
.reason-number {
    font-size: 0.875rem;
    padding: 8px 20px;
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: 24px;
    background: var(--tiktok-pink);
    font-size: 0.875rem;
    padding: 8px 20px;
    box-shadow: var(--shadow-lg);
    animation: pulse 2.5s infinite;
}
