/* ページ固有：コンテンツエリア */
.content {
    padding: var(--section-padding) 0;
}
.content h2 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}
.content h2:first-child {
    margin-top: 0;
}
.content h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 2rem 0 1rem;
}
.content p {
    font-size: 0.9375rem;
    line-height: 2;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}
.content ul,
.content ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}
.content li {
    font-size: 0.9375rem;
    line-height: 2;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    list-style: disc;
}
.content ol li {
    list-style: decimal;
}
/* コンテンツ内リンク上書き */
.content a {
    color: var(--color-accent);
}
.content a:hover {
    text-decoration: underline;
}
