/* タイポグラフィ設定 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--font-size-xxxl);
}

h2 {
    font-size: var(--font-size-xxl);
}

h3 {
    font-size: var(--font-size-xl);
}

h4 {
    font-size: var(--font-size-l);
}

h5 {
    font-size: var(--font-size-m);
}

h6 {
    font-size: var(--font-size-s);
}

/* セクションタイトルの装飾 - solutionセクションを除外 */
section:not(.solution) h2 {
    text-align: center;
    font-weight: bold;
    color: #1a2942;
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 0;
    border: none;
}

/* タイトル下の装飾線を完全に削除 */
section:not(.solution) h2::after,
section h2::after {
    display: none !important;
    content: none !important;
    border: none !important;
    background: none !important;
}

p {
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

.text-bold {
    font-weight: 700;
}

.text-italic {
    font-style: italic;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-accent {
    color: var(--accent-color);
}

.text-light {
    color: var(--text-light);
}

.text-muted {
    color: var(--text-muted);
}