@charset "utf-8";

:root {

    /* ======================================================
       Font
    ====================================================== */
    --font-base: "Noto Sans JP", sans-serif;
    --font-title: futura-pt, "Noto Sans JP", sans-serif;

    /* ======================================================
       Colors
    ====================================================== */
    /* Primitive (数値そのもの) */
    --color-black: #333;
    --color-gray: #b1b1b1;
    --color-white: #ffffff;

    --color-blue: #7FABB8;
    --color-gold: #C0A462;
    --color-red: #D1709C;
    
    /* Gradient */
    --color-red-grd: linear-gradient(150deg, rgba(216, 117, 162, 1) 0%, rgba(103, 31, 55, 1) 100%);
    --color-red-grd-revers: linear-gradient(330deg,rgba(216, 117, 162, 1) 0%, rgba(103, 31, 55, 1) 100%);

    /* Semantic (用途固定) */
    --color-bg-primary: var(--color-white);
    --color-bg-section: var(--color-white);
    --color-nav-bg: var(--color-white);
    
    --color-text-primary: var(--color-white);
    --color-text-section: var(--color-black);
    --color-text-accent: var(--color-blue);
    --color-nav-text: var(--color-black);

    /* Component (UI) */
    --color-btn-bg: var(--color-blue);
    --color-btn-text: var(--color-white);
    --color-btn-bg-secondary: var(--color-black);
    --color-btn-text-secondary: var(--color-white);
    --color-btn-disabled: var(--color-gray);

    --color-tag-bg: var(--color-blue);
    --color-tag-text: var(--color-white);
    --color-tag-bg-secondary: var(--color-gold);
    --color-tag-text-secondary: var(--color-white);

    --color-accordion-bg: var(--color-blue);
    --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.5);
    --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: 30;            /* ナビゲーション */
    --z-nav-btn: 31;        /* ナビゲーションボタン */
    --z-loader: 100;        /* ローダー */

}



/*===================================================
  anim
====================================================*/
.js .loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--color-red);
    background: var(--color-red-grd);
    z-index: var(--z-loader);
}

.js .bgBox .bg01,
.js .bgBox .bg02,
.js .bgBox .bg03 {
    opacity:0;
    transition: 1s ease-out;
}
.js .bgBox .bg01,
.js .bgBox .bg02,
.js .bgBox .bg03 {
    left: calc(50% + 20px);
}
.js .loaded .bgBox .bg01,
.js .loaded .bgBox .bg02,
.js .loaded .bgBox .bg03 {
    left: 50%;
    opacity:0.2;
}
.js .loaded .bgBox .bg01 {transition-delay: 1.25s;}
.js .loaded .bgBox .bg02 {transition-delay: 1.5s;}
.js .loaded .bgBox .bg03 {transition-delay: 1.75s;}

.js #fv .mainTit img {
    opacity:0;
    transition: 1s ease-out;
    transform: translateX(20px);
}
.js .loaded #fv .mainTit img {
    opacity:1;
    transform: translateX(0px);
    transition-delay: 2s;
}

.js .mainWrap .anim.fadeX,
.js .mainWrap .anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.js .mainWrap .anim.fadeX {
    transform: translateX(20px);
}
.js .mainWrap .anim.fadeY {
    transform: translateY(20px);
}
.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);
}

.js #fv .mainTit,
.js #fv .scrollBox {
    transition: all 0.5s ease-out;
}
.js .scrolled #fv .mainTit {
    opacity: 0.2;
}
.js .scrolled #fv .scrollBox {
    opacity: 0;
}

@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;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bgBox > * {
    position: absolute;
}
.bgBox .bg {
    opacity: 0.2;
    width: 115%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bgBox .bg01 {
    z-index: 1;
    background: url(/static/notequalme/official/feature/tour2026/image/bg_01.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.bgBox .bg02 {
    z-index: 2;
    background: url(/static/notequalme/official/feature/tour2026/image/bg_02.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.bgBox .bg03 {
    z-index: 3;
    background: url(/static/notequalme/official/feature/tour2026/image/bg_03.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.bgBox .border {
    z-index: 4;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border: 2px solid var(--color-red);
}
.bgBox .frame {
    z-index: 5;
    inset: 0;
}
.bgBox .frame span {
    position: absolute;
    display: block;
    width: 80px;
    aspect-ratio: 1 / 1;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    background: var(--color-red);
}
.bgBox .frame span.top {
    top: 0;
    left: 0;
}
.bgBox .frame span.bottom {
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}

@media screen and (min-width: 961px) {

    .bgBox .bg {
        min-width: 1400px;
    }

}

@media screen and (max-width: 960px) {

    .bgBox {
        min-height: 450px;
    }
    .bgBox .bg {}
    .bgBox .bg01 {
        background: url(/static/notequalme/official/feature/tour2026/image/bg_01_sp.png);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .bgBox .bg02 {
        background: url(/static/notequalme/official/feature/tour2026/image/bg_02_sp.png);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .bgBox .bg03 {
        background: url(/static/notequalme/official/feature/tour2026/image/bg_03_sp.png);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .bgBox .border {
        width: calc(100% - 16px);
        height: calc(100% - 16px);
    }
    .bgBox .frame {}
    .bgBox .frame span {
        width: 64px;
    }
    .bgBox .frame span.top {}
    .bgBox .frame span.bottom {}
}


/*===================================================
    nav
====================================================*/
.hamBtn {
    display: block;
    z-index: var(--z-nav-btn);
    position: fixed;
    background: var(--color-btn-bg);
    border-radius: var(--radius-full);
    right: var(--space-8);
    top: var(--space-8);
    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: 30%;
}
.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn :nth-of-type(3) {
    bottom: 30%;
}
.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: 400px;
    margin: 0 var(--space-20) 0 0;
}

.navigation .headerNav li {
	padding: 0;
    position: relative;
    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-10);
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li a {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 400;
    text-decoration: none;
}

.navigation .snsList{
	display: flex;
}
.navigation .headerNav li .snsList:nth-last-child(2) {
    margin-bottom: var(--space-4);
}
.navigation .snsList .menuList {
	display: flex;
}
.navigation .snsList .navListTit {
    margin-right: 20px;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    font-family: var(--font-title);
    text-decoration: none;
}
.navigation .headerNav li .snsList:nth-last-child(2) .navListTit {
    margin-right: 26px;
}
.navigation .snsList .menuList li {
    margin: 0px var(--space-3) 0 0;
}
.navigation .snsList .menuList li:last-child {
	margin-right: 0;
}
.navigation .snsList .menuList li a{
	font-size: 24px;
}
.navigation .snsList .menuList .menu_icon a i,
.navigation .shareList .menu_icon a i {
    font-size: 14px;
}
.navigation .shareList .menu_icon a img {
	height: 16px;
}

@media screen and (min-width: 961px) {

	.navigation .headerNav a:hover {
		opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

    .hamBtn {
        right: var(--space-5);
        top: var(--space-5);
        width: var(--space-10);
        height: var(--space-10);
    }
    .hamBtn span {}

	.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: 50%;
        max-width: 200px;
        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-8);
    }
    .navigation .headerNav .menuList li:nth-last-child(2){
        margin: 0 var(--space-2) 0 0;
    }

    .navigation .snsList {
        justify-content: center;
    }

    .navigation .snsList .navListTit {
        font-size: 16px;
    }

}


/*===================================================
	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;
    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);
}

section h3 {
    position: relative;
    width: 90%;
    max-width: 1200px;
    color: var(--color-text-accent);
    font-family: var(--font-title);
    font-size: 96px;
    font-weight: 400;
    line-height: 1;
    margin: 0 auto var(--space-12);
    word-break: break-all;
}

section .inBox {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto var(--space-6);
    background: var(--color-red-grd);
    padding: var(--space-12);
}
section .inBox:last-of-type {
    margin-bottom: 0;
}

section .inBox .btn a {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: var(--space-6) var(--space-4);
    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;
}
section .inBox .btn.fin a {
	background: var(--color-btn-disabled);
    border: 1px solid var(--color-btn-disabled);
    pointer-events: none;
}

.soon {
    padding: var(--space-16) 0;
    font-size: 24px; 
    font-weight: bold;
    text-align: center;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	section .inBox .btn a:hover {
        color: var(--color-btn-bg);
        background: var(--color-btn-text);
        border: 1px solid var(--color-btn-bg);
	}
	
}

@media screen and (max-width: 960px){

	.pc {
		display: none;
	}
	
	html {
	    scroll-padding-top: var(--space-12);
	}

    .mainWrap {
        font-size: 14px;
    }

    .container {}

    section {
        padding-bottom: var(--section-base-sp);
    }
    section:last-of-type {
        padding-bottom: var(--section-base-last-sp);
    }

    section h3 {
        font-size: 48px;
        margin-bottom: var(--space-4);
    }

	section .inBox {
        padding: var(--space-4);
        margin-bottom: var(--space-4);
	}

    section .inBox .btn a {
        width: 90%;
        padding: var(--space-5) var(--space-4);
    }

    .soon {
        padding: var(--space-6) 0;
        font-size: 20px;
    }

}



/*===================================================
	fv
====================================================*/
#fv {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#fv .mainTit {
    position: fixed;
    height: 70%;
    min-height: calc(600px * 0.75);
    max-width: 80%;
    aspect-ratio: 1000 / 951;
    display: flex;
    justify-content: center;
    align-items: center;
}

#fv .scrollBox {
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
#fv .scrollBox .scrollArrow {
    width: 1px;
    height: 80px;
    position: absolute;
    left: var(--space-8);
    bottom: var(--space-8);
    background: var(--color-btn-bg);
}
#fv .scrollBox .scrollArrow:after {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    aspect-ratio: 1 / 1;
    background-image: url(/static/notequalme/official/feature/tour2026/image/scroll.png);
    background-size: cover;
    background-repeat: no-repeat;
    top: -8px;
    left: -8px;
    animation: scrollArrow 3s ease-in-out 0.5s infinite;
}
@keyframes scrollArrow {
    0% {opacity: 0; top: -8px;}
    25% {opacity: 100%;}
    75% {opacity: 100%;}
    100% {opacity: 0; top: calc(100% - 8px);}
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

	#fv {
	    min-height: 450px;
	}

    #fv .mainTit {
        min-height: initial;
    }

    #fv .scrollBox .scrollArrow  {
        left: var(--space-6);
        bottom: var(--space-6);
    }

}



/*===================================================
	information
====================================================*/
#information {}
#information h3 {}
#information .inBox {}

#information .inBox .infoMainTit {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 var(--space-6);
    border-left: 4px solid;
    padding: 0 0 0 var(--space-3);
}
#information .inBox .infoImg {
    margin: 0 auto var(--space-10);
}

#information .inBox .txtBox {
    margin: 0 0 var(--space-8);
    padding: 0 0 var(--space-8);
    border-bottom: 1px dashed;
}
#information .inBox .txtBox:last-of-type {
    margin: 0 0 var(--space-10);
    padding: 0;
    border-bottom: none;
}
#information .inBox .txtBox .boxTit {
    display: inline-block;
    background: var(--color-tag-bg);
    font-weight: bold;
    padding: 0.25em 1em;
    margin: 0 0 var(--space-3)
}
#information .inBox .txtBox .boxTxt {
    margin-bottom: var(--space-2);
}
#information .inBox .txtBox .boxTxt:last-of-type {
    margin-bottom: 0;
}
#information .inBox .txtBox .boxTxt p {
    margin-bottom: var(--space-1);
}
#information .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #information {}
    #information h3 {}
    #information .inBox {}

    #information .inBox .infoMainTit {
        font-size: 16px;
        margin: 0 0 var(--space-3);
        padding: 0 0 0 var(--space-2);
    }
    #information .inBox .infoImg {
        margin-bottom: var(--space-4);
    }

    #information .inBox .txtBox {
        margin: 0 0 var(--space-4);
        padding: 0 0 var(--space-4);
    }
    #information .inBox .txtBox:last-of-type {
        margin: 0 0 var(--space-4);
    }
    #information .inBox .txtBox .boxTit {
        font-size: 14px;
        margin: 0 0 var(--space-2);
    }
    #information .inBox .txtBox .boxTxt {}
    #information .inBox .txtBox .boxTxt p {}

}



/*===================================================
	schedule
====================================================*/
#schedule {}

#schedule .tourDateBox {}
#schedule .tourDateBox .tourDateList {
    position: relative;
}

#schedule .tourDateBox .tourDateList:before {
    display: block;
    position: absolute;
    top: -16px;
    left: -24px;
    width: 80px;
    line-height: 24px;
    font-weight: bold;
    text-align: center;
    transform: rotate(-15deg);
    font-size: 12px;
}
#schedule .tourDateBox .tourDateList.fin:before  {
    content: "公演終了";
    background: var(--color-tag-bg);
    color: var(--color-tag-text);
}
#schedule .tourDateBox .tourDateList.sold:before  {
    content: "両部完売!";
    background: var(--color-tag-bg-secondary);
    color: var(--color-tag-text-secondary);
}
#schedule .tourDateBox .tourDateList.day:before  {
    content: "昼の部完売!";
    background: var(--color-tag-bg-secondary);
    color: var(--color-tag-text-secondary);
}
#schedule .tourDateBox .tourDateList.night:before  {
    content: "夜の部完売!";
    background: var(--color-tag-bg-secondary);
    color: var(--color-tag-text-secondary);
}

#schedule .tourDateBox .tourDateList.listHead {
    padding: 0 0 var(--space-2);
}
#schedule .tourDateBox .tourDateList.listHead li {
    justify-content: center;
    font-size: 70%;
    font-weight: 600;
}
#schedule .tourDateBox .tourDateList.listHead li:after {
    display: none;
}

#schedule .tourDateBox .tourDateList {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--color-text-primary);
    padding: 0 0 var(--space-4);
    margin: 0 0 var(--space-4);
    position: relative;
}
#schedule .tourDateBox .tourDateList:last-child {
    margin: 0;
}
#schedule .tourDateBox .tourDateList li {
    padding: 0 var(--space-4);
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
#schedule .tourDateBox .tourDateList li:after {
    content: "";
    position: absolute;
    background: var(--color-text-primary);
    top: 5%;
    right: 0;
    width: 1px;
    height: 90%;
} 
#schedule .tourDateBox .tourDateList li.scheduleTime:after {
    display: none;
}
#schedule .tourDateBox .tourDateList .scheduleDate {
    width: 31%;
    font-size: 18px;
    font-weight: bold;
}
#schedule .tourDateBox .tourDateList .scheduleDate .day {
    font-size: 12px;
    padding: 0 var(--space-1);
}
#schedule .tourDateBox .tourDateList .scheduleDate .day.week {
    padding: 0 0 0 var(--space-1);
}
#schedule .tourDateBox .tourDateList .scheduleArea {
    width: 9%;
}
#schedule .tourDateBox .tourDateList .scheduleVenue {
    width: 28%;
    text-align: center;
}
#schedule .tourDateBox .tourDateList .scheduleTime {
    width: 32%;
}
#schedule .tourDateBox .tourDateList .scheduleTime span {
    display: inline-block;
    font-size: 12px;
    background: var(--color-tag-bg);
    font-weight: bold;
    padding: 0 var(--space-2);
    margin: 0 var(--space-2) 0 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #schedule .tourDateBox .tourDateList {
        padding: 0px 0 var(--space-4);
        margin: 0 0 var(--space-4);
    }
    #schedule .tourDateBox .tourDateList:before {
        position: relative;
        transform: rotate(0deg);
        top: 0;
        left: 0;
        margin-bottom: var(--space-1);
    }
    #schedule .tourDateBox .tourDateList.fin:before {}
    #schedule .tourDateBox .tourDateList.sold:before {}
    
    #schedule .tourDateBox .tourDateList.listHead {
        padding: 0;
    }
	#schedule .tourDateBox .tourDateList.listHead li {
	    display: none;
	}

	#schedule  .tourDateBox .tourDateList {
        display: block;
        padding: 0 0 var(--space-4);
        margin: 0 0 var(--space-4);
        border-bottom: 1px solid var(--color-text-primary);
	}
	#schedule  .tourDateBox .tourDateList li {
	    padding: 0;
	    display: block;
	    font-size: 100%;
	}
	#schedule  .tourDateBox .tourDateList li:after{
		display: none;
	} 
	#schedule  .tourDateBox .tourDateList .scheduleDate {
	    width: 100%;
        font-size: 16px;
        margin: 0 0 var(--space-1);
        font-weight: 400;
    }
    #schedule  .tourDateBox .tourDateList .scheduleDate .day {
        font-size: 10px;
        padding: 0 2px;
    }
    #schedule  .tourDateBox .tourDateList .scheduleDate .area {}
	#schedule  .tourDateBox .tourDateList .scheduleDate .sp {
		padding: 0 0 0 var(--space-2);
	}
	#schedule  .tourDateBox .tourDateList .scheduleArea {
		display: none;
	}
	#schedule  .tourDateBox .tourDateList .scheduleVenue {
        width: 100%;
        text-align: left;
        font-size: 18px;
        margin: 0 0 var(--space-2);
        font-weight: bold;
	}
	#schedule  .tourDateBox .tourDateList .scheduleTime {
        width: 100%;
        font-size: 12px;
	}
    #schedule  .tourDateBox .tourDateList .scheduleTime span {
        margin: 0 var(--space-1) var(--space-1) 0;
    }
    #schedule  .tourDateBox .tourDateList .scheduleTime p span:last-child {
        margin: 0 var(--space-1) 0 0;
    }

}

    

/*===================================================
	ticket
====================================================*/
#ticket {}

#ticket .inBox .ticketBoxTit {
    display: flex;
    font-size: 24px;
    font-weight: bold;
    align-items: center;
    margin: 0 0 var(--space-4);
}
#ticket .inBox .ticketBoxTit:after {
    content: "";
    flex-grow: 1;
    border-top: 1px solid;
    margin-left: var(--space-6);
}

#ticket .inBox .areaBox {
    margin: 0 0 var(--space-6);
}
#ticket .inBox .areaBox:last-of-type {
    margin-bottom: 0;
}

#ticket .inBox .areaBox .area {
    font-size: 16px;
    border-left: var(--space-1) solid;
    padding: 0 0 0 var(--space-2);
    margin: 0 0 var(--space-3);
    font-weight: bold;
}

/*============ accordion ===========*/
#ticket .inBox .op_ticket {
    margin: 0 0 var(--space-1);
}
#ticket .inBox .op_ticket:last-child {
    margin: 0;
}
#ticket .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);
}
#ticket .op_ticket .ticketTit.open {
    border-radius: var(--radius-m) var(--radius-m) 0 0;  
}
#ticket .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;
}
#ticket .op_ticket .ticketTit span:before,
#ticket .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;
}
#ticket .op_ticket .ticketTit span:before {
    transform: rotate(90deg);
}
#ticket .op_ticket .ticketTit.open span:before {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

#ticket .inBox .indent {
    display: inline-block;
    text-indent: -0.25em;
}

#ticket .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);
}

#ticket .op_ticket .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 0 0 var(--space-4);
    margin: 0 0 var(--space-8);
    align-items: stretch;
}
#ticket .op_ticket .detailList:first-child {
    border-top: 1px solid;
    padding: var(--space-4) 0 var(--space-4);
}
#ticket .op_ticket .detailList:last-child {
    margin: 0;
}
#ticket .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;
}
#ticket .op_ticket .detailList dd {
    width: 80%;
    position: relative;
    padding: 0 0 0 var(--space-8);
    display: flex;
    align-items: center;
}
#ticket .op_ticket .detailList dd:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--color-text-section);
}
#ticket .op_ticket .detailList dd > * {
    margin-bottom: var(--space-4);
}
#ticket .op_ticket .detailList dd > *:last-child {
    margin-bottom: 0;
}
#ticket .op_ticket .detailList dd .detailInner {
    width: 100%;
}
#ticket .op_ticket .detailList dd .detailInner > *{
    margin-bottom: var(--space-2);
}
#ticket .op_ticket .detailList dd .detailInner  > *:last-child{
    margin-bottom: 0;
}

@media screen and (min-width: 961px){

    #ticket .op_ticket .ticketTit:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

    #ticket {}
    #ticket h3 {}
    #ticket .inBox {}

	#ticket .inBox .ticketBoxTit {
        font-size: 16px;
        margin: 0 0 var(--space-3);
    }
    #ticket .inBox .ticketBoxTit:after {
        margin-left: var(--space-3);
    }

    #ticket .inBox .areaBox {
        margin: 0 0 var(--space-4);
    }
    #ticket .inBox .areaBox:last-child {}

    #ticket .inBox .areaBox .area {
        font-size: 14px;
    }

    #ticket .inBox .op_ticket {}
	#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);
	}
    #ticket .op_ticket .ticketTit.open {
        border-radius: var(--radius-s) var(--radius-s) 0 0;
    }
    #ticket .op_ticket .ticketTit span {
        right: var(--space-4);
        width: 16px;
        height: 16px;
    }
    #ticket .op_ticket .ticketTit span:before,
    #ticket .op_ticket .ticketTit span:after {
        width: 16px;
    }
	#ticket .op_ticket .ticketDetail {
        padding: var(--space-4);
        font-size: 14px;
        border-radius: 0 0 var(--radius-s) var(--radius-s);
	}
	#ticket .op_ticket .detailList {
	    display: block;
	    margin: 0 0 var(--space-4);
	    border-bottom: none;
	}
	#ticket .op_ticket .detailList:first-child {
	    border-top: none;
	    padding: 0;
	}
	#ticket .op_ticket .detailList dt {
        width: 100%;
        margin: 0 0 10px;
        line-height: 1;
        font-weight: bold;
	}
    #ticket .op_ticket .detailList dt .detailInner .txt {
        border-left: 3px solid;
        padding: 0 0 0 10px;

    }
	#ticket .op_ticket .detailList dd {
	    width: 100%;
	    position: relative;
	    padding: 0;
	}
	#ticket .op_ticket .detailList dd:before {
	    content: none
	}

    #ticket .op_ticket .ticketDetail .btn a {
        width: 90%;
    }
	
}


/*===================================================
	streaming
====================================================*/
#streaming {}

#streaming .inBox .txtBox {
    margin: 0 0 var(--space-8);
    padding: 0 0 var(--space-8);
    border-bottom: 1px dashed;
}
#streaming .inBox .txtBox:last-of-type {
    margin: 0 0 var(--space-10);
    padding: 0;
    border-bottom: none;
}
#streaming .inBox .txtBox .boxTit {
    display: inline-block;
    background: var(--color-tag-bg);
    font-weight: bold;
    padding: 0.25em 1em;
    margin: 0 0 var(--space-3)
}
#streaming .inBox .txtBox .boxTxt {}
#streaming .inBox .txtBox .boxTxt p {
    margin-bottom: var(--space-1);
}
#streaming .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}
#streaming .inBox .txtBox .boxTxt p.note {
    text-indent: -1em;
    padding: 0 0 0 1em;
    font-size: 14px;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #streaming {}
    #streaming .inBox .txtBox {
        margin: 0 0 var(--space-4);
        padding: 0 0 var(--space-4);
    }
    #streaming .inBox .txtBox:last-of-type {
        margin: 0 0 var(--space-4);
    }
    #streaming .inBox .txtBox .boxTit {
        font-size: 14px;
        margin: 0 0 var(--space-2);
    }
    #streaming .inBox .txtBox .boxTxt {}
    #streaming .inBox .txtBox .boxTxt p {}
    #streaming .inBox .txtBox .boxTxt p.note {
        font-size: 12px;
    }

}


/*===================================================
	goods
====================================================*/
#goods {}

#goods .inBox .goodsList {
    margin-bottom: var(--space-10);
}
#goods .inBox .goodsList li {
    margin-bottom: var(--space-1);
}
#goods .inBox .goodsList li:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #goods {}
    
    #goods .inBox .goodsList {
        margin-bottom: var(--space-4);
    }
    #goods .inBox .goodsList li {}
    #goods .inBox .goodsList li:last-child {}

}


/*===================================================
	cd
====================================================*/
#cd {}

#cd .inBox .cdList {
    margin-bottom: var(--space-10);
}
#cd .inBox .cdList li {
    margin-bottom: var(--space-1);
}
#cd .inBox .cdList li:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #cd {}
    
    #cd .inBox .cdList {
        margin-bottom: var(--space-4);
    }
    #cd .inBox .cdList li {}
    #cd .inBox .cdList li:last-child {}

}



/*===================================================
	fanclub
====================================================*/
#fanclub {}
#fanclub h3 {}
#fanclub .inBox {}

#fanclub .inBox .txtBox {
    margin: 0 0 var(--space-8);
    padding: 0 0 var(--space-8);
    border-bottom: 1px dashed;
}
#fanclub .inBox .txtBox:last-of-type {
    margin: 0 0 var(--space-10);
    padding: 0;
    border-bottom: none;
}
#fanclub .inBox .txtBox .boxTit {
    display: inline-block;
    background: var(--color-tag-bg);
    font-weight: bold;
    padding: 0.25em 1em;
    margin: 0 0 var(--space-3)
}
#fanclub .inBox .txtBox .boxTxt {
    margin-bottom: var(--space-2);
}
#fanclub .inBox .txtBox .boxTxt:last-of-type {
    margin-bottom: 0;
}
#fanclub .inBox .txtBox .boxTxt p {
    margin-bottom: var(--space-1);
}
#fanclub .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #fanclub {}
    #fanclub h3 {}
    #fanclub .inBox {}

    #fanclub .inBox .txtBox {
        margin: 0 0 var(--space-4);
        padding: 0 0 var(--space-4);
    }
    #fanclub .inBox .txtBox:last-of-type {
        margin: 0 0 var(--space-4);
    }
    #fanclub .inBox .txtBox .boxTit {
        font-size: 14px;
        margin: 0 0 var(--space-2);
    }
    #fanclub .inBox .txtBox .boxTxt {}
    #fanclub .inBox .txtBox .boxTxt p {}

}



/*===================================================
	contact
====================================================*/
#contact {}
#contact h3 {}
#contact .inBox {}

#contact .inBox .txtBox {
    margin: 0 0 var(--space-8);
    padding: 0 0 var(--space-8);
    border-bottom: 1px dashed;
}
#contact .inBox .txtBox:last-of-type {
    margin: 0;
    padding: 0;
    border-bottom: none;
}
#contact .inBox .txtBox .boxTit {
    display: inline-block;
    background: var(--color-tag-bg);
    font-weight: bold;
    padding: 0.25em 1em;
    margin: 0 0 var(--space-3)
}
#contact .inBox .txtBox .boxTxt {}
#contact .inBox .txtBox .boxTxt:last-child {}
#contact .inBox .txtBox .boxTxt p {
    font-size: 14px;
    margin-bottom: var(--space-1);
}
#contact .inBox .txtBox .boxTxt p a {
    text-decoration: underline;
}
#contact .inBox .txtBox .boxTxt p i {
    padding: 0 var(--space-1) 0 0;
}
#contact .inBox .txtBox .boxTxt p.note {
    font-size: 12px;
    text-indent: -1em;
    padding: 0 0 0 1em;
}
#contact .inBox .txtBox .boxTxt p:first-child {
    font-weight: bold;
}
#contact .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}
#contact .inBox .txtBox:last-child .boxTxt p {
    font-size: 12px;
    margin: 0
}

.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 {}
.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 {}
    #contact h3 {}
    #contact .inBox {}

    #contact .inBox .txtBox {
        margin: 0 0 var(--space-4);
        padding: 0 0 var(--space-4);
    }
    #contact .inBox .txtBox:last-of-type {}
    #contact .inBox .txtBox .boxTit {
        font-size: 14px;
    }
    #contact .inBox .txtBox .boxTxt {
        font-size: 12px;
    }
    #contact .inBox .txtBox .boxTxt:last-child {}
    #contact .inBox .txtBox .boxTxt p {}
    #contact .inBox .txtBox .boxTxt p.note {
        font-size: 12px;
    }
    #contact .inBox .txtBox .boxTxt p span {}
    #contact .inBox .txtBox .boxTxt p a {}
    #contact .inBox .txtBox .boxTxt p i {}
    #contact .inBox .txtBox .boxTxt p:last-child {}
    #contact .inBox .txtBox:last-child .boxTxt p {}
    #contact .inBox .txtBox:last-child .boxTxt p:first-child {}
    #contact .inBox .txtBox:last-child .boxTxt p:last-child {
        margin-top: var(--space-1);
    }

    .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 .name {}
    .contactList li .name i {}
    .contactList li .tel {}
    .contactList li .tel a {}
    .contactList li .note {
        font-size: 10px;
    }

}


/*===================================================
	footer
====================================================*/
footer {
    position: relative;
    z-index: var(--z-footer);
}
footer .inner {
    padding: 0 3%;
    position: relative;
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .logo_official {
    width: 10vw;
}
footer .logo_yoani {
    width: 17vw;
}
footer .logo_yoani a {
    display: block;
    margin: 0 0 5px;
}
footer .copyright {
    display: block;
    font-size: 12px;
    text-align: right;
    color: var(--color-black);
}

@media screen and (min-width: 961px){

    footer {
        padding: 0 0 80px;
        height: auto !important;
        position: relative;
        color: var(--color-black);
    }
    footer .logo_official a, footer .logo_yoani a {
        cursor: pointer;
    }
    footer .logo_official a:hover, footer .logo_yoani a:hover {
        opacity: 0.4;
    }
	
}

@media screen and (max-width: 960px){

    footer {
	    padding: 0 5% 60px;
    }
    footer .inner {
        padding: 0;
    }
    footer .inner .logo_official {
        width: 24vw;
        margin: 0;
    }
    footer .inner .logo_yoani {
        width: 45vw;
    }
    footer .copyright {
        font-size: 10px;
        zoom: 0.8;
    }

}