/* ==========================================================================
   現在開催中のイベント (いいづなりんごフェア) スタイル - 洗練・高品位版
   ========================================================================== */

.lz-current-event-container {
    max-width: 1120px;
    margin: 40px auto 20px auto;
    padding: 0 20px;
}

.lz-current-event-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

/* トップバー */
.lz-event-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #a82626;
    padding: 14px 28px;
    color: #ffffff;
}

.lz-event-badge {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
}

.lz-event-badge::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
}

.lz-event-period-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    opacity: 0.95;
}

/* メインレイアウト */
.lz-event-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 36px;
    padding: 32px;
    align-items: center;
}

@media (max-width: 900px) {
    .lz-event-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
}

/* ポスター枠 */
.lz-event-media {
    display: flex;
    justify-content: center;
}

.lz-event-poster-frame {
    display: block;
    width: 100%;
    max-width: 360px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lz-event-poster-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.lz-event-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 詳細コンテンツ */
.lz-event-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lz-event-heading {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.lz-event-heading a:hover {
    color: #a82626;
    text-decoration: underline !important;
}

.lz-event-intro {
    font-size: 1.15rem;
    color: #444444;
    line-height: 1.8;
    margin: 0;
}

/* 前半・後半スケジュールグリッド */
.lz-event-schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .lz-event-schedule-grid {
        grid-template-columns: 1fr;
    }
}

.lz-schedule-box {
    background: #f9f9f9;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 16px 18px;
}

.lz-schedule-tag {
    font-size: 0.95rem;
    font-weight: 800;
    color: #a82626;
    margin-bottom: 6px;
}

.lz-schedule-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #222222;
    margin: 0 0 6px 0;
}

.lz-schedule-text {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.55;
    margin: 0;
}

/* スタンプラリー告知枠 */
.lz-event-info-panel {
    background: #fdfaf6;
    border-left: 4px solid #a82626;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
}

.lz-info-panel-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #333333;
    margin-bottom: 6px;
}

.lz-info-panel-desc {
    font-size: 1rem;
    color: #555555;
    line-height: 1.65;
}

/* ボタン行 */
.lz-event-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}

.lz-btn-view-article {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #a82626;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(168, 38, 38, 0.25);
    transition: background 0.2s ease, transform 0.2s ease;
}

.lz-btn-view-article:hover {
    background: #8b1e1e;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.lz-btn-view-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #333333 !important;
    border: 2px solid #dcdcdc;
    text-decoration: none !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.lz-btn-view-instagram:hover {
    border-color: #a82626;
    color: #a82626 !important;
    transform: translateY(-2px);
}
