/* ==========================================================================
   現在開催中のイベント (いいづなりんごフェア) スタイル
   サイト全体デザイン（Noto Sans JP / ゆったり大きな視認性 / りんごの温かみ）調和版
   ========================================================================== */

.lz-current-event-container {
    max-width: 1120px;
    margin: 35px auto 25px auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.lz-current-event-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(91, 58, 30, 0.07), 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(220, 195, 180, 0.7);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

/* トップバー */
.lz-event-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #cf3a3a 0%, #b82828 100%);
    padding: 14px 30px;
    color: #ffffff;
    flex-wrap: wrap;
    gap: 10px;
}

.lz-event-badge {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
}

.lz-event-badge::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
    animation: lz-pulse-dot 2s infinite ease-in-out;
}

@keyframes lz-pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.lz-event-period-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    opacity: 0.96;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

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

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

.lz-event-poster-frame {
    display: block;
    width: 100%;
    max-width: 360px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(91, 58, 30, 0.1);
    border: 1px solid rgba(220, 195, 180, 0.55);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
    background: #f7f2ed;
}

.lz-event-poster-frame:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(91, 58, 30, 0.16);
}

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

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

.lz-event-heading {
    font-size: clamp(1.55rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: #2b231d;
    line-height: 1.42;
    letter-spacing: 0.02em;
    margin: 0;
}

.lz-event-heading a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lz-event-heading a:hover {
    color: #cf3a3a;
}

.lz-event-intro {
    font-size: 1.22rem;
    color: #4a423a;
    line-height: 1.8;
    margin: 0;
}

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

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

.lz-schedule-box {
    background: #fdfbf9;
    border: 1px solid rgba(224, 203, 190, 0.6);
    border-radius: 14px;
    padding: 16px 18px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.lz-schedule-box:hover {
    background: #fff8f5;
    border-color: rgba(207, 58, 58, 0.4);
}

.lz-schedule-tag {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #cf3a3a;
    background: #fef0f0;
    border: 1px solid rgba(207, 58, 58, 0.2);
    padding: 3px 12px;
    border-radius: 999px;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.lz-schedule-title {
    font-size: 1.22rem;
    font-weight: 700;
    color: #2b231d;
    margin: 0 0 6px 0;
    letter-spacing: 0.01em;
}

.lz-schedule-text {
    font-size: 1.08rem;
    color: #554d45;
    line-height: 1.65;
    margin: 0;
}

/* スタンプラリー告知枠 */
.lz-event-info-panel {
    background: #fbf7f3;
    border: 1px solid rgba(220, 195, 180, 0.55);
    border-left: 5px solid #cf3a3a;
    padding: 16px 20px;
    border-radius: 10px;
    box-sizing: border-box;
}

.lz-info-panel-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #2b231d;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lz-info-panel-title i {
    color: #cf3a3a;
    font-size: 1.1rem;
}

.lz-info-panel-desc {
    font-size: 1.1rem;
    color: #554d45;
    line-height: 1.7;
    margin: 0;
}

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

.lz-btn-view-article {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #cf3a3a;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 13px 28px;
    border-radius: 999px;
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(207, 58, 58, 0.25);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lz-btn-view-article:hover {
    background: #b82828;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(207, 58, 58, 0.35);
    color: #ffffff !important;
}

.lz-btn-view-article i {
    pointer-events: none;
    transition: transform 0.2s ease;
}

.lz-btn-view-article:hover i {
    transform: translateX(3px);
}

.lz-btn-view-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: #4a4038 !important;
    border: 1.8px solid rgba(210, 190, 175, 0.9);
    text-decoration: none !important;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 1.08rem;
    font-weight: 600;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.lz-btn-view-instagram i {
    pointer-events: none;
}
