/* =========================================
   5. Concept Movie (動画セクション)
========================================= */

/* --- レイアウト・コンテナ --- */
.concept-movie {
    padding: 40px 20px 20px;
    background-color: var(--bg-base);
}

.movie-container {
    max-width: 800px;
    margin: 0 auto;
}

/* --- 動画ラッパー（16:9比率キープ） --- */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 3px solid #fff;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- ダミー動画エリア --- */
.dummy-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* ⭕️ YouTubeのサムネイル画像のURLを指定する */
    background: url('https://img.youtube.com/vi/SGp6tvWLYSo/maxresdefault.jpg') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* ダミー画像にかける暗いフィルター */
.dummy-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* 再生ボタン */
.play-btn {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    padding-left: 4px; /* 三角形の中央揃え微調整 */
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
    transition: transform 0.2s;
}

/* ダミー動画下のキャプション */
.movie-caption {
    text-align: center;
    margin-top: 15px;
    font-weight: 700;
    color: var(--primary-orange);
    font-size: 13px;
}

/* =========================================
   動画直下 CTA（申し込みボタン）エリア
========================================= */

.movie-cta-wrap {
    margin-top: 50px;
    text-align: center;
    padding: 0 20px;
}

/* ボタン上のマイクロコピー（＼飲み会1回分で〜／など） */
.movie-cta-lead {
    font-size: 16px;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

/* --- 共通ボタンデザイン (.btn-primary) --- */
.btn-primary {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff8a00 0%, #ff5200 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px 40px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* 重複していたフォント設定をここに統合しました！ */
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

/* ボタンホバー時の浮き上がり */
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 122, 0, 0.5);
}

/* ボタン内のサブテキスト（月額2,980円で〜） */
.btn-primary .btn-sub {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
    opacity: 0.9;
}

/* ボタンのキラッと光るエフェクト（コンバージョン率UP） */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -60%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

/* =========================================
   スマホ用レスポンシブ調整
========================================= */
@media (max-width: 767px) {
    .movie-cta-lead {
        font-size: 14px;
    }
    .btn-primary {
        font-size: 18px;
        padding: 12px 20px 15px;
    }
    .btn-primary .btn-sub {
        font-size: 11px;
    }
}

/* --- ダミー動画エリア --- */
.dummy-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* ⭕️ これが最高画質のサムネイルを指定する魔法！ */
    background: url('https://img.youtube.com/vi/SGp6tvWLYSo/maxresdefault.jpg') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1; /* 動画より上に表示 */
}

/* ダミー画像にかける暗いフィルター */
.dummy-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* 再生ボタン */
.play-btn {
    position: relative;
    z-index: 2; /* フィルターより上に表示 */
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    padding-left: 4px; /* 三角形の中央揃え微調整 */
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
    transition: transform 0.2s;
}

/* ホバーした時に少し大きくする */
.dummy-video:hover .play-btn {
    transform: scale(1.1);
}