        /* ==========================================================================
    1. 基本設定 / 変数
========================================================================== */
:root {
    --layout-sidebar-width: 220px;
    --layout-sidebar-width-tab: 200px;
    --color-bg-gradient: linear-gradient(135deg, #031119, #10567F);
    --color-nav-text-gradient: linear-gradient(to right, #ADC7E0, #FFFFFF);
    --font-family-base: "Jost", "Noto Sans JP", sans-serif;
    --color-accent-red: #E60012;

    /* Breakpoints */
    --bp-pc-min: 1025px;
    --bp-tab-max: 1024px;
    --bp-tab-min: 768px;
    --bp-sp-max: 767px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-base);
    background: var(--color-bg-gradient);
    background-attachment: fixed;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

a:not(.global-nav__link) {
    transition: opacity 0.2s ease;
}

a:not(.global-nav__link):hover {
    opacity: 0.7;
}

.seo-text {
    display: none;
}

/* ==========================================================================
    2. レイアウト
========================================================================== */
.layout {
    display: flex;
    width: 100%;
}

.layout__sidebar {
    width: var(--layout-sidebar-width);
    flex-shrink: 0;
    padding: 25px 25px;
}
@media (min-width: 768px) and (max-width: 1024px) {
    .layout__sidebar {
        width: var(--layout-sidebar-width-tab);
    }
}

.layout__main {
    flex-grow: 1;
    min-width: 0;
}

@media (max-width: 767px) {
    .layout {
        flex-direction: column;
    }

    .layout__main {
        order: -1;
    }

    .layout__sidebar {
        order: 0;
        width: 100%;
    }

    #news-desktop {
        padding: 0 !important;
    }
}

/* ==========================================================================
    3. サイドヘッダー
========================================================================== */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 25px;
}
/* @media (min-width: 768px) and (max-width: 1024px) {
    .sidebar-header {
        flex-direction: column;
        gap: 25px;
    }
} */
@media (max-width: 767px) {
    .sidebar-header {
        flex-direction: column;
        gap: 25px;
    }
}

/* ==========================================================================
    4. グローバルナビ
========================================================================== */
.global-nav {
    flex: 1;
}

.global-nav__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}

@media (max-width: 767px) {
    .global-nav__list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.global-nav__item {
    list-style: none;
}

@media (max-width: 767px) {
    .global-nav__item {
        display: inline-block;
    }
}

.global-nav__link {
    /* display: block; */
    line-height: 0.9;
    text-decoration: none;
}

.global-nav__label-en {
    display: inline-block;
    font-size: 45px;
    font-weight: 600;
    letter-spacing: -.5px;
    background: var(--color-nav-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform-origin: center center;
    transition: transform 0.2s ease-out, filter 0.3s ease;
}

.global-nav__label-jp {
    display: block;
    margin-top: 1px;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #aba9be;
}

.global-nav__link:hover .global-nav__label-en {
    animation: global-nav-slash 0.2s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
}

@keyframes global-nav-slash {
    0% {
        transform: skewX(0deg);
        opacity: 1;
        filter: brightness(1);
    }
    30% {
        transform: skewX(-45deg);
        opacity: 0.3;
        filter: brightness(2.8);
    }
    60% {
        transform: skewX(45deg);
        opacity: 0.3;
        filter: brightness(2.8);
    }
    85% {
        transform: skewX(-15deg);
        opacity: 0.3;
        filter: brightness(2.8);
    }
    100% {
        transform: skewX(0deg);
        opacity: 1;
        filter: brightness(1.3);
    }
}

/* ==========================================================================
    5. スクエアバナー
========================================================================== */
.square-banner-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 767px) {
    .square-banner-list {
        width: 100%;
        flex-direction: row;
        gap: 10px;
    }
}

.square-banner-list__item {
    width: 100%;
}

@media (max-width: 767px) {
    .square-banner-list__item {
        flex: 1 1 0;
    }
}

.square-banner-list__image {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 767px) {
    .square-banner-list__image {
        width: 50%; /* 1つの場合 */
    }
}

/* ==========================================================================
    6. SNS
========================================================================== */
.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    list-style: none;
}

.social-links__item {
    list-style: none;
}

.social-links__link {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.social-links__icon {
    width: 25px;
    height: 25px;
    fill: #fff;
}

/* ==========================================================================
    7. 共通ラベル
========================================================================== */
h2.section-label,
.info-peco h2 {
    margin-bottom: 10px;
    padding-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* h2.section-label {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
} */

/* ==========================================================================
    8. 共通バナー
========================================================================== */
.banner-list {
    display: flex;
    flex-direction: column; /* 縦並び */
    gap: 10px;
}
@media (max-width: 767px) {
    .banner-list {
        flex-direction: row;    /* 横並びに変更 */
        overflow-x: auto;       /* 横にはみ出る場合はスクロールできるようにする */
        white-space: nowrap;    /* 中身を折り返さない設定 */
    }
}

.banner-list__link {
    display: block;
    /* overflow: hidden; */
}

.banner-list__image {
    display: block;
    width: 100%;
    height: auto;
    /* object-fit: cover; */
}


/* ==========================================================================
    10. チケット・番組サイト
========================================================================== */
.promo-panels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .promo-panels {
        gap: 10px;
    }
}


.promo-panels__tickets,
.promo-panels__tv-site {
    flex: none;
    width: 100%;
    min-width: 0;
}

@media (max-width: 767px) {
    .promo-panels__tv-site {
        margin-top: 20px;
    }
}



.promo-panels__tickets h3 {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
    margin-top: 10px;
}

.promo-panels__tickets .banner-list,
.promo-panels__tv-site .banner-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 767px) {
    .promo-panels__tickets .banner-list,
    .promo-panels__tv-site .banner-list {
        flex-direction: row;
    }
}

.promo-panels__tickets .banner-list__link,
.promo-panels__tv-site .banner-list__link,
.promo-panels__tv-site .program-banner {
    flex: 1 1 0;
}

/* ==========================================================================
    11. 番組サイト専用バナー
========================================================================== */
.program-banner {
    display: block;
    width: 100%;
}

.program-banner__image {
    display: block;
    width: 100%;
    height: auto;
    /* object-fit: cover; */
}

/* ==========================================================================
    12. 入場者特典 + お知らせ (peco)
========================================================================== */


.contents-wrapper {
    display: flex;
    flex-direction: row;;
    gap: 20px;
    align-items: flex-start;
    padding-top: 20px;
}

@media (max-width: 767px) {
    .contents-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

/* 入場者特典 */
.admission-benefit {
    width: 300px;
}
@media (max-width: 767px) {
    .admission-benefit {
        width: 100%;
        padding: 20px 20px 0;
    }
    
}







.news {
    flex: 1;
    width: 100%;
}

.news--desktop {
}

@media (min-width: 768px) and (max-width: 1024px) {
    .news--desktop {
        padding-top: 32px;
    }
}

.news--mobile {
    padding: 0;
    margin-top: 20px;
}

/* @media (max-width: 767px) {
    .news--mobile {
        margin-top: 24px;
    }
} */

.news .info-peco {
    padding: 0 !important;
}

/* .info-peco h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
} */

@media (max-width: 767px) {
    .info-peco h2 {
        margin-bottom: 16px;
        font-size: 15px;
    }
}

.info-peco h2 span {
    display: none;
}

.info-peco .wrapper ul {
    display: flex;
    flex-wrap: wrap;
    gap: 34px 22px;
    list-style: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .info-peco .wrapper ul {
        gap: 28px 18px;
    }
}

@media (max-width: 767px) {
    .info-peco .wrapper ul {
        display: flex;
        flex-wrap: wrap;
        gap: 18px 12px;
    }
}

.info-peco .wrapper li {
    width: 220px;
    min-width: 220px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .info-peco .wrapper li {
        width: 180px;
        min-width: 180px;
    }
}

@media (max-width: 767px) {
    .info-peco .wrapper li {
        width: calc((100% - 12px) / 2);
        min-width: 0;
        padding-bottom: 0;
        border-bottom: 0;
    }
}

.info-peco .wrapper li a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.info-peco .wrapper li a dl {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-peco .wrapper li a dl dt {
    margin: 0 0 5px;
    background: #000;
    overflow: hidden;
}

.info-peco .wrapper li a dl dt img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.info-peco .wrapper li a dl dd {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    min-width: 0;
}

.info-peco .ctg {
    margin: 0;
}

.info-peco .ctg span {
    display: inline-block;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    background: var(--color-accent-red);
    color: #fff;
}

.info-peco .date {
    margin: 0;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.72);
}

.info-peco .date span {
    display: inline-block;
}

.info-peco .txt {
    width: 100%;
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    -webkit-box-orient: vertical;
}

@media (max-width: 767px) {
    .info-peco .txt {
        font-size: 12px;
        line-height: 1.6;
    }
}


/* ==========================================================================
    13. ヒーロー + dialogモーダル
========================================================================== */
.stage__board {
	position: relative;
	width: 100%;
	aspect-ratio: 1000 / 562;
	overflow: hidden;
	background: #000;
}

/* TAB */
@media (min-width: 768px) and (max-width: 1024px) {
	.stage__board {
		aspect-ratio: 1778 / 1000;
	}
}

/* SP */
@media (max-width: 767px) {
	.stage__board {
		aspect-ratio: 1000 / 1413;
	}
}

.loading-screen {
	position: absolute;
	inset: 0;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: transparent;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.loader-spinner {
	width: 40px;
	height: 40px;
	margin-bottom: 12px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-top: 3px solid #fff;
	border-radius: 50%;
	animation: heroLoadingSpin 1s linear infinite;
}

@keyframes heroLoadingSpin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.stage__layer {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform-origin: left top;
	pointer-events: none;
}

.stage__layer img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}


/* modal出現 */
dialog.video-modal {
    width: min(92vw, 960px);
    max-width: 960px;
    padding: 0;
    border: none;
    background: transparent;
    overflow: visible;
    margin: auto;
}

dialog.video-modal[open] {
    position: fixed;
    inset: 0;
    margin: auto;
}

dialog.video-modal::backdrop {
    background: rgba(0, 0, 0, 0.82);
}

.video-modal__inner {
    position: relative;
    /* background: #000; */
    overflow: hidden;
}

.video-modal__tabs {
    padding-bottom: 10px;
}

.video-modal__tabs button {
    min-width: 60px;
    height: 30px;
    border: 0;
    border-radius: 3px;
    margin-right: 5px;
    background-color: #657e8d;
    cursor: pointer;
}
.video-modal__tabs button:hover,
.video-modal__tabs .is-active {
    font-weight: bold;
    background-color: #fff;
}


.video-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.82);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.video-modal__body {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-modal__body iframe,
#videoMount iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
    14. フッター
========================================================================== */
.site-footer {
    padding: 10px 30px 30px;
    text-align: right;
}

@media (max-width: 767px) {
    .site-footer {
        padding: 0 30px 30px;
        text-align: center;
    }
}
.site-footer__copyright {
    margin-top: 15px;
    font-size: 9px;
    line-height: 1.4;
    opacity: 0.5;
}


/* ==========================================================================
    15. 下層ページ共通
========================================================================== */

    .subpage-content {
        min-height: 100vh;
        position: relative;
        padding: 0 50px 50px 50px;
        background-color: rgba(3, 27, 41, 0.5);
    }
    .subpage-content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--color-nav-text-gradient);
    }

    .subpage-content__header {
        position: relative;
        padding: 55px 0 50px;
    }

    .subpage-content__title {
        display: inline-block;
        font-size: 70px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: -.5px;
        background: var(--color-nav-text-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        transform-origin: center center;
        transition: transform 0.2s ease-out, filter 0.3s ease;
    }

    .subpage-content__sections {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .content-block {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 800px;
    }

    .content-block__image {
        background: #000;
        overflow: hidden;
    }

    .content-block__image img {
        display: block;
        width: 100%;
        height: auto;
    }

    .content-block__body {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .content-block__title {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: 0.04em;
    }

    .content-block__text {
        font-size: 14px;
        line-height: 1.9;
        color: rgba(255, 255, 255, 0.9);
    }

    .content-block__text span {
        background-color: #E60012;
        padding: 1px 4px;
        font-size: 12px;
        margin-right: 5px;
        border-radius: 2px;
    }

    /* リスト */
    .notes-list {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin: 5px 0 0;
        padding: 0;
        list-style: none;
    }

    .notes-list li {
        font-size: 12px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.8);
    }

    @media (max-width: 767px) {
        .subpage-content {
            min-height: inherit;
            padding: 0 20px 20px 20px;
        }

        .subpage-content__header {
            padding: 30px 0 25px;
        }

        .subpage-content__title {
            font-size: 50px;
        }

        .subpage-content__sections {
            gap: 28px;
        }

        .content-block {
            gap: 14px;
        }

        .content-block__title {
            font-size: 20px;
            line-height: 1.4;
        }

        .content-block__text {
            font-size: 13px;
            line-height: 1.8;
        }
    }





