


/* WP Add Custom CSS用 スケジュール中央揃え修正版 */

/* 全体の基本設定（WPのテーマと干渉しないよう調整） */
.hero, .intro, .schedule, .cast, .booth, .footer {
    width: 100%;
    clear: both;
}

/* スケジュールセクション */
.schedule-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center; /* スマホでカード自体を中央に */
    margin-top: 20px;
}

.day-box {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center; /* 中のテキストを中央揃え */
    width: 100%;
    max-width: 350px; /* カードが広がりすぎないように制限 */
}

.day-label {
    font-weight: 900;
    font-size: 1.2rem;
    border-bottom: 2px solid #fff;
    margin-bottom: 15px;
    padding-bottom: 8px;
    display: inline-block; /* 下線の長さを文字幅に合わせる */
}

.day-box p {
    margin: 5px 0;
    font-size: 1rem;
}

/* キャスト・ブース画像の中央配置 */
.cast-grid, .booth-gallery {
    display: grid;
    gap: 20px;
    justify-content: center; /* グリッド全体を中央に */
}

/* PCレイアウト (768px以上) */
@media (min-width: 768px) {
    .schedule-flex {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
    .day-box {
        flex: 1;
    }
    .cast-grid, .booth-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}