:root {
    --bg-dark: #0f2a1f;
    --bg-soft: #132f24;
    --text-main: #e6efe9;
    --text-sub: rgba(230,239,233,0.75);
    --accent-gold: #c6a664;
}

body {
    margin: 0;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: ''Noto Sans JP', sans-serif;
    color: #e6efe9; /* ← 深緑背景用の文字色 */
}

.history {
    max-width: 1100px;
    margin: 0 auto;
    padding: 180px 20px 80px; /* ヘッダー分を考慮 */
}

.history-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 47px;
    letter-spacing: 0.18em;
    text-align: center;
    margin-bottom: 80px;
    color: var(--accent-gold);
}

.history-section {
    margin-bottom: 100px;
}

.history-heading {
    font-family:  'Noto Serif JP', 'Cinzel', serif;
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    color: var(--accent-gold);
}

.history-text {
    font-size: 1.0rem;
    line-height: 1.8;
    color: var(--text-main);
}

/* 区切りライン */
.history-divider {
    margin: 120px auto 100px;
    width: 180px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--accent-gold),
        transparent
	);
}

/* スマホ */
@media (max-width: 768px) {
    .history {
        padding: 120px 16px 100px;
    }

    .history-title {
        font-size: 1.9rem;
    }

    .history-heading {
        font-size: 1.4rem;
    }
}
