/* === Theatre Power — オンライン予約ページ固有スタイル (mtg.css) === */
/* 更新: 2026-03-23 */


/* ----------------------------------------
   1. 簡易ヘッダー（ナビなし・sticky）
   ---------------------------------------- */
.mtg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
    height: 70px;
}

.mtg-header .logo img {
    height: 36px;
}


/* ----------------------------------------
   2. 予約セクション
   ---------------------------------------- */
.reservation-wrapper {
    padding: 60px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #BC221C;
    margin-bottom: 15px;
}

.page-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}


/* ----------------------------------------
   3. カレンダー埋め込みエリア
   ---------------------------------------- */
.calendar-embed {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.calendar-embed iframe {
    width: 100%;
    height: 600px;
    border: 0;
    display: block;
    position: relative;
    z-index: 1;
}

/* ローディングテキスト（iframeの裏に配置し、読み込み後は隠れる） */
.calendar-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    z-index: 0;
}


/* ----------------------------------------
   4. 簡易フッター
   ---------------------------------------- */
.mtg-footer {
    background: #eee;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

.mtg-footer .footer-text {
    font-size: 0.8rem;
    color: #999;
}


/* ----------------------------------------
   5. レスポンシブ
   ---------------------------------------- */
@media (max-width: 1024px) {
    .mtg-header {
        padding: 10px 15px;
        height: 60px;
    }
    .reservation-wrapper {
        padding: 40px 0;
    }
    .page-title {
        font-size: 1.4rem;
    }
    .calendar-embed {
        min-height: 850px;
        padding: 5px;
    }
    .calendar-embed iframe {
        height: 800px;
    }
}
