@charset "UTF-8";

/* ==========================================================================
   1. Base Styles (基本設定)
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.zen-mincho {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   2. Header (ヘッダー)
   ========================================================================== */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.site-logo {
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 0.15em;
}

.site-logo a:hover { opacity: 0.7; }

/* PC用ナビゲーション */
.main-nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #444;
}

.main-nav a:hover { color: #b08d57; }

.nav-mypage {
    border: 1px solid #b08d57;
    padding: 6px 16px !important;
    color: #b08d57 !important;
    border-radius: 2px;
}

.nav-mypage:hover {
    background: #b08d57;
    color: #fff !important;
}

/* ハンバーガーボタン共通 */
.menu-toggle {
    display: none; /* PCでは隠す */
    position: relative;
    z-index: 2000; /* メニューより上 */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* 「×」アニメーション */
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- スマホ用レスポンシブ設定 --- */
@media (max-width: 768px) {
    /* ハンバーガーボタンを表示 */
    .menu-toggle {
        display: block !important;
    }

    /* メニュー全体の背景とフェード設定 */
    .main-nav {
        display: flex !important;
        flex-direction: column;
        justify-content: center; /* 垂直方向中央 */
        align-items: center;     /* 水平方向中央 */
        position: fixed;         /* stickyの影響を受けないようfixedを維持 */
        top: 0;
        left: 0;
        right: 0;                /* 四方を固定 */
        bottom: 0;               /* 四方を固定 */
        width: 100% !important;
        height: 100% !important; /* vhではなく%で親要素(画面)に追従 */
        background: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        
        padding: 0 !important;
        margin: 0 !important;

        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(0) !important; /* Y軸移動をリセット */
        transition: opacity 0.4s ease, visibility 0.4s;
    }

    /* 開いた時の状態 */
    .main-nav.is-open {
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* リスト構造の整理 */
     .main-nav ul {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;    /* 行間を少しだけ広げて視覚的中心を安定させます */
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important; 
        list-style: none !important;
        /* 少しだけ上にオフセット調整（人間の目は幾何学的な中央より少し上が中央に見えるため） */
        transform: translateY(-2vh); 
    }

    .main-nav ul li {
        width: 100% !important;
        text-align: center;
        padding: 0 !important;
        margin: 0 !important;
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.4s ease;
    }

    .main-nav.is-open ul li {
        opacity: 1;
        transform: translateY(0);
    }

    /* リンクテキストのスタイル */
    .main-nav a {
        display: inline-block;
        padding: 12px 30px;
        font-size: 1.1rem; /* わずかに小さくしてバランス調整 */
        letter-spacing: 0.1em;
    }

    /* ログインボタンの枠線を自然なサイズに固定 */
    .main-nav a.nav-mypage {
        border: 1px solid #b08d57 !important;
        padding: 8px 25px !important; /* 左右に余白を持たせる */
        margin-top: 10px;
        display: inline-block !important; 
        width: auto !important;
    }

    /* 時間差アニメーションの設定 */
    .main-nav.is-open ul li:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.is-open ul li:nth-child(2) { transition-delay: 0.15s; }
    .main-nav.is-open ul li:nth-child(3) { transition-delay: 0.2s; }
    .main-nav.is-open ul li:nth-child(4) { transition-delay: 0.25s; }
    .main-nav.is-open ul li:nth-child(5) { transition-delay: 0.3s; }
    .main-nav.is-open ul li:nth-child(6) { transition-delay: 0.35s; }
}


/* ==========================================================================
   3. Page Components (共通パーツ)
   ========================================================================== */

.page-header {
    background: #fdfdfd;
    /* 上下の余白をギュッと詰めました（旧：100px 20px 80px） */
    padding: 60px 20px 40px; 
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 40px; /* 下のコンテンツとの間隔も少し詰めました */
}

.page-header h2 {
    font-size: 2.2rem; /* 少しだけ小さくして圧迫感を軽減 */
    margin: 0;
    letter-spacing: 0.25em;
    color: #1a1a1a;
}

.page-header .sub-title {
    font-size: 0.75rem;
    color: #b08d57;
    letter-spacing: 0.4em;
    margin-top: 15px; /* タイトルとの間隔も微調整 */
    font-weight: bold;
    text-transform: uppercase;
}

/* スマホ用（さらに極限までコンパクトに） */
@media (max-width: 768px) {
    .page-header {
        /* 上下パディングをさらに削減（30px 20px 20px） */
        padding: 20px 20px 15px !important;
        margin-bottom: 25px !important; /* コンテンツとの隙間も最小限に */
    }

    .page-header h2 {
        font-size: 1.4rem; /* 文字サイズをさらに抑えて1行にスッキリ収める */
        letter-spacing: 0.15em; /* 字間を少し詰めて視認性を確保 */
    }

    .page-header .sub-title {
        font-size: 0.7rem;
        margin-top: 8px; /* タイトルとの距離をギュッと凝縮 */
        letter-spacing: 0.2em;
    }
}

/* ライブ一覧グリッド */
.live-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.live-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.live-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.live-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.live-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f9f9f9;
}

.live-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.live-card:hover .live-card-img img {
    transform: scale(1.05);
}

.live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: rgba(26, 26, 26, 0.85);
    color: #fff;
    font-size: 0.7rem;
    padding: 5px 12px;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.live-card-body {
    padding: 25px;
}

.live-date {
    display: block;
    font-size: 0.9rem;
    color: #b08d57;
    font-weight: bold;
    margin-bottom: 12px;
}

.live-title {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 0 15px 0;
    height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.live-venue {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.live-venue i {
    margin-right: 5px;
    color: #ccc;
}

/* アクションボタンの親要素 */
.action-btn-wrapper {
    margin: 50px 0;
    text-align: center;
    /* ボタンを縦に並べるための設定 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* ボタン同士の上下の隙間 */
}

.action-btn {
    display: flex;          /* 中の文字を上下左右中央にするため */
    align-items: center;    /* 上下中央 */
    justify-content: center; /* 左右中央 */
    background: #1a1a1a;
    color: #fff;
    
    /* --- 幅の調整：ここがポイント --- */
    width: 100%;            /* いったん横いっぱいに広げる */
    max-width: 400px;       /* ボタンの最大幅を固定（お好みで調整してください） */
    min-height: 64px;       /* パディングの代わりに高さでサイズを確保 */
    /* ------------------------------ */
    
    padding: 10px 20px;     /* 上下は少し詰め、左右も2行になった時用の最低限に */
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 0.1em;  /* 2行の時を考慮して少し詰め気味に（任意） */
    border: 1px solid #1a1a1a;
    transition: 0.3s;
    text-decoration: none;  /* リンクの下線を消す */
    line-height: 1.4;       /* 2行になった時の行間 */
}

.action-btn:hover {
    background: #fff;
    color: #1a1a1a;
}

/* ==========================================================================
   3-2. Event Detail (ライブ個別詳細ページ) 
   ========================================================================== */

.event-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.event-main-visual {
    margin-bottom: 60px;
    text-align: center;
}

.event-main-visual img {
    max-width: 100%;
    height: auto;          /* 高さは自動計算させる */
    max-height: 70vh;      /* 画面の高さ（Viewport Height）の70%を上限にする */
    object-fit: contain;   /* 枠に合わせて画像を収める（歪ませない） */
    display: block;        /* 余計な隙間を消す */
    margin: 0 auto;        /* 中央寄せ */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.event-title {
    font-size: 2rem;
    margin-top: 20px; /* 念のため少し上余白を確保 */
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.1em;
}

.event-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 60px;
}

.event-info-table th {
    width: 25%;
    text-align: left;
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
    font-size: 0.9rem;
    color: #b08d57;
    letter-spacing: 0.1em;
}

.event-info-table td {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
    font-size: 1rem;
    line-height: 1.8;
}

.venue-link {
    color: #b08d57;
    text-decoration: underline;
    font-weight: bold;
}

.venue-access {
    font-size: 0.85rem;
    color: #777;
    margin-top: 10px;
}

.free-live-msg {
    text-align: center;
    font-weight: bold;
    color: #b08d57;
    margin: 40px 0;
}

/* 戻るボタン */
.back-to-list {
    margin-top: 60px;
    text-align: center;
}

.back-to-list a {
    font-size: 0.9rem;
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.back-to-list a:hover {
    color: #333;
    border-bottom: 1px solid #333;
}


/* ==========================================================================
   4. Footer (フッター) - Light Version
   ========================================================================== */
.site-footer {
    background: #f9f9f9; /* 明るいグレーに変更 */
    color: #333; /* 文字色を濃いグレーに反転 */
    padding: 80px 0 40px;
    margin-top: 100px;
    border-top: 1px solid #eee; /* 背景が明るいので、境界線を追加して区切りを明確に */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #ddd; /* 境界線を濃いめに調整 */
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.office-name {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

/* SNSアイコンスタイル */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    color: #444; /* アイコンをダークカラーに */
    border: 1px solid #ccc; /* 枠線を薄いグレーに */
    border-radius: 50%;
    transition: 0.3s;
    background: #fff; /* アイコン背景を白にすると清潔感が出ます */
}

.footer-social a:hover {
    border-color: #b08d57;
    color: #b08d57;
    background: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

/* プライバシーポリシーリンク */
.footer-sub-nav {
    margin-bottom: 15px;
}

.footer-sub-nav a {
    font-size: 0.7rem;
    color: #777; /* 少し明るいグレーに */
    letter-spacing: 0.05em;
    text-decoration: none;
}

.footer-sub-nav a:hover {
    color: #b08d57;
    text-decoration: underline;
}

.copyright {
    font-size: 0.7rem;
    color: #999;
}

/* ==========================================================================
   5. Responsive (レスポンシブ)
   ========================================================================== */
@media (max-width: 768px) {
    /* --- ハンバーガーボタン --- */
    .menu-toggle {
        display: block !important;
    }

    /* --- スマホ用ナビゲーション (ソフトなフェード) --- */
    .main-nav {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100% !important;
        height: 100% !important;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        padding: 0 !important;
        margin: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.4s ease !important;
    }

    .main-nav.is-open {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .main-nav ul {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        transform: translateY(-2vh); /* 視覚的な中央調整 */
    }

    .main-nav ul li {
        width: 100% !important;
        text-align: center;
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.4s ease;
    }

    .main-nav.is-open ul li {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav a {
        display: inline-block;
        padding: 12px 30px;
        font-size: 1.15rem;
        letter-spacing: 0.1em;
    }

    .main-nav a.nav-mypage {
        border: 1px solid #b08d57 !important;
        padding: 8px 25px !important;
        margin-top: 10px;
    }

    /* メニューの時間差出現 */
    .main-nav.is-open ul li:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.is-open ul li:nth-child(2) { transition-delay: 0.15s; }
    .main-nav.is-open ul li:nth-child(3) { transition-delay: 0.2s; }
    .main-nav.is-open ul li:nth-child(4) { transition-delay: 0.25s; }
    .main-nav.is-open ul li:nth-child(5) { transition-delay: 0.3s; }
    .main-nav.is-open ul li:nth-child(6) { transition-delay: 0.35s; }

    /* --- ページ共通ヘッダー --- */
    .page-header {
        padding: 60px 20px;
    }

    .page-header h2 {
        font-size: 1.8rem;
    }

    /* --- ライブ個別詳細ページ --- */
    .event-title {
        font-size: 1.5rem;
    }

    .event-info-table th, 
    .event-info-table td {
        display: block;
        width: 100%;
        padding: 15px 0;
    }

    .event-info-table th {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* --- フッター --- */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ==========================================================================
   Top Page Specific Styles
   ========================================================================== */

.top-section {
    padding: 120px 0;
}

.bg-light { background-color: #fdfdfd; }

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.4rem;
    letter-spacing: 0.25em;
    margin-bottom: 10px;
}

.section-sub-title {
    font-size: 0.75rem;
    color: #b08d57;
    letter-spacing: 0.4em;
    font-weight: bold;
    text-transform: uppercase;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: auto;
    background: #fff;
    overflow: hidden;
    line-height: 0;
}

.hero-item {
    width: 100%;
    height: auto;
}

.hero-item picture, .hero-item img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-caption {
    position: absolute;
    bottom: 12%;
    left: 6%;
    color: #fff;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2; 
}

.caption-label {
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    color: #b08d57;
    display: block;
    margin-bottom: 8px; 
    text-transform: uppercase;
}

/* クラス名で一括指定 */
.hero-main-copy {
    font-size: 3.2rem; /* 3remより少し大きくして存在感を出す */
    margin: 0;
    line-height: 1.1; /* 行間を極限まで詰める */
    letter-spacing: 0.15em;
}

.hero-sub-copy {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-top: 0px; 
    opacity: 0.9;
}

/* Movie (YouTube) */
.youtube-container {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.youtube-container iframe {
    width: 100%;
    height: 100%;
}

/* Fanclub Banner */
.fc-banner {
    background: #f4f1ec; /* 柔らかなベージュ */
    padding: 80px 40px;
    text-align: center;
    border-radius: 2px;
}

.fc-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.fc-desc {
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
}

.fc-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.fc-login-link {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #b08d57;
    font-weight: bold;
}

/* View More Link */
.view-more-area {
    text-align: center;
    margin-top: 50px;
}

.view-all-link {
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #1a1a1a;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.view-all-link:hover {
    color: #b08d57;
    border-color: #b08d57;
}

@media (max-width: 768px) {
    .top-section { padding: 80px 0; }
    .hero-section { height: auto; }
    .hero-caption h2 { font-size: 1.8rem; }
    .fc-banner { padding: 50px 20px; }
}

/* Special Notice Area 全体 */
.special-notice-area {
    background: #1a1a1a;
    position: relative;
    z-index: 20; /* ヒーローとの重なりを制御 */
}

/* 画像バナーの場合 */
.notice-banner-img {
    line-height: 0;
    overflow: hidden;
}

.notice-banner-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.notice-link:hover .notice-banner-img img {
    transform: scale(1.03);
}

/* テキスト版（独立のお知らせ等） */
.notice-content-text {
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    border-bottom: 2px solid #b08d57;
}

.notice-badge {
    background: #b08d57;
    color: #fff;
    font-size: 0.65rem;
    padding: 4px 10px;
    letter-spacing: 0.1em;
    font-weight: bold;
    white-space: nowrap; /* 折り返し防止 */
}

.notice-text {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.notice-btn {
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 15px;
    white-space: nowrap;
}

/* モバイル対応の最適化 */
@media (max-width: 768px) {
    .notice-content-text {
        flex-direction: column; /* スマホでは縦並びに */
        gap: 12px;
        text-align: center;
        padding: 30px 20px;
    }
    
    .notice-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .notice-banner-img img {
        /* スマホで横長バナーが細くなりすぎないよう最小高さを確保（任意） */
        min-height: 150px; 
        object-fit: cover;
    }
}

/* ==========================================================================
   Reserve Page Specific Styles
   ========================================================================== */


/* --- 予約フォーム全体 --- */
.reserve-form {
    max-width: 800px; /* PCでの窮屈感をなくすため、少し広げました */
    margin: 0 auto;
    background: #fdfdfd;
    padding: 40px;
    border: 1px solid #eee;
    box-sizing: border-box;
}

/* スマホ・タブレット用の調整（ここが重要です） */
@media (max-width: 768px) {
    .reserve-form {
        padding: 25px 15px; /* 左右の余白を削って、入力欄を広く確保 */
        border: none;       /* スマホでは枠線を消してスッキリさせることが多いです */
        background: transparent; /* 背景も親に馴染ませる */
    }
    
    .reserve-event-summary {
        margin: 10px 0 30px;
        padding: 15px;
    }
}

/* --- 入力項目のスタイル（100%を維持） --- */
.reserve-form input[type="text"],
.reserve-form input[type="tel"],
.reserve-form input[type="email"],
.reserve-form select,
.reserve-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 15px; /* 高さを少し出してタップしやすく */
    font-size: 16px !important; /* スマホでズームされないための標準サイズ */
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* --- 予約ボタンエリアの修正 --- */
.form-submit {
    margin-top: 50px;       /* フォーム末尾との間隔を広げる */
    display: flex;          /* Flexboxを使用 */
    justify-content: center; /* 左右中央に配置 */
    width: 100%;            /* 親要素いっぱいの幅を確保 */
}

.form-submit .action-btn {
    width: 100% !important;   /* 基本は全幅 */
    max-width: 400px !important; /* PCでは広がりすぎないように制限 */
    min-height: 60px !important; /* 押しやすい高さ */
    margin: 0 auto !important;   /* 確実に中央に配置 */
    cursor: pointer;
    border: none;
    background: #1a1a1a;
    color: #fff;
    font-size: 1.1rem !important; /* ボタンの文字を少し大きくして強調 */
    border-radius: 4px !important;
    transition: 0.3s;
}

.form-submit .action-btn:hover {
    background: #b08d57; /* ホバー時にブランドカラーへ */
    color: #fff;
}

/* スマホ表示（480px以下）の時の調整 */
@media (max-width: 480px) {
    .form-submit .action-btn {
        max-width: 100% !important; /* スマホでは全幅に */
        font-size: 1rem !important;
    }
}
/* プレースホルダーのスタイル（より優しく控えめな色に） */
::placeholder {
    color: #aaa;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.required { color: #d9534f; font-size: 0.7rem; margin-left: 5px; }
.note { font-size: 0.75rem; color: #888; font-weight: normal; }
.reserve-form input, .reserve-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.animate-in {
    animation: fadeIn 0.4s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.reserve-event-summary {
    display: flex;
    align-items: center; /* 上下中央揃え */
    gap: 20px;
    background: #f9f9f9;
    padding: 20px;
    margin: 20px auto 40px;
    max-width: 600px;
    text-align: left;
    border-left: 4px solid #b08d57;
}

/* 画像があるときのみ幅を固定して表示される */
.summary-thumb {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.summary-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.summary-details {
    flex: 1; /* 残りの幅をすべて使う */
}

.summary-title {
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}
.summary-meta {
    font-size: 0.85rem;
    color: #666;
}

/* アクションエリアのレイアウト調整 */
/* --- アクションカード全体のレイアウト --- */
.action-flex-container {
    display: flex;
    gap: 24px;
    margin: 40px 0;
    justify-content: center;
    flex-wrap: wrap; 
    align-items: flex-start;
}

.action-card {
    flex: 1;
    min-width: 320px; 
    max-width: 450px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.action-card.streaming {
    background: #fffdf9;
    border-color: #f3e9d9;
}

/* --- コンテンツエリア --- */
.card-body-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* --- ボタンエリア --- */
.btn-group-mini {
    display: flex;
    flex-direction: column;
    gap: 12px !important;
    width: 100%;
    align-items: center;
}

.card-btn-adjust, 
.action-card .action-btn-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    box-sizing: border-box;
}

.action-card .action-btn {
    width: 100% !important;
    max-width: 280px !important; 
    min-height: 54px !important;
    margin: 0 auto !important;
    font-size: 0.9rem !important;
    box-sizing: border-box;
    /* 角丸を復活（4px〜6pxが優しい印象に最適です） */
    border-radius: 4px !important; 
}

/* --- テキスト類のセンタリング --- */
.card-title {
    font-size: 1rem;
    color: #b08d57;
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    font-weight: bold;
    width: 100%;
}

.card-desc-text,
.archive-date,
.archive-date-alert {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin: 0 0 10px 0;
    line-height: 1.5;
    width: 100%;
}

.archive-date-alert {
    color: #d9534f;
    font-weight: bold;
}

/* スマホ対応 */
@media (max-width: 680px) {
    .action-card {
        min-width: 100%; 
        max-width: 100%;
    }
}

.status-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.status-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.status-sub-text {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
    text-align: center;
}