/* --- 1. セクション全体 --- */
.concert-section {
    display: flex;
    justify-content: flex-end; /* PCでは右寄せ */
    padding: 32px 40px 64px;
}

/* --- 2. カードの基本構造 --- */
.concert-card {
    position: relative;
    width: 48%;            /* PCでは幅を絞る */
    min-width: 320px;      /* 崩れ防止の最小幅 */
    background: #fff;
    border: 2px solid #C8A040;
    padding: 24px 32px;
    overflow: hidden;
    box-sizing: border-box; /* パディングを含めた計算 */
}

/* --- 3. リード文（見出し） --- */
.concert-lead {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    color: #2C1505;
    margin-bottom: 18px;
    padding: 12px 16px;
    background: rgba(232, 192, 96, .1);
    border-left: 4px solid #C8A040;
}

/* --- 4. イベントリスト --- */
.concert-events {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.concert-event {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 18px;
    border: 1px solid rgba(200, 160, 64, .35);
    background: linear-gradient(135deg, rgba(253, 242, 216, .6), rgba(240, 208, 128, .15));
}

/* 日付バッジ */
.event-badge {
    flex-shrink: 0;
    width: 70px;
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    font-family: 'Georgia', serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(160deg, #D4A840, #9a6e18);
    box-shadow: 0 2px 6px rgba(100, 60, 0, .25);
}

.event-name {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif;
    color: #2C1505;
    letter-spacing: 2px;
    margin-bottom: 3px;
}

.event-desc {
    font-size: 15px;
    font-weight: 700;
    color: #7a5020;
    line-height: 1.5;
}

/* --- 5. 【重要】レスポンシブ対応 --- */
@media screen and (max-width: 992px) {
    .concert-card {
        width: 70%; /* タブレットサイズでは少し広げる */
    }
}

@media screen and (max-width: 768px) {
    .concert-section {
        justify-content: center; /* スマホでは中央寄せ */
        padding: 32px 20px 48px;  /* 左右の余白を縮小 */
    }

    .concert-card {
        width: 100%;             /* 横幅いっぱい */
        padding: 20px 16px;      /* 内側の余白を調整 */
    }

    .concert-lead {
        font-size: 16px;         /* 文字サイズを微調整 */
        line-height: 1.6;
    }

    .concert-event {
        gap: 10px;               /* 隙間を詰める */
        padding: 10px 12px;
    }

    .event-badge {
        width: 60px;             /* バッジを少し小型化 */
        font-size: 11px;
    }

    .event-name {
        font-size: 17px;         /* タイトルをスマホサイズに */
        letter-spacing: 1px;
    }

    .event-desc {
        font-size: 13px;         /* 説明文をスマホサイズに */
    }
}