@charset "UTF-8";

/* --- 基本セクション設定（index.cssと同じデザイン） --- */
.section-title {
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 20px;
}

/* --- コンテンツエリアの余白・文字設定 --- */
.content-box {
    margin-bottom: 40px;
    padding: 0 10px;
    line-height: 1.8;
}

.content-box p {
    margin-bottom: 1.5em;
    font-size: 0.9rem;
}

/* 本文内のリンク色設定 */
.content-box a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* スマホ表示時の微調整 */
@media screen and (max-width: 768px) {
    .content-box {
        padding: 0;
    }
}