@charset "utf-8";

:root {

    /* ======================================================
       Font
    ====================================================== */
    --font-base: "Noto Sans JP", sans-serif;
    --font-title: "trust-3a", "Noto Sans JP", sans-serif;

    /* ======================================================
       Colors
    ====================================================== */
    /* Primitive (数値そのもの) */
    --color-black: #231815;
    --color-gray: #b1b1b1;
    --color-white: #ffffff;

    --color-pink: #EC79A6;
    --color-pink-light: #FFF6FA;

    /* Semantic (用途固定) */
    --color-loader: var(--color-black);

    --color-bg-primary: var(--color-pink-light);
    --color-bg-inBox: var(--color-black);
    --color-bg-section: var(--color-white);
    --color-nav-bg: var(--color-white);
    
    --color-text-primary: var(--color-black);
    --color-text-inBox: var(--color-white);
    --color-text-section: var(--color-black);
    --color-text-accent: var(--color-pink);
    --color-nav-text: var(--color-black);

    /* Component (UI) */
    --color-btn-bg: var(--color-pink);
    --color-btn-bg-sub: var(--color-black);
    --color-btn-text: var(--color-white);
    --color-btn-disabled: var(--color-gray);

    --color-tag-bg: var(--color-pink);
    --color-tag-text: var(--color-white);
    --color-tag-bg-secondary: var(--color-white);
    --color-tag-text-secondary: var(--color-pink);

    --color-accordion-bg: var(--color-pink);
    --color-accordion-text: var(--color-white);

    /* ======================================================
       4px Grid (spacing)
    ====================================================== */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;

    /* ======================================================
       Section専用スケール (ページレイアウト用)
    ====================================================== */
    --section-ratio-last: 1.5;  
    --section-base-pc: calc(var(--space-16) * 3);
    --section-base-sp: calc(var(--space-16) * 1);
    --section-base-last-pc: calc(var(--section-base-pc) * var(--section-ratio-last));
    --section-base-last-sp: calc(var(--section-base-sp) * var(--section-ratio-last));

    /* ======================================================
       Radius
    ====================================================== */
    --radius-s: 4px;
    --radius-m: 8px;
    --radius-full: 9999px; /* 完全円形用 */

    /* ======================================================
       Z-index - 基本レイヤー
    ====================================================== */
    --z-background: -1;     /* 背景 */
    --z-base: 1;            /* 通常コンテンツ */
    --z-content: 10;        /* メインコンテンツ */
    --z-footer: 20;         /* フッター */
    --z-nav: 40;            /* ナビゲーション */
    --z-nav-btn: 41;        /* ナビゲーションボタン */
    --z-loader: 100;        /* ローダー */

}



/*===================================================
  anim
====================================================*/
.js .loader {
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--color-loader);
    z-index: var(--z-loader);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.js .loaded .loader {
    will-change: clip-path;
    animation: clipAnim 1s cubic-bezier(0.77, 0, 0.175, 1) both;
    animation-delay: 0.5s;
}
@keyframes clipAnim {
  to {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}

.js .mainWrap .anim.fadeX,
.js .mainWrap .anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.js .mainWrap .anim.fadeX {
    transform: translateX(24px);
}
.js .mainWrap .anim.fadeY {
    transform: translateY(24px);
}
.js .mainWrap .anim.fadeX.on,
.js .mainWrap .anim.fadeY.on {
    opacity: 1;
}
.js .mainWrap .anim.fadeX.on {
    transform: translateX(0px);
}
.js .mainWrap .anim.fadeY.on {
    transform: translateY(0px);
}

@media screen and (max-width: 960px){}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    position: fixed;
    z-index: var(--z-background);
    inset: 0;
    min-height: 600px;
    background: var(--color-bg-primary);
    overflow: hidden;
    pointer-events: none;
}
.bgBox > * {
    position: absolute;
}
.bgBox .bg {
    inset: 0;
    top: 0;
    left: 0;
}
.bgBox .bg01 {
    background-image: url(/static/equallove/official/feature/stadium_2026/image/bg_zrkhifbv.png);
    background-size: 160px;
    animation: bgAnim 30s linear infinite;
    -webkit-animation: bgAnim 30s linear infinite;
    opacity: 0.05;
}
@keyframes bgAnim {
	0% {background-position: 0 0;}
	100% {background-position: 160px 227px;}
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    .bgBox {
        min-height: 450px;
    }
    .bgBox .bg {}
    .bgBox .bg01 {
        background-size: 96px;
        animation: bgAnim_sp 24s linear infinite;
        -webkit-animation: bgAnim_sp 24s linear infinite;
    }

    @keyframes bgAnim_sp {
        0% {background-position: 0 0;}
        100% {background-position: 96px 136.2px;}
    }

}



/*===================================================
    nav
====================================================*/
.hamBtn {
    position: fixed;
    z-index: var(--z-nav-btn);
    display: block;
    background: var(--color-btn-bg-sub);
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    transition: all .3s ease;
    cursor: pointer;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 25%;
    width: 50%;
    height: 2px;
    background: var(--color-btn-text);
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: var(--space-3);
}
.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn :nth-of-type(3) {
    bottom: var(--space-3);
}
.hamBtn.open span {}
.hamBtn.open span:nth-of-type(1) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
}
.hamBtn.open span:nth-of-type(2) {
    opacity: 0;
}
.hamBtn.open span:nth-of-type(3) {
    transform: translateY(50%) rotate(45deg);
    bottom: 50%;
}

.navigation {
    z-index: var(--z-nav);
    position: fixed;
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	transition: all 0.5s ease-out;
}
.navigation.active {
    opacity:1;
    pointer-events:auto;
    transition: opacity 0.5s ease;
}

.navigation .headerNavBox {
    background: var(--color-nav-bg);
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    transition: all 0.5s ease;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    flex-direction: row;
}
.navigation .headerNavBox .headerNav {}

.navigation .heroNavLogo {
    width: 80%;
    max-width: 360px;
    margin: 0 var(--space-20) 0 0;
}

.navigation .headerNav li {
    position: relative;
    padding: 0;
    margin: 0 0 var(--space-4);
    line-height: 1;
    color: var(--color-text-accent);
}
.navigation .headerNav li:nth-last-child(2) {
    margin-bottom: var(--space-8);
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li a {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.navigation .snsList {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-6);
}
.navigation .snsList .menuList {
	display: flex;
    gap: var(--space-4);
}
.navigation .snsList .navListTit {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-family: var(--font-title);
    letter-spacing: 0.03em;
    text-decoration: none;
    padding-top: 2px;
}
.navigation .snsList .menuList li {
    margin-bottom: 0;
}
.navigation .snsList .menuList .menu_icon a i,
.navigation .shareList .menu_icon a i {
   font-size: 24px;
}

@media screen and (min-width: 961px) {

	.navigation .headerNav a:hover {
		opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

	.navigation .headerNav {
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-position: top center;
	    overflow: hidden;
	    object-fit: cover;
	}

    .navigation .headerNavBox {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .navigation .heroNavLogo {
        width: 60%;
        max-width: 240px;
        margin: 0px 0 var(--space-8);
    }
    .navigation .headerNav li {
        margin: 0 0 var(--space-4)
    }
    .navigation .headerNav li a {
        font-size: 24px;
    }
    .navigation .headerNav li:nth-last-child(2) {
        margin: 0 0 var(--space-6);
    }
    .navigation .headerNav .menuList li:nth-last-child(2){
        margin: 0;
    }

    .navigation .snsList {
        justify-content: center;
    }

    .navigation .snsList .navListTit {
        font-size: 16px;
    }
    .navigation .snsList .menuList .menu_icon a i, 
    .navigation .shareList .menu_icon a i {
        font-size: 20px;
    }

}



/*===================================================
	all
====================================================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--space-20);
    background: var(--color-bg-primary);
}

body {
    background: var(--color-bg-primary);
}

.mainWrap {
    position: relative;
    z-index: var(--z-base);
    font-family: var(--font-base);
	font-size: 16px;
    color: var(--color-text-primary);
    line-height: 1.5;
    padding: 0 0 var(--space-12);
    overflow: hidden;
}
.mainWrap img {
	display: block;
}

.container {
    position: relative;
    z-index: var(--z-content);
}

section {
    padding-bottom: var(--section-base-pc);
}
section:last-of-type {
    padding-bottom: var(--section-base-last-pc);
}

h3 {
    position: relative;
    width: 90%;
    max-width: 1200px;
    color: var(--color-text-accent);
    font-family: var(--font-title);
    font-size: 96px;
    font-weight: 500;
    line-height: 0.8;
    margin: 0 auto var(--space-12);
    word-break: break-all;
    text-align: center;
}

.inBoxWrap {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto var(--space-6);
}
.inBoxWrap:last-of-type {
    margin-bottom: 0;
}
.inBoxWrap .inBoxFrame {
    position: relative;
    line-height: 0;
}
.inBoxWrap .inBoxFrame.top {top: 1px;}
.inBoxWrap .inBoxFrame.bottom {bottom: 1px;}
.inBoxWrap .inBox {
    position: relative;
    z-index: 1;
    color: var(--color-text-inBox);
    padding: var(--space-4) 8%;
    background: url(/static/equallove/official/feature/stadium_2026/image/frame_02_zrkhifbv.svg);
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 100% auto;
}

.inBox .mainLead p {
    margin-bottom: var(--space-4);
}
.inBox .mainLead p:last-child {
    margin-bottom: 0;
}

.inBox .inBoxTit {
    margin: 0 0 var(--space-12); 
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}

.inBox .txtBox {
    margin: 0 0 var(--space-8);
    padding: 0 0 var(--space-8);
    border-bottom: 1px solid;
}
.inBox .txtBox:last-of-type {
    margin: 0 0 var(--space-10);
    padding: 0;
    border-bottom: none;
}
#contact .inBox .txtBox:last-of-type {
    margin-bottom: 0;
}
.inBox .txtBox .boxTit {
    display: inline-block;
    background: var(--color-tag-bg);
    font-weight: bold;
    padding: 0.25em 1em;
    margin: 0 0 var(--space-3)
}
.inBox .txtBox .boxTxt {
    margin-bottom: var(--space-2);
}
.inBox .txtBox .boxTxt:last-of-type {
    margin-bottom: 0;
}
.inBox .txtBox .boxTxt p {
    margin-bottom: var(--space-1);
}
.inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}
.inBox .txtBox .boxTxt p.note {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
}
.inBox .txtBox .boxTxt a {
    text-decoration: underline;
}

.inBox .btn a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: var(--space-6) var(--space-10);
    color: var(--color-btn-text);
    background: var(--color-btn-bg);
    border: 1px solid var(--color-btn-bg);
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-radius: var(--radius-full);
    line-height: 1;
}
.inBox .btn a i {
    position: absolute;
    display: flex;
    right: var(--space-3);
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 14px;
    background: var(--color-btn-text);
    color: var(--color-btn-bg);
    width: 24px;
    aspect-ratio: 1 / 1;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-full);
}
.inBox .btn.fin a {
	background: var(--color-btn-disabled);
    border: 1px solid var(--color-btn-disabled);
    pointer-events: none;
}

.soon {
    padding: var(--space-8) 0;
    font-size: 24px; 
    font-weight: bold;
    text-align: center;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a, i {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	.inBox .btn a:hover {
        color: var(--color-btn-bg);
        background: var(--color-btn-text);
        border: 1px solid var(--color-btn-bg);
	}
    .inBox .btn a:hover i {
        background: var(--color-btn-bg);
        color: var(--color-btn-text);
    }
	
}

@media screen and (max-width: 960px){

	.pc {
		display: none;
	}
	
	html {
	    scroll-padding-top: var(--space-12);
	}

    .mainWrap {
        font-size: 14px;
    }

    section {
        padding-bottom: var(--section-base-sp);
    }
    section:last-of-type {
        padding-bottom: var(--section-base-last-sp);
    }

    h3 {
        font-size: clamp(16px, 12vw, 48px);
        line-height: 1;
        margin-bottom: var(--space-4);
    }

    .inBoxWrap {
        margin-bottom: var(--space-4);
    }
    .inBoxWrap .inBox {
        padding: var(--space-2) 8%;
        background: url(/static/equallove/official/feature/stadium_2026/image/frame_02_sp_zrkhifbv.svg);
        background-position: center top;
        background-repeat: repeat-y;
        background-size: 100% auto;
    }

    .inBox .mainLead p {
        margin-bottom: var(--space-3);
    }

    .inBox .inBoxTit {
        font-size: 18px;
        margin: 0 0 var(--space-6);
    }

    .inBox .txtBox {
        margin: 0 0 var(--space-6);
        padding: 0 0 var(--space-6);
    }
    .inBox .txtBox:last-of-type {
        margin: 0 0 var(--space-6);
    }
    .inBox .txtBox .boxTit {
        font-size: 14px;
    }
    .inBox .txtBox .boxTxt p.note {
        font-size: 12px;
    }

    .inBox .btn a {
        width: 90%;
        padding: var(--space-5) var(--space-8);
    }
    .inBox .btn a i {
        right: var(--space-2);
    }

    .soon {
        font-size: 16px;
        padding: var(--space-6) 0;
    }

}



/*===================================================
	fv
====================================================*/
#fv {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    margin: 0 auto var(--section-base-pc);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#fv .kvInner {
    position: absolute;
    z-index: 1;
    inset: 0;
}
#fv .kvInner .kv {
    position: absolute;
    z-index: 2;
    inset: 0;
}
#fv .kvInner .kv img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
#fv .kvInner .innerBg {
    position: absolute;
    z-index: 1;
    width: calc(100% + 48px);
    height: calc(100% + 48px);
    filter: blur(24px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(/static/equallove/official/feature/stadium_2026/image/ph_kv_xtcrzpfa.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}
#fv .kvInner .innerBg:before {
    position: absolute;
    z-index: 2;
    content: "";
    display: block;
    inset: 0;
    background: var(--color-pink);
    opacity: 0.5;
}

#fv .shareBox {
    position: absolute;
    z-index: 2;
    bottom: var(--space-8);
    right: var(--space-8);
    background: var(--color-btn-bg-sub);
    color: var(--color-btn-text);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-8);
    border-radius: var(--radius-full);
}
#fv .shareBox .shareTit {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1;
    margin-right: var(--space-6);
}
#fv .shareBox .shareList {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}
#fv .shareBox .shareList li a {
    font-size: 18px;
}

#fv .scrollBox {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100svh;
    top: 0;
    left: 0;
    pointer-events: none;
}
#fv .scrollBox .scrollArrow {
    position: absolute;
    bottom: var(--space-8);
    left: var(--space-8);
}
#fv .scrollBox .scrollArrow .txt {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--color-text-primary);
    line-height: 1;
    writing-mode: vertical-rl;
    padding: 0 0 var(--space-2) 0;
}
#fv .scrollBox .scrollArrow span {
    display: block;
    z-index: 1;
    width: 1px;
    height: 64px;
    background: var(--color-text-primary);
    animation: scrollArrow 3s cubic-bezier(.19,1,.22,1) 0.5s infinite;
}
@keyframes scrollArrow{
    0% {clip-path: inset(0 0 100% 0);}
    25% {clip-path: inset(0 0 0 0);}
    75% {clip-path: inset(0 0 0 0);}
    100% {clip-path: inset(100% 0 0 0);}
}

@media screen and (min-width: 961px) {

    #fv .shareBox .shareList li a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px) {

	#fv {
	    min-height: 450px;
        margin: 0 auto var(--section-base-sp);
	}

    #fv .shareBox {
        bottom: var(--space-6);
        right: var(--space-6);
        padding: var(--space-2) var(--space-5);
    }
    #fv .shareBox .shareTit {
        font-size: 16px;
        margin-right: var(--space-4);
    }

	#fv .scrollBox .scrollArrow {
        bottom: var(--space-6);
        left: var(--space-6);
	}
    #fv .scrollBox .scrollArrow .txt {
        font-size: 14px;
    }

}



/*===================================================
	information
====================================================*/
#information {}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #information {}

}



/*===================================================
	schedule
====================================================*/
#schedule {}

.tourDateBox {}
.tourDateBox table {
	width: 100%;
	margin: 0 auto;
	text-align: center;
    border-bottom: 1px solid;
	border-collapse: collapse;
    border-spacing: 0;
    letter-spacing: 0.03em;
}
.tourDateBox table tr {
    position: relative;
    display: table-row;
}
.tourDateBox table th {
    padding: 0;
    background: none;
}
.tourDateBox table tr:first-child th {
    font-size: 14px;
    padding: 0 0 var(--space-2);
}
.tourDateBox table td {
    position: relative;
    padding: var(--space-6) 0;
    border-top: 1px solid;
    vertical-align: middle;
}
.tourDateBox table td span {
    font-size: 14px;
    padding: 0 var(--space-1);
}
.tourDateBox table td span:last-of-type {
    padding-right: 0;
}
.tourDateBox table td.date {
    width: 28%;
    font-size: 24px;
    font-weight: bold;
}
.tourDateBox table td.time {
    width: 16%;
}
.tourDateBox table td.area {
    width: 18%;
}
.tourDateBox table td.venue {
    width: 38%;
    font-size: 20px;
    font-weight: bold;
}

/* 公演終了・完売 */
.tourDateBox table td.date p {
    position: relative;
}
.tourDateBox table td.date p:before {
    display: block;
    position: absolute;
    top: -24px;
    left: -8px;
    width: 80px;
    line-height: 24px;
    font-weight: bold;
    text-align: center;
    transform: rotate(-15deg);
    font-size: 12px;
}
.tourDateBox table td.date p.fin:before  {
    content: "公演終了";
    background: var(--color-tag-bg-secondary);
    color: var(--color-tag-text-secondary);
}
.tourDateBox table td.date p.sold:before  {
    content: "完売";
    background: var(--color-tag-bg);
    color: var(--color-tag-text);
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    .tourDateBox table tr {
        text-align: left;
    }
    .tourDateBox table th, 
    .tourDateBox table td {
        display: table-cell;
    }
    .tourDateBox table th {}
    .tourDateBox table tr:first-child th {
        font-size: 10px;        
        line-height: 1.2;
    }
    .tourDateBox table td {
        line-height: 1.2;
    }
    .tourDateBox table td span {
        display: block;
        font-size: 10px;
        line-height: 1;
        padding: var(--space-1) 0 0;
    }
    .tourDateBox table td span:last-of-type {}
    .tourDateBox table td.date {
        width: 22%;
        font-size: 20px;
    }
    .tourDateBox table td.date span {}
    .tourDateBox table td.time {
        width: 18%;
        font-size: 12px;
    }
    .tourDateBox table td.area {
        width: 18%;
        font-size: 12px;
        text-align: center;
    }
    .tourDateBox table td.venue {
        width: 42%;
        font-size: 14px;
    }
    .tourDateBox table td.venue span {}

    /* 公演終了・完売 */
    .tourDateBox table td.date p:before {
        top: -28px;
        left: -18px;
        width: 72px;
    }

}

    

/*===================================================
	ticket
====================================================*/
#ticket {}

.ticketBoxTit {
    display: flex;
    font-size: 24px;
    font-weight: bold;
    align-items: center;
    margin: 0 0 var(--space-6);
}
.ticketBoxTit:after {
    content: "";
    flex-grow: 1;
    border-top: 1px solid;
    margin-left: var(--space-4);
}

.areaBox {
    margin: 0 0 var(--space-6);
}
.areaBox:last-of-type {
    margin-bottom: 0;
}

/*============ accordion ===========*/
.op_ticket {
    margin: 0 0 var(--space-1);
}
.op_ticket:last-child {
    margin: 0;
}
.op_ticket .ticketTit {
    color: var(--color-accordion-text);
    background: var(--color-accordion-bg);
    padding: var(--space-8) var(--space-16) var(--space-8) var(--space-8);
    font-size: 20px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: var(--radius-m);
}
.op_ticket .ticketTit.open {
    border-radius: var(--radius-m) var(--radius-m) 0 0;  
}
.op_ticket .ticketTit span {
    position: absolute;
    top: 50%;
    right: var(--space-8);
    width: 20px;
    height: 20px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}
.op_ticket .ticketTit span:before,
.op_ticket .ticketTit span:after {
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    width: 20px;
    height: 0;
    border-bottom: solid 2px;
    top: 40%;
    right: 0px;
    transition: all 0.3s ease-out;
}
.op_ticket .ticketTit span:before {
    transform: rotate(90deg);
}
.op_ticket .ticketTit.open span:before {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.op_ticket .indent {
    display: inline-block;
    text-indent: -0.25em;
}

.op_ticket .ticketDetail {
    display: none;
    padding: var(--space-8);
    background-color: var(--color-bg-section);
    color: var(--color-text-section);
    border-radius: 0 0 var(--radius-m) var(--radius-m);
}

.op_ticket .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 0 0 var(--space-4);
    margin: 0 0 var(--space-8);
    align-items: stretch;
}
.op_ticket .detailList:first-child {
    border-top: 1px solid;
    padding: var(--space-4) 0 var(--space-4);
}
.op_ticket .detailList:last-child {
    margin: 0;
}
.op_ticket .detailList dt {
    width: 20%;
    padding: 0 var(--space-10) 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.6em;
}
.op_ticket .detailList dd {
    width: 80%;
    position: relative;
    padding: 0 0 0 var(--space-8);
    display: flex;
    align-items: center;
}
.op_ticket .detailList dd:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--color-text-section);
}
.op_ticket .detailList dd > * {
    margin-bottom: var(--space-4);
}
.op_ticket .detailList dd > *:last-child {
    margin-bottom: 0;
}
.op_ticket .detailList dd .detailInner {
    width: 100%;
}
.op_ticket .detailList dd .detailInner > *{
    margin-bottom: var(--space-2);
}
.op_ticket .detailList dd .detailInner  > *:last-child{
    margin-bottom: 0;
}

@media screen and (min-width: 961px){

    .op_ticket .ticketTit:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

    #ticket {}

	.ticketBoxTit {
        font-size: 16px;
        margin: 0 0 var(--space-4);
    }
    .ticketBoxTit:after {
        margin-left: var(--space-2);
    }

    .areaBox {
        margin: 0 0 var(--space-4);
    }
    .areaBox:last-child {}

    .op_ticket {}
	.op_ticket .ticketTit {
        padding: var(--space-4) var(--space-10) var(--space-4) var(--space-4);
        font-size: 14px;
        border-radius: var(--radius-s);
	}
    .op_ticket .ticketTit.open {
        border-radius: var(--radius-s) var(--radius-s) 0 0;
    }
    .op_ticket .ticketTit span {
        right: var(--space-4);
        width: 16px;
        height: 16px;
    }
    .op_ticket .ticketTit span:before,
    .op_ticket .ticketTit span:after {
        width: 16px;
    }
	.op_ticket .ticketDetail {
        padding: var(--space-4);
        font-size: 14px;
        border-radius: 0 0 var(--radius-s) var(--radius-s);
	}
	.op_ticket .detailList {
	    display: block;
	    margin: 0 0 var(--space-4);
	    border-bottom: none;
	}
	.op_ticket .detailList:first-child {
	    border-top: none;
	    padding: 0;
	}
	.op_ticket .detailList dt {
        width: 100%;
        margin: 0 0 var(--space-2);
        line-height: 1;
        font-weight: bold;
	}
    .op_ticket .detailList dt .detailInner .txt {
        border-left: 4px solid;
        padding: 0 0 0 var(--space-2);
        color: var(--color-text-accent);

    }
	.op_ticket .detailList dd {
	    width: 100%;
	    position: relative;
	    padding: 0;
	}
	.op_ticket .detailList dd:before {
	    content: none
	}

    .op_ticket .ticketDetail .btn a {
        width: 90%;
    }
	
}


/*===================================================
	streaming
====================================================*/
#streaming {}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #streaming {}

}


/*===================================================
	goods
====================================================*/
#goods {}

.goodsList {
    margin-bottom: var(--space-10);
}
.goodsList li {
    margin-bottom: var(--space-2);
}
.goodsList li:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #goods {}
    
    .goodsList {
        margin-bottom: var(--space-6);
    }

}


/*===================================================
	fanclub
====================================================*/
#fanclub {}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #fanclub {}

}



/*===================================================
	contact
====================================================*/
#contact {}

.contactList {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    font-size: 14px;
}
.contactList li {
    width: calc(50% - 8px);
}
.contactList li .venue {
    font-weight: bold;
    padding: 0 0 0 var(--space-2);
    margin: 0 0 var(--space-2);
    border-left: var(--space-1) solid;
}
.contactList li .name i {
    padding-right: var(--space-1);
}
.contactList li .tel {}
.contactList li .tel a {
    text-decoration: underline;
    word-break: break-all;
}
.contactList li .note {
    font-size: 12px;
}

@media screen and (min-width: 961px){

    #contact .inBox .txtBox .boxTxt p a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

    #contact {}

    .contactList {
        font-size: 12px;
        gap: var(--space-3);
    }
    .contactList li {
        width: 100%;
        padding: 0 0 0 var(--space-2);
        border-left: var(--space-1) solid;
    }
    .contactList li .venue {
        padding: 0;
        margin: 0 0 var(--space-1);
        border-left: none;
    }
    .contactList li .note {
        font-size: 10px;
    }

}


/*===================================================
	footer
====================================================*/
#footer {
    position: relative;
    z-index: var(--z-footer);
}
#footer dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-12);
}
#footer dl dt a {
    height: 72px;
    display: block;
}
#footer dl dt svg {
    width: 150px;
    height: 72px;
    fill: var(--color-text-primary);
}
#footer dl dd .yoani {
	display: block;
    width: 160px;
    margin: 0 auto var(--space-3);
    line-height: 0;
}
#footer .copy {
    display: inline-block;
    font-size: 10px;
}

@media screen and (min-width: 961px){

	#footer dl dt svg,
	#footer dl dd .yoani img {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	#footer dl dt a:hover svg,
	#footer dl dd .yoani:hover img {
	    opacity: 0.7;
	}
	
}

@media screen and (max-width: 960px){

	#footer {}

	#footer dl {
		display: flex;
	    align-items: center;
	    padding: 0;
	    flex-direction: column;
	    justify-content: inherit;
	}

	#footer dl dt a {
		margin: 0 0 var(--space-8);
	    height: 54px;
	}

	#footer dl dt svg {
	    width: 110px;
	    height: 54px;
	}
	
	#footer dl dd .logo {
	    padding: 0 var(--space-2) 0 0;
	}

	#footer dl dd .yoani {
        margin: 0 auto var(--space-2);
    }

}