/* --- 変数設定 --- */
:root {
    --black: #000000;
    --white: #ffffff;
    --accent-pink: #ff00ff;
    --accent-blue: #00d4ff;
    --gray-dark: #111111;
    --gray-light: #f4f4f4;
    --line-green: #06C755;
}

/* --- リセット & 基本設定 --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 固定ヘッダー --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-logo {
    /* テキストスタイル削除 */
}

/* 新規追加：ロゴ画像用スタイル */
.header-logo img {
    height: 24px; /* テキストロゴと同様の視覚的サイズになるように調整 */
    width: auto;
}

/* --- ヒーローセクション演出 --- */
.hero {
    position: relative;
    margin-top: 50px; /* ヘッダー分のマージン */
    padding: 40px 20px 30px; /* 上80px→40px、下60px→30pxに半減 */
    background-color: var(--black);
    text-align: center;
    min-height: 50vh; /* 80vhから50vhに下げて余白を圧縮 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 疾走感：スピードライン */
.speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.1) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: speedMove 1.5s linear infinite;
}

@keyframes speedMove {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* デジタル感：スキャンライン */
.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0.03) 50%, transparent 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
}

/* ロゴパネル演出（白背景を活かす） */
.logo-panel {
    display: inline-block;
    /* background: #fff; */
    padding: 10px;
    box-shadow: 0 0 25px var(--accent-pink), 0 0 50px var(--accent-blue);
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
    margin-bottom: 30px;
   /* animation: gltichFloat 4s ease-in-out infinite; */
}

@keyframes gltichFloat {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}

.hero-logo {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
}

.hero-text {
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.hero-text p {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s forwards;
}

.hero-text .accent-glow {
    color: var(--accent-blue);
    font-weight: bold;
    text-shadow: 0 0 8px var(--accent-blue);
    font-size: 1.1rem;
    margin: 15px 0;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- CTA エリア --- */
.cta-area {
    padding: 40px 20px;
    background: linear-gradient(to bottom, var(--black), #222);
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 4px;
    font-size: 1rem;
    transition: 0.3s;
    letter-spacing: 0.1em;
}

.btn-ticket {
    background-color: var(--black);
    color: var(--white);
    border: 2px solid var(--accent-pink);
    box-shadow: 4px 4px 0 var(--accent-blue);
}

.btn-ticket:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}

.btn-line {
    background-color: var(--line-green);
    color: var(--white);
}

.homepage {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.btn-hp {
    background-color: var(--black);
    color: var(--white);
    border-radius: 4px;
    padding: 10px 20px;
}

/* --- コンセプト --- */
.concept {
    padding: 80px 20px;
    text-align: center;
    background: var(--white);
}

.section-title {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 800;
}

.text-accent {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.concept-text {
    font-size: 0.9rem;
    color: #555;
}

/* --- アーティスト（モバイルファースト：画像40%） --- */
.lineup {
    padding: 60px 20px;
    background-color: var(--gray-light);
}

.lineup-title {
    font-size: 2.8rem;
    text-align: center;
    font-weight: 900;
    margin-bottom: 40px;
    font-style: italic;
    letter-spacing: -0.05em;
}

.artist-card {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.artist-image {
    flex: 0 0 40%;
}

.artist-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 1px solid var(--black);
}

.artist-name {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 5px;
    border-left: 4px solid var(--accent-pink);
    padding-left: 10px;
}

.artist-bio {
    font-size: 0.75rem;
    color: #444;
    text-align: justify;
}

/* --- イベント情報 --- */
.info {
    padding: 60px 20px;
    background-color: var(--black);
    color: var(--white);
}

.info-title {
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.2em;
    font-weight: 900;
}

.info-list {
    max-width: 500px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    border-bottom: 1px solid #333;
    padding: 20px 0;
}

.info-item dt {
    width: 30%;
    font-weight: bold;
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.info-item dd {
    width: 70%;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- 会場地図セクション用スタイル --- */
.venue-map {
    padding: 60px 20px;
    text-align: center;
}
/* 住所テキストのスタイル */
.venue-name {
    font-weight: bold;
    color: var(--accent-blue); /* ロゴに合わせた青 */
    font-size: 1.1rem;
}

.address-link {
    color: var(--white);
    text-decoration: underline;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

/* マップのコンテナ */
.map-wrapper {
    margin-top: 10px;
    width: 100%;
    border: 1px solid #333; /* 暗めのボーダー */
    line-height: 0; /* 下部の余計な隙間を消す */
    filter: grayscale(0.5) contrast(1.1); /* 少し彩度を落としてサイトに馴染ませる */
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2); /* 青い微光 */
}

.map-wrapper iframe {
    vertical-align: bottom;
}

/* モバイルでの見栄え調整（既存のinfo-itemを上書き） */
.info-item dd {
    flex-direction: column; /* 住所と地図を縦に並べる */
    align-items: flex-start;
}
.map-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.map-container {
    max-width: 600px;
    margin: 0 auto;
}

/* --- 最終CTA & フッター --- */
.final-cta {
    padding: 80px 20px;
    background-color: var(--white);
}

.footer {
    padding: 40px 20px;
    text-align: center;
    font-size: 0.7rem;
    color: #aaa;
    background: var(--gray-dark);
}

/* --- レスポンシブ（デスクトップ） --- */
@media (min-width: 768px) {
    .artist-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        max-width: 1000px;
        margin: 0 auto;
    }
    .hero-logo { max-width: 600px; }
    .cta-container { flex-direction: row; max-width: 600px; }
    .btn { flex: 1; }
}