/* 年中行事ページ用スタイル */

/* ページヘッダー */
.page-header {
    background: url('../img/bg-pattern.jpg') #8B0000;
    padding: 100px 0 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 2.5rem;
    margin: 0 0 10px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: 700;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* コンテンツエリア */
.content-area {
    max-width: 900px;
    margin: 0 auto 80px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 40px;
}

/* イベントセクション */
.event-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px dashed #e0e0e0;
}

.event-section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 1.8rem;
    margin: 0 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #8B0000;
    color: #8B0000;
    position: relative;
}

.event-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.event-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.event-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.event-description {
    flex: 2;
    min-width: 300px;
}

.event-description p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.important-notice {
    color: #CC0000;
    font-weight: bold;
    padding: 10px;
    border-left: 4px solid #CC0000;
    background-color: rgba(204, 0, 0, 0.05);
    margin: 15px 0;
}

.event-banner {
    margin: 20px 0;
}

.event-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.event-link {
    color: #8B0000;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-right: 18px;
}

.event-link::after {
    content: '›';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
}

.event-link:hover {
    text-decoration: underline;
}

.reservation-image img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
}

/* ページトップへ戻るボタン */
.page-top {
    text-align: right;
    margin-top: 40px;
}

.top-button {
    display: inline-block;
    background: #8B0000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.top-button:hover {
    background: #660000;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 30px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-area {
        padding: 30px 20px;
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .event-content {
        flex-direction: column;
    }
    
    .event-image, .event-description {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 70px 0 25px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .content-area {
        padding: 20px 15px;
    }
    
    .event-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
} 