.elementor-1963 .elementor-element.elementor-element-5a6835c{--display:flex;}/* 履歴セクション全体のスタイル */
.history-page {
    font-family: 'Noto Serif JP', serif !important;
    padding: 100px 0;
    background-color: #fff;
    color: #333;
}

.history-header {
    text-align: center;
    margin-bottom: 80px;
}

.history-header h1 {
    font-size: 2.2rem;
    margin: 20px 0;
    letter-spacing: 0.1em;
}

/* タイムラインの構造 */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

/* 縦のライン */
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e6a04a;
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

/* 年代のラベル */
.year {
    font-family: 'Garamond', serif;
    font-size: 1.4rem;
    color: #e6a04a;
    font-weight: bold;
    margin-bottom: 10px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -35px;
    top: 10px;
    width: 10px;
    height: 10px;
    background-color: #e6a04a;
    border-radius: 50%;
}

.timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #4a342e;
}

.timeline-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* 現在の項目を強調 */
.timeline-item.highlight {
    background-color: #fdfaf5;
    padding: 30px;
    border-radius: 5px;
    border-left: 3px solid #e6a04a;
}

/* ナビゲーションボタン */
.history-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 100px;
}

.nav-btn {
    text-decoration: none;
    padding: 12px 30px;
    border: 1px solid #e6a04a;
    transition: 0.3s;
    font-size: 0.9rem;
}

.nav-btn.primary {
    background-color: #e6a04a;
    color: white;
}

.nav-btn.secondary {
    color: #e6a04a;
}

.nav-btn:hover {
    opacity: 0.8;
    letter-spacing: 0.15em;
}

/* レスポンシブ */
@media (max-width: 600px) {
    .timeline { padding-left: 30px; }
    .timeline::before { left: 10px; }
    .timeline-item::after { left: -25px; }
    .history-header h1 { font-size: 1.6rem; }
}