/*
Theme Name: Kikaku Live Vol.3
Author: Ohtoro Technology
Description: 企画ライブVol.3 社会人コピーバンドイベント用テーマ
Version: 1.3
*/

/* --- リセット & 基本設定 --- */
:root {
    --main-black: #111;
    --accent-yellow: #FFE600;
    --bg-gray: #f4f4f4;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--main-black);
    background-color: #fff;
    line-height: 1.8;
    font-size: 16px;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
iframe { width: 100%; height: 100%; border: 0; }

/* --- スクロールアニメーション --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- 共通クラス --- */
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.title-wrapper { text-align: center; }
.section-padding { padding: 80px 0; }
.bg-gray { background-color: var(--bg-gray); }

.btn {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--main-black);
    padding: 15px 50px;
    font-weight: 900;
    letter-spacing: 0.1em;
    border: 2px solid var(--main-black);
    box-shadow: 4px 4px 0 var(--main-black);
    font-size: 1rem;
    cursor: pointer;
}
.btn:hover {
    box-shadow: 2px 2px 0 var(--main-black);
    transform: translate(2px, 2px);
}

.sp-br { display: none; }

/* --- ヘッダー --- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    border: 3px solid var(--main-black);
    padding: 5px 10px;
    background: #fff0;
}
nav ul { display: flex; gap: 20px; }
nav a { font-weight: 700; font-size: 0.9rem; }

.fixed-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -10; /* コンテンツの一番後ろ */
    overflow: hidden;
}
.fixed-bg-video video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
/* 動画を少し暗くするフィルター（全ページ共通） */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* 暗さ調整：0.3くらい */
}
/* --- FV (First View) --- */
.hero {
    height: 100vh;
    background: transparent; /* 背景透明 */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* 動画を背景いっぱいに広げる設定（新規追加） */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0; /* 一番後ろ */
    object-fit: cover; /* 画面比率に合わせてトリミング */
}

/* 黒いフィルター（修正） */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); /* 暗さの調整。0.5くらいが文字が見やすいです */
    z-index: 1; /* 動画より手前 */
}

/* コンテンツ（修正） */
.hero-content { 
    position: relative; 
    z-index: 2; /* フィルターより手前（一番前） */
    padding: 0 20px; 
}
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 0 var(--main-black);
}
.hero-vol {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-yellow);
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 var(--main-black);
}
.hero-subtitle { font-size: 1.5rem; margin-bottom: 40px; font-weight: 700; }
.text-yellow { color: var(--accent-yellow); }

/* --- Concept --- */
.concept-text {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 700;
}

/* --- SYSTEM --- */
.system-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}
.flow-box {
    background: #fff;
    border: 3px solid var(--main-black);
    padding: 30px;
    width: 100%;
    text-align: center;
    position: relative;
}
.flow-box.final-stage {
    background: var(--accent-yellow);
    border-color: var(--main-black);
}
.step-label {
    background: var(--main-black);
    color: #fff;
    padding: 2px 10px;
    font-weight: 900;
    font-size: 0.9rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.flow-box h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}
.flow-arrow {
    font-size: 2rem;
    color: var(--main-black);
    font-weight: 900;
}

/* --- Timetable --- */
.timetable-day { margin-bottom: 50px; }
.day-title {
    font-size: 1.5rem;
    background: var(--main-black);
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
    border-left: 10px solid var(--main-black);
}
.day-title.final {
    color: var(--accent-yellow);
    border-left-color: var(--accent-yellow);
}

.schedule-list {
    border-top: 2px solid #eee;
}

.schedule-item {
    display: flex;
    border-bottom: 2px solid #eee;
    padding: 15px 10px;
    align-items: center;
}
.time { width: 80px; font-weight: 900; font-size: 1.1rem; }
.band-name { font-size: 1.2rem; font-weight: 700; }
.copy-artist {
    font-size: 0.9rem;
    color: #666;
    background: #eee;
    padding: 2px 8px;
    margin-left: 10px;
    font-weight: 700;
}
.no-schedule {
    text-align: center;
    padding: 20px;
    color: #777;
    font-weight: 700;
}

/* --- Access --- */
.access-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.venue-box {
    background: #fff;
    border: 3px solid var(--main-black);
}
.venue-box.final { border-color: var(--accent-yellow); }
.venue-info { padding: 30px; }
.venue-type {
    background: var(--main-black);
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    font-weight: 700;
    margin-bottom: 15px;
}
.venue-type.final { background: var(--accent-yellow); color: var(--main-black); }
.venue-name { font-size: 1.5rem; font-weight: 900; margin-bottom: 10px; }
.venue-dates ul { margin-bottom: 15px; font-weight: 700; padding-left: 20px; }
.venue-dates li { list-style: disc; margin-bottom: 5px; }
.venue-address { font-size: 0.9rem; color: #555; }
.map-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-top: 3px solid var(--main-black);
}
.map-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.ticket-info {
    text-align: center;
    background: var(--main-black);
    color: #fff;
    padding: 40px;
    margin-top: 50px;
}
.price-big { font-size: 3rem; font-weight: 900; line-height: 1; color: var(--accent-yellow); }

/* --- NEXT LIVE --- */
.next-live-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.next-live-box {
    text-align: center;
    padding: 50px 20px 30px;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.next-live-box.standard {
    border: 3px solid var(--main-black);
}
.next-live-box.enjoy {
    border: 3px dashed var(--main-black);
}
.box-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--main-black);
    color: #fff;
    padding: 5px 15px;
    font-weight: 900;
    font-size: 0.9rem;
    white-space: nowrap;
}
.box-badge.enjoy-badge {
    background: #fff;
    color: var(--main-black);
    border: 2px solid var(--main-black);
}
.box-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}
.box-desc {
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 700;
    flex-grow: 1;
}
.btn-next {
    background: var(--main-black);
    color: #fff;
    border-color: var(--main-black);
    box-shadow: none;
    width: 100%;
    max-width: 250px;
}
.btn-next:hover {
    background: #fff;
    color: var(--main-black);
    box-shadow: 2px 2px 0 var(--main-black);
}
.btn-next.btn-enjoy {
    background: #fff;
    color: var(--main-black);
}
.btn-next.btn-enjoy:hover {
    background: var(--main-black);
    color: #fff;
}

/* --- Recruit --- */
.recruit-section {
    text-align: center;
    padding: 60px 20px;
    border-top: 3px solid var(--main-black);
}
.recruit-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

/* --- Footer --- */
footer {
    background: var(--main-black);
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

/* --- スマホ用調整 --- */
@media (max-width: 768px) {
    body { font-size: 14px; }
    .sp-br { display: block; }
    .hero-title { font-size: 1.8rem; margin-bottom: 15px; }
    .hero-vol { font-size: 1.2rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 30px; }
    .section-title { font-size: 1.5rem; margin-bottom: 30px; }
    .access-container { grid-template-columns: 1fr; gap: 30px; }
    nav { display: none; }
    
    .schedule-item { 
        flex-direction: column; 
        align-items: flex-start; 
    }
    .band-name { 
        font-size: 1rem; 
        display: block; 
    }
    .copy-artist { 
        display: inline-block;
        margin-left: 0; 
        margin-top: 5px; 
        font-size: 0.8rem; 
    }

    .venue-info { padding: 20px; }
    .venue-name { font-size: 1.2rem; }
    .venue-type { font-size: 0.8rem; padding: 3px 10px; }
    .btn { width: 100%; text-align: center; padding: 12px 10px; font-size: 0.9rem; }
    .price-big { font-size: 2.2rem; }
    
    .next-live-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- コンテンツ背景の半透明化 --- */

/* body自体の背景は透明に */
body {
    background-color: transparent; 
}

/* 通常セクション（白背景だった部分） */
/* rgba(255, 255, 255, 0.85) = 白の85%不透明度 */
.section-padding {
    background-color: rgba(255, 255, 255, 0.85);
    /* セクションの境目を見やすくするために少し余白調整 */
    margin-bottom: 0; 
}

/* グレー背景だった部分 */
/* rgba(244, 244, 244, 0.9) = 薄グレーの90%不透明度 */
.bg-gray {
    background-color: rgba(244, 244, 244, 0.9);
}

/* 補足：各ボックス（.flow-box, .venue-box等）の背景も
   透けさせたい場合はここも rgba に変更します。
   今回は読みやすさ重視でボックスの中は不透明(#fff)のままにしておきますが、
   もしボックスも透けさせたい場合は以下のようにしてください。
*/
/* .flow-box, .venue-box, .next-live-box {
    background: rgba(255, 255, 255, 0.9);
} 
*/