/* ============================================================
   イベントページ専用スタイル - 他画面統一仕様
============================================================ */

/* イベント一覧セクション */
.events-section {
    padding: 214px 40px 80px 40px;
    background: #f4f4f4;
}

/* セクションタイトル */
.section-title {
    text-align: center;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: bold;
    font-size: 48px;
    line-height: 36px;
    letter-spacing: 2.4px;
    color: #EB8E22;
    margin-bottom: 80px;
    opacity: 1;
}

/* イベントリスト */
.events-list {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* イベント項目 */
.event-item {
    display: flex;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 324px;
}

.event-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* イベント画像コンテナ */
.event-image-container {
    width: 300px;
    height: 324px;
    flex-shrink: 0;
}

.event-list-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6c757d;
}

/* イベント詳細 */
.event-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

/* イベントタイトル（一覧／XD準拠） */
.events-section .event-item .event-details h3.event-list-title,
h3.event-list-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 2.4px;
    color: #222222;
    text-align: center;
    margin: 0 0 20px 0;
    padding: 0;
    opacity: 1;
    box-sizing: border-box;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

.event-meta {
    margin-bottom: 20px;
    text-align: left;
}

.event-date {
    color: #EB8E22;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.event-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.event-description-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* もっと見るボタン */
.event-more-btn {
    background: #2B9B7D;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.event-more-btn:hover {
    background: #228B6A;
}

/* イベント一覧セクション */
.events-section {
    padding: 80px 20px;
    background: #f4f4f4;
}

/* 空の状態 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-state-icon {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.empty-state-description {
    font-size: 16px;
    color: #666;
}

/* レスポンシブ対応 */
@media screen and (min-width: 960px) {
}

@media screen and (min-width: 520px) and (max-width: 959px) {
    .events-section {
        padding: 160px 30px 60px 30px;
    }
    
    .section-title {
        font-size: 36px;
        line-height: 32px;
        letter-spacing: 1.8px;
        margin-bottom: 60px;
    }
    
    .events-list {
        max-width: 100%;
        margin: 0;
    }
    
    .event-item {
        flex-direction: column;
        min-height: auto;
    }
    
    .event-image-container {
        width: 100%;
        height: 250px;
    }
    
    .event-details {
        padding: 30px 20px;
    }
    
    .events-section .event-item .event-details h3.event-list-title,
    h3.event-list-title {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 519px) {
    .events-section {
        padding: 80px 20px 40px 20px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 28px;
        letter-spacing: 1.5px;
        margin-bottom: 30px;
    }
    
    .events-list {
        max-width: 100%;
        margin: 0;
    }
    
    .event-item {
        flex-direction: column;
        min-height: auto;
        margin: 0;
    }
    
    .event-image-container {
        width: 100%;
        height: 200px;
    }
    
    .event-details {
        padding: 20px 15px;
    }
    
    .events-section .event-item .event-details h3.event-list-title,
    h3.event-list-title {
        font-size: 18px !important;
        line-height: 27px !important;
        letter-spacing: 1.8px !important;
    }
    
    .event-description-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .event-more-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}