/* ============================================================
   NPO現代座 公演『出航』特設ページ固有スタイル
   共通スタイルは css/common.css を参照
   ============================================================ */

/* 出航ページ専用カラー */
:root {
    --ocean-blue: #0056b3;
}

/* ページラッパー幅 */
.page-wrapper {
    max-width: 1100px;
}

/* ----------------------------------------------------------
   1. ヒーローバナー
   ---------------------------------------------------------- */
main {
    padding: 0; /* バナーをページ端まで広げる */
}

.hero-banner {
    width: 100%;
    background: linear-gradient(to bottom, #e1f5fe 0%, #b3e5fc 100%);
    padding: 50px 20px;
    text-align: center;
    border-bottom: 5px solid var(--ocean-blue);
}

.hero-banner img {
    max-width: 100%;
    max-height: 500px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-radius: 4px;
}

/* チラシ2枚並べ */
.flyer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .flyer-wrapper {
        flex-direction: row;
        gap: 40px;
    }
}

/* ----------------------------------------------------------
   2. ページコンテンツ幅（読みやすい幅に絞る）
   ---------------------------------------------------------- */
.page-content {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-content {
        padding: 60px 40px;
    }
}

/* ----------------------------------------------------------
   3. タイトル・キャッチコピー
   ---------------------------------------------------------- */
.play-title {
    color: var(--ocean-blue);
    font-size: 2.5rem;
    text-align: center;
    margin: 0 0 20px 0;
    border: none;       /* common.css の h2 スタイルをリセット */
    padding: 0;
}

.catch-copy {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* ----------------------------------------------------------
   4. セクション見出し（海の青色）
   common.css の h2 をオーバーライド
   ---------------------------------------------------------- */
h2.section-heading {
    border-left: 8px solid var(--ocean-blue);
    padding: 12px 15px;
    margin: 60px 0 30px;
    font-size: 1.6rem;
    background-color: #f4f8fb;
    color: var(--text-dark);
}

/* ----------------------------------------------------------
   5. あらすじボックス
   ---------------------------------------------------------- */
.intro-box {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    line-height: 2;
}

/* ----------------------------------------------------------
   6. 公演情報テーブル
   ---------------------------------------------------------- */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 50px;
    background: #fff;
}

.info-table th,
.info-table td {
    padding: 15px 20px;
    border: 1px solid #ddd;
}

.info-table th {
    background-color: #f4f8fb;
    color: var(--text-dark);
    font-weight: bold;
    width: 25%;
    text-align: left;
}

/* スマホでは縦積み */
@media (max-width: 600px) {
    .info-table thead,
    .info-table tbody,
    .info-table th,
    .info-table td,
    .info-table tr { display: block; }

    .info-table th {
        width: 100%;
        border-bottom: none;
        background-color: #e8f0f7;
        padding: 8px 15px;
    }
    .info-table td {
        padding: 12px 15px;
    }
}

/* ----------------------------------------------------------
   7. キャスト・スタッフ
   ---------------------------------------------------------- */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.cast-item {
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 4px;
    border-left: 4px solid #ccc;
    font-weight: bold;
}

.cast-org {
    display: block;
    font-size: 0.8em;
    color: #666;
    font-weight: normal;
    margin-top: 2px;
}

.staff-list {
    line-height: 2.2;
}

.staff-role {
    display: inline-block;
    width: 6em;
    color: var(--ocean-blue);
    font-weight: bold;
}

/* ----------------------------------------------------------
   8. チケット予約エリア
   ---------------------------------------------------------- */
.ticket-area {
    background-color: #fff9e6;
    border: 2px solid var(--accent-yellow);
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 60px;
}

.ticket-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* 予約エリア内の連絡先ブロック */
.reservation-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed #ccc;
    text-align: left;
    display: inline-block;
    line-height: 2;
}

.reservation-contact p { margin: 0 0 8px; }
.reservation-contact p:last-child { margin: 0; }

/* チケットエリア内ではボタンを大きく */
.ticket-area .btn-form {
    font-size: 1.2rem;
    padding: 15px 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
