/* --- ヒーローセクション（催事ページ用） --- */
.hero {
    height: 400px;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/kodawari5.png'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-content p {
    font-size: 1.1rem;
    font-family: 'Zen Old Mincho', serif;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    letter-spacing: 0.1em;
}

/* --- 催事リストデザイン --- */
.event-section {
    padding-bottom: 100px;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* 年ごとの区切りなどが必要な場合に使用 */
.year-label {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin: 40px 0 20px;
    font-family: 'Zen Old Mincho', serif;
}

.event-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--primary-color);
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.event-date {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.9rem;
    border-radius: 2px;
    margin-bottom: 10px;
    font-family: 'Zen Old Mincho', serif;
    letter-spacing: 0.05em;
}

.event-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
}

.event-details {
    font-size: 1rem;
    color: #555;
}

.event-details ul {
    padding-left: 0;
}

.event-details li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 8px;
}

.event-details li::before {
    content: "┗";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .nav-menu { margin-top: 15px; gap: 15px; font-size: 0.85rem; flex-wrap: wrap; justify-content: center; }
    .event-card { padding: 20px; }
    .event-title { font-size: 1.1rem; }
}