@charset "utf-8";
:root {
    
    /* ======================================================
       Font
    ====================================================== */
    --font-base: "Noto Serif JP", serif;
    --font-title:"benton-modern-display-extra", "Noto Serif JP", serif;

    /* ======================================================
       Colors
    ====================================================== */
    /* Primitive (数値そのもの) */
    --color-black: #111111;
    --color-gray: #adadad;
    --color-white: #ffffff;
    --color-main: #EACD61;
    --color-darkBlue-300: #566076;
    --color-darkBlue-500: #36475F;
    --color-silver: #B5B6B6;
    --color-gold: #D2B96B;

    /* Semantic (用途固定) */
    --color-frame: var(--color-silver);

    --color-bg: var(--color-base);
    --color-bgLight: var(--color-silver);

    --color-text: var(--color-white);
    --color-accent: var(--color-main);
    --color-base: var(--color-darkBlue-500);
    --color-on-box: var(--color-darkBlue-300);

    --color-btn: var(--color-main);
    --color-btn-text: var(--color-darkBlue-500);
    --color-btn-fin: var(--color-silver);

    --color-nav-bg: var(--color-silver);
    --color-nav-text: var(--color-base);

    /* ======================================================
       4px Grid (spacing)
    ====================================================== */
    --space-1: 4px;
    --space-2: 8px;
    --space-4: 16px;
    --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) * 2);
    --section-base-sp: var(--space-16);
    --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-max: 100vmax; /* 完全円形用 */

    /* ======================================================
       Z-index - 基本レイヤー
    ====================================================== */
    --z-background: -1;   /* 背景 */
    --z-base: 1;         /* 通常コンテンツ */
    --z-content: 10;     /* メインコンテンツ */
    --z-frame: 20;       /* フレーム */
    --z-nav: 30;         /* ナビゲーション */
    --z-nav-btn: 40;     /* ナビゲーションボタン */
    --z-loader: 100;      /* ローダー */

    /* ======================================================
       Elevation (Surface)
    ====================================================== */
    --elevation: 0 0px 16px rgb(181 182 182 / 0.2);

}



/*===================================================
  anim
====================================================*/
.js .loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--color-base);
    z-index: var(--z-loader);
    pointer-events: none;
}

.js .action {
    opacity:0;
    transition: 1s ease-out;
}
.js .loaded .action {
    opacity:1;
}
.js .action.act01 {
    transform: translateY(24px);
}
.js .loaded .action.act01 {
    transform: translateY(0px);
    transition-delay: 1.25s;
}
.js .action.act02 {}
.js .loaded .action.act02 {
    transition-delay: 1.75s;
}

.js .scrolled .bgBox .bg01,
.js .scrolled #heroView .heroInner,
.js .scrolled #heroView .scrollBox {
    opacity: 0;
}

.js .anim.fadeX,
.js .anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.js .anim.fadeX {
    transform: translateX(20px);
}
.js .anim.fadeY {
    transform: translateY(20px);
}
.js .anim.fadeX.on,
.js .anim.fadeY.on {
    opacity: 1;
}
.js .anim.fadeX.on {
    transform: translateX(0px);
}
.js .anim.fadeY.on {
    transform: translateY(0px);
}

@media screen and (max-width: 960px){}



/*===================================================
    frameBox
====================================================*/
.frameBox {
    position: fixed;
    z-index: var(--z-frame);
    inset: 0;
    border: var(--space-2) solid var(--color-frame);
    box-sizing: border-box;
    pointer-events: none;
    overflow: hidden;
}
.frameBox .frameInBox {
    position: absolute;
    inset: var(--space-1);
}
.frameBox .frameInBox .frame {
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
}
.frameBox .frameInBox .frame.top {top: 0;}
.frameBox .frameInBox .frame.bottom {bottom: 0;}
.frameBox .frameInBox .frame:before,
.frameBox .frameInBox .frame:after {
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
    width: 80px;
    aspect-ratio: 1 / 1;
    background: url(/static/yoani3rd/official/feature/4th_concert/image/bg_frame_0r2S1b2l.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.frameBox .frameInBox .frame.top:before {top: 0; left: 0;}
.frameBox .frameInBox .frame.top:after {top: 0; right: 0; transform: rotate(90deg);}
.frameBox .frameInBox .frame.bottom:before {bottom: 0; left: 0; transform: rotate(270deg);}
.frameBox .frameInBox .frame.bottom:after {bottom: 0; right: 0; transform: rotate(180deg);}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    .frameBox {
        border: var(--space-1) solid var(--color-frame);
    }
    .frameBox .frameInBox {
        inset: calc(var(--space-1)/2);
    }
    .frameBox .frameInBox .frame {}
    .frameBox .frameInBox .frame.top {}
    .frameBox .frameInBox .frame.bottom {}
    .frameBox .frameInBox .frame:before,
    .frameBox .frameInBox .frame:after {
        width: 60px;
    }
    .frameBox .frameInBox .frame:before {}
    .frameBox .frameInBox .frame:after {}
    .frameBox .frameInBox .frame.top:before {}
    .frameBox .frameInBox .frame.top:after {}
    .frameBox .frameInBox .frame.bottom:before {}
    .frameBox .frameInBox .frame.bottom:after {}

}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    position: fixed;
    z-index: var(--z-background);
    inset: 0;
    min-height: 600px;
    background-color: var(--color-bg);
    box-sizing: border-box;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bgBox .bg {
    position: absolute;
}
.bgBox .bg01 {
    z-index: 1;
    aspect-ratio: 1 / 1;
    height: 120%;
    background: var(--color-bgLight);
    border-radius: var(--radius-max);
    filter: blur(80px);
    opacity: 0.2;
    transition: 0.5s ease-out;
}
.bgBox .bg02 {
    z-index: 2;
    opacity: 0.2;
    aspect-ratio: 1 / 1;
    width: 70%;
    max-width: calc(1920px * 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bgBox .bg02 .bgLogo {
    width: 100%;
    animation: bgRotate 60s linear infinite;
}
@keyframes bgRotate {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@media screen and (min-width: 961px) {

    .bgBox .bg02 .loopWrap {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .bgBox .bg02 .loopWrap.left {right: 105%;}
    .bgBox .bg02 .loopWrap.right {left: 105%;}
    .bgBox .bg02 .loopWrap .loopBox {
        display: flex;
        flex-direction: column;
        height: calc((280px + var(--space-4)) * 16);
        gap: var(--space-4);
    }
    .bgBox .bg02 .loopWrap.left .loopBox { animation: slideLeft 60s linear infinite; }
    .bgBox .bg02 .loopWrap.right .loopBox { animation: slideRight 60s linear infinite; }
    .bgBox .bg02 .loopWrap .loopBox span {
        position: relative;
        display: block;
        height: 280px;
        aspect-ratio: 43 / 140;
    }
    .bgBox .bg02 .loopWrap .loopBox span:after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        aspect-ratio: 43 / 140;
        background-image: url(/static/yoani3rd/official/feature/4th_concert/image/bg_artistLogo_0r2S1b2l.svg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .bgBox .bg02 .loopWrap.right .loopBox span:after {
        transform: rotate(180deg);
    }
    @keyframes slideLeft {
        0% {
            transform: translateY(25%);
        }
        100% {
            transform: translateY(-25%);
        }
    }
    @keyframes slideRight {
        0% {
            transform: translateY(-25%);
        }
        100% {
            transform: translateY(25%);
        }
    }

}

@media screen and (max-width: 960px) {

    .bgBox {
        min-height: 450px;
	}
    .bgBox .bg {}
    .bgBox .bg01 {}
    .bgBox .bg02 {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2%;
    }
    .bgBox .bg02 .bgLogo {
        width: auto;
        height: 72%;
        aspect-ratio: 1 / 1;
    }
    .bgBox .bg02 .loopWrap {}
    .bgBox .bg02 .loopWrap.left {}
    .bgBox .bg02 .loopWrap.right {}
    .bgBox .bg02 .loopWrap .loopBox {
        display: flex;
        width: calc((160px + var(--space-2)) * 16);
        gap: var(--space-2);
    }
    .bgBox .bg02 .loopWrap.left .loopBox { animation: slideTop 60s linear infinite; }
    .bgBox .bg02 .loopWrap.right .loopBox { animation: slideBottom 60s linear infinite; }
    .bgBox .bg02 .loopWrap .loopBox span {
        position: relative;
        display: block;
        width: 160px;
        aspect-ratio: 140 / 43;
    }
    .bgBox .bg02 .loopWrap .loopBox span:after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        aspect-ratio: 140 / 43;
        background-image: url(/static/yoani3rd/official/feature/4th_concert/image/bg_artistLogo_sp_0r2S1b2l.svg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    @keyframes slideTop {
        0% {
            transform: translateX(-25%);
        }
        100% {
            transform: translateX(25%);
        }
    }
    @keyframes slideBottom {
        0% {
            transform: translateX(25%);
        }
        100% {
            transform: translateX(-25%);
        }
    }

}



/*===================================================
    nav
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: var(--space-8);
    top: var(--space-8);
    width: 48px;
    height: 48px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: var(--z-nav-btn);
    background: var(--color-btn);
    border: 12px solid var(--color-btn);
    border-radius: var(--radius-max);
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--color-base);
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: var(--space-1);
}
.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn :nth-of-type(3) {
    bottom: var(--space-1);
}
.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 {
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-nav);
    position: fixed;
	transition: all 0.5s ease-out;
}
.navigation.active {
    transition: opacity 0.5s ease;
    pointer-events:auto;
    opacity:1;
}

.navigation .headerNavBox {
    background: var(--color-nav-bg);
    color: var(--color-nav-text);
    margin: 0 auto;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    flex-direction: row;
}
.navigation .headerNavBox .headerNav {}

.navigation .heroNavLogo {
    width: 80%;
    max-width: 420px;
    margin: 0 var(--space-20) 0 0;
}

.navigation .headerNav li {
    position: relative;
    padding: 0;
    margin: 0 0 var(--space-6);
    font-family: var(--font-title);
}
.navigation .headerNav li:nth-last-child(2) {
    margin-bottom: var(--space-12);
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li:after {
    content: none;
}
.navigation .headerNav li a {
    font-size: 32px;
    letter-spacing: 0.03em;
    font-weight: bold;
    text-decoration: none;
    line-height: 1;
}

.navigation .snsList{
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-4);
}
.navigation .snsList:last-child {
    margin-bottom: 0;
}
.navigation .snsList .menuList {
	display: flex;
}
.navigation .snsList .navListTit {
    margin-right: var(--space-6);
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    letter-spacing: 0.03em;
}
.navigation .snsList .menuList li {
    margin: 0px var(--space-4) 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 {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-max);
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    background: var(--color-btn);
    color: var(--color-btn-text);
}
.navigation .snsList .menuList .menu_icon a i,
.navigation .shareList .menu_icon a i {
    font-size: 16px;
}

@media screen and (min-width: 961px) {

	.navigation .headerNav a:hover {
		opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

    .hamBtn {
        right: 15px;
        top: 20px;
        width: 40px;
        height: 40px;
        border: 8px solid var(--color-btn);
    }
    .hamBtn span {}
    .hamBtn :nth-of-type(1) {
        top: var(--space-1);
    }
    .hamBtn :nth-of-type(3) {
        bottom: var(--space-1);
    }

	.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: 160px;
        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 var(--space-2) 0 0;
    }
    .navigation .snsList{
        margin-bottom: var(--space-2);
    }
    .navigation .snsList .navListTit {
        font-size: 16px;
        margin-right: var(--space-4);
    }
    .navigation .snsList .menuList li {
        margin: 0px var(--space-2) 0 0;
    }
    .navigation .snsList .menuList .menu_icon a {
        width: 32px;
        height: 32px;
    }

}


/*===================================================
	all
====================================================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--space-16);
    background: var(--color-bg);
}

body {}

.mainWrap {
    position: relative;
    z-index: var(--z-base);
    font-family: var(--font-base);
	font-size: 16px;
    color: var(--color-text);
    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 .inBox {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: var(--space-12);
    padding: 8%;
    box-shadow: var(--elevation);
}
section .inBox:last-of-type {
    margin-bottom: 0;
}
section .inBox .inBoxBg {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: url(/static/yoani3rd/official/feature/4th_concert/image/bg_inBox_0r2S1b2l.svg);
    background-position: center center;
    background-repeat: repeat-y;
    background-size: contain;
    pointer-events: none;
}
section .inBox .inBoxBg span {
    position: absolute;
    z-index: 1;
    display: block;
    width: 100%;
    left: 0;
}
section .inBox .inBoxBg span.top {
    background: url(/static/yoani3rd/official/feature/4th_concert/image/bg_inBox_top_0r2S1b2l.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 383 / 43;
    top: -1px;
}
section .inBox .inBoxBg span.bottom {
    background: url(/static/yoani3rd/official/feature/4th_concert/image/bg_inBox_btm_0r2S1b2l.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 383 / 43;
    bottom: -1px;
}

section .inBox h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-title);
    font-size: 96px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--color-accent);
    margin-bottom: var(--space-12);
    display: flex;
    align-items: center;
    justify-content: center;
}
section .inBox h3:before {
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
    height: 120px;
    aspect-ratio: 109 / 87;
    background-image: url(/static/yoani3rd/official/feature/4th_concert/image/icn_crown_0r2S1b2l.svg);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

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);
    border: 1px solid var(--color-btn);
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-radius: var(--radius-max);
}
section .inBox .btn.fin a {
	background: var(--color-gray);
    border: 1px solid var(--color-gray);
    pointer-events: none;
}

.note {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
}

.soon {
    text-align: center;
    padding: var(--space-12) 0;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-accent);
}

@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);
        background: var(--color-btn-text);
	}
	
}

@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 .inBox {
        padding: var(--space-8);
        margin-bottom: var(--space-4);
	}
    section .inBox .inBoxBg {}
    section .inBox .inBoxBg span {}
    section .inBox .inBoxBg span.top {}
    section .inBox .inBoxBg span.middle {}
    section .inBox .inBoxBg span.bottom {}

    section .inBox h3 {
        font-size: 48px;
        margin: 0 0 var(--space-4);
    }
    section .inBox h3:before {
        height: 60px;
    }

    section .inBox .btn a {
        width: 90%;
        padding: var(--space-4);
        margin: 0 auto var(--space-2);
    }

    .note {
        font-size: 12px;
    }

    .soon {
        padding: var(--space-6) 0;
        font-size: 16px;
    }

}


/*===================================================
	hero
====================================================*/
#heroView {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#heroView .heroInner {
    position: fixed;
    height: 85%;
    max-width: 85%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: 0.5s ease-out;
}
#heroView .heroInner .mainLogo {}

#heroView .scrollBox {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100svh;
    top: 0;
    pointer-events: none;
    transition: 0.5s ease-out;
}
#heroView .scrollBox .scrollArrow {
    position: absolute;
    width: 2px;
    height: 80px;
    top: 50%;
    transform: translateY(-50%);
    left: var(--space-8);
    background: var(--color-frame);
    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){}

@media screen and (max-width: 960px){

	#heroView {
	    min-height: 450px;
	}
			
	#heroView .heroInner {}
			
    #heroView .scrollBox {}
	#heroView .scrollBox .scrollArrow {}

}


@media screen and (max-width: 600px){

    #heroView .scrollBox {}
	#heroView .scrollBox .scrollArrow {
        width: 1px;
        height: 60px;
        top: initial;
        left: 50%;
        transform: translateX(-50%);
	    bottom: var(--space-6);
	}

}



/*===================================================
	schedule
====================================================*/
#schedule {}
#schedule .inBox {}


#schedule .inBox .scheduleBox {
    background: var(--color-on-box);
    padding: var(--space-8) var(--space-12) var(--space-12);
}
#schedule .inBox .scheduleBox .date {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 var(--space-1);
}
#schedule .inBox .scheduleBox .date span {
    font-size: 14px;
    padding: 0 var(--space-1);
}
#schedule .inBox .scheduleBox .date span:last-child {
    padding: 0 0 0 var(--space-1);
}
#schedule .inBox .scheduleBox .venue {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 var(--space-8);
}
#schedule .inBox .scheduleBox .venue a {
    display: block;
}
#schedule .inBox .scheduleBox .venue a i {
    padding-left: var(--space-2);
}
#schedule .inBox .scheduleBox .detailBox {
    display: flex;
    max-width: 640px;
    margin: 0 auto;
    gap: var(--space-1);
}
#schedule .inBox .scheduleBox .detailBox .dateBox {
    position: relative;
    width: 50%;
    padding: var(--space-4) var(--space-12);
    text-align: center;
    background: var(--color-accent);
    color: var(--color-base);
}
#schedule .inBox .scheduleBox .detailBox .dateBox:last-child {}

#schedule .inBox .scheduleBox .detailBox .dateBox:before {
    display: block;
    position: absolute;
    top: -8px;
    left: -16px;
    width: 88px;
    line-height: 2em;
    font-weight: bold;
    text-align: center;
    transform: rotate(-15deg);
    font-size: 14px;
}
#schedule .inBox .scheduleBox .detailBox .dateBox.fin:before  {
    content: "公演終了";
    background: var(--color-base);
    color: var(--color-text);
}
#schedule .inBox .scheduleBox .detailBox .dateBox.sold:before  {
    content: "完売!";
    background: var(--color-white);
    color: var(--color-base);
}

#schedule .inBox .scheduleBox .detailBox .dateBox .session {
    font-weight: bold;
    margin: 0 0 var(--space-1);
}
#schedule .inBox .scheduleBox .detailBox .dateBox .timeBox {
    display: flex;
}
#schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time {
    width: 50%;
    font-weight: bold;
    font-size: 20px;
}
#schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time:first-child {}
#schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time:last-child {}
#schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time span {
    font-size: 12px;
    padding: 0 var(--space-2) 0 0;
}

@media screen and (min-width: 961px) {

    #schedule .inBox .scheduleBox .venue a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px) {

    #schedule {}
    #schedule h3 {}
    #schedule .inBox {}

    #schedule .inBox .scheduleBox {
        padding: var(--space-4) var(--space-2) var(--space-2);
    }
    #schedule .inBox .scheduleBox .date {
        font-size: 16px;
        margin: 0;
    }
    #schedule .inBox .scheduleBox .date span {
        font-size: 10px;
        padding: 0 var(--space-1);
    }
    #schedule .inBox .scheduleBox .date span:last-child {}
    #schedule .inBox .scheduleBox .venue {
        font-size: 16px;
        margin: 0 0 var(--space-4);
    }
    #schedule .inBox .scheduleBox .venue a {}
    #schedule .inBox .scheduleBox .venue a i {
        padding-left: var(--space-1);
    }
    #schedule .inBox .scheduleBox .detailBox {
        flex-direction: column;
    }
    #schedule .inBox .scheduleBox .detailBox .dateBox {
        width: 100%;
        padding: var(--space-4);
    }
    #schedule .inBox .scheduleBox .detailBox .dateBox:last-child {}

    #schedule .inBox .scheduleBox .detailBox .dateBox:before {
        top: 4px;
        left: -4px;
        width: 72px;
        line-height: 24px;
        transform: rotate(-15deg);
        font-size: 12px;
    }
    #schedule .inBox .scheduleBox .detailBox .dateBox.fin:before  {}
    #schedule .inBox .scheduleBox .detailBox .dateBox.sold:before  {}

    #schedule .inBox .scheduleBox .detailBox .dateBox .session {
        margin-bottom: 0;
    }
    #schedule .inBox .scheduleBox .detailBox .dateBox .timeBox {
        max-width: 240px;
        margin: 0 auto;
    }
    #schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time {
        font-size: 18px;
    }
    #schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time:first-child {}
    #schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time:last-child {}
    #schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time span {
        font-size: 10px;
    }

}
    

/*===================================================
	ticket
====================================================*/
#ticket {}
#ticket h3 {}
#ticket .inBox {}

#ticket .inBox .ticketBoxTit {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 var(--space-6);
    border-left: 4px solid;
    padding: 0 0 0 var(--space-4);
}

#ticket .inBox .ticketBox {}

/*============ accordion ===========*/
#ticket .inBox .op_ticket {
    margin: 0 0 var(--space-1);
}
#ticket .inBox .op_ticket:last-of-type {
    margin: 0;
}
#ticket .op_ticket .ticketTit {
    background: var(--color-white);
    color: var(--color-base);
    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);
    border-radius: 0 0 var(--radius-m) var(--radius-m);
    border: 1px solid var(--color-white);
}

#ticket .op_ticket .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 0 0 var(--space-6);
    margin: 0 0 var(--space-8);
    align-items: stretch;
}
#ticket .op_ticket .detailList:first-child {
    border-top: 1px solid;
    padding: var(--space-6) 0;
}
#ticket .op_ticket .detailList:last-child {
    margin: 0;
}
#ticket .op_ticket .detailList dt {
    width: 20%;
    padding: 0 var(--space-12) 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}
#ticket .op_ticket .detailList dd {
    width: 80%;
    position: relative;
    padding: 0 0 0 var(--space-12);
    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-white);
}
#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-4);
        padding: 0 0 0 var(--space-2);
    }
    #ticket .inBox .ticketBoxTit:after {
        margin-left: var(--space-2);
    }

    #ticket .inBox .ticketBox {}
    #ticket .inBox .ticketBox:last-child {}

    #ticket .inBox .ticketBox .area {
        font-size: 14px;
        margin: 0 0 var(--space-2);
    }

    #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 var(--space-2);
        line-height: 1;
        font-weight: bold;
	}
	#ticket .op_ticket .detailList dd {
	    width: 100%;
	    position: relative;
	    padding: 0;
	}
	#ticket .op_ticket .detailList dd:before {
	    content: none
	}
    section#ticket .inBox .op_ticket .btn a {
        width: 100%;
    }
	
}


/*===================================================
	streaming
====================================================*/
#streaming {}
#streaming h3 {}
#streaming .inBox {}

#streaming .inBox .txtBox {
    padding: var(--space-8);
    background: var(--color-on-box);
    margin: 0 0 var(--space-4);
}
#streaming .inBox .txtBox:nth-last-child(3) {
    margin-bottom: var(--space-12);
}
#streaming .inBox .txtBox .boxTit {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding: 0.25em 1em;
    background: var(--color-accent);
    color: var(--color-base);
    margin: 0 0 var(--space-4);
}
#streaming .inBox .txtBox .boxTxt {}
#streaming .inBox .txtBox .boxTxt p {
    margin-bottom: 5px;
}
#streaming .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #streaming {}
    #streaming h3 {}
    #streaming .inBox {}

    #streaming .inBox .txtBox {
        padding: var(--space-4);
        margin: 0 0 var(--space-1);
    }
    #streaming .inBox .txtBox:nth-last-child(3) {
        margin-bottom: 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 {}

}


/*===================================================
	goods
====================================================*/
#goods {}
#goods h3 {}
#goods .inBox {}

#goods .inBox .goodsList {
    margin-bottom: var(--space-12);
}
#goods .inBox .goodsList li {
    margin-bottom: var(--space-2);
}
#goods .inBox .goodsList li:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #goods {}
    #goods h3 {}
    #goods .inBox {}
    
    #goods .inBox .goodsList {
        margin-bottom: var(--space-4);
    }
    #goods .inBox .goodsList li {
        margin-bottom: var(--space-1);
    }
    #goods .inBox .goodsList li:last-child {}

}


/*===================================================
	cd
====================================================*/
#cd {}
#cd h3 {}
#cd .inBox {}

#cd .inBox .txtBox {
    padding: var(--space-8);
    background: var(--color-on-box);
    margin: 0 0 var(--space-12);
}
#cd .inBox .txtBox .boxTit {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding: 0.25em 1em;
    background: var(--color-accent);
    color: var(--color-base);
    margin: 0 0 var(--space-4);
}
#cd .inBox .txtBox .boxTxt {}
#cd .inBox .txtBox .boxTxt p {
    margin-bottom: 5px;
}
#cd .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}
#cd .cd {
    margin-bottom: var(--space-12);
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

	#cd {}
	#cd h3 {}
	#cd .inBox {}

    #cd {}
    #cd h3 {}
    #cd .inBox {}

    #cd .inBox .txtBox {
        padding: var(--space-4);
        margin: 0 0 var(--space-4);
    }
    #cd .inBox .txtBox .boxTit {
        font-size: 14px;
        margin: 0 0 var(--space-2);
    }
    #cd .inBox .txtBox .boxTxt {}
    #cd .inBox .txtBox .boxTxt p {}
    #cd .cd {
        margin-bottom: var(--space-4);
    }
	
}


/*===================================================
	fanclub
====================================================*/
#fanclub {}
#fanclub h3 {}
#fanclub .inBox {}

#fanclub .inBox .txtBox {
    padding: var(--space-8);
    background: var(--color-on-box);
    margin: 0 0 var(--space-4);
}
#fanclub .inBox .txtBox:nth-last-child(3) {
    margin-bottom: var(--space-12);
}
#fanclub .inBox .txtBox .boxTit {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding: 0.25em 1em;
    background: var(--color-accent);
    color: var(--color-base);
    margin: 0 0 var(--space-4);
}
#fanclub .inBox .txtBox .boxTxt {}
#fanclub .inBox .txtBox .boxTxt p {
    margin-bottom: 5px;
}
#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 {}
    #fanclub h3 {}
    #fanclub .inBox {}

    #fanclub .inBox .txtBox {
        padding: var(--space-4);
        margin: 0 0 var(--space-1);
    }
    #fanclub .inBox .txtBox:nth-last-child(3) {
        margin-bottom: 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 {
    margin: 0 auto;
}
#contact h3 {}
#contact .inBox {}

#contact .inBox .txtBox {
    padding: var(--space-8);
    background: var(--color-on-box);
    margin: 0 0 var(--space-4);
}
#contact .inBox .txtBox:last-child {
    margin-bottom: 0;
}
#contact .inBox .txtBox .boxTit {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding: 0.25em 1em;
    background: var(--color-accent);
    color: var(--color-base);
    margin: 0 0 var(--space-4);
}
#contact .inBox .txtBox .boxTxt {
    margin: 0 0 var(--space-4);
}
#contact .inBox .txtBox .boxTxt:last-child {
    margin: 0;
}
#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;
}
#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
}
#contact .inBox .txtBox:last-child .boxTxt p:first-child {
    font-size: 14px;
    margin: 0 0 var(--space-1);
}

@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 {
        padding: var(--space-4);
        margin: 0 0 var(--space-1);
    }
    #contact .inBox .txtBox:last-child {}
    #contact .inBox .txtBox .boxTit {
        font-size: 14px;
        margin: 0 0 var(--space-2);
    }
    #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: 10px;
    }
    #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 {
        font-size: 10px;
    }
    #contact .inBox .txtBox:last-child .boxTxt p:first-child {
        font-size: 12px;
    }

}


/*===================================================
	footer
====================================================*/
footer {
    position: relative;
}

footer .inner {
    padding: 0 6% 4%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .logo_official {}
footer .logo_official svg {
    fill: var(--color-white);
    width: 150px;
    display: block;
}

footer .logo_yoani {
    width: 250px;
}
footer .logo_yoani a {
    display: block;
    margin: 0 0 var(--space-2);
}

footer .copyright {
    display: block;
    font-size: 10px;
    text-align: right;
}

@media screen and (min-width: 961px){

    footer {
        height: auto !important;
        position: relative;
    }

    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 8% 4%;
    }
    
    footer .inner {
    	padding: 0;
    }

    footer .inner .logo_official {
        margin: 0;
    }
    footer .logo_official svg {
        max-width: 120px;
    }

    footer .inner .logo_yoani {
        width: 45vw;
        max-width: 200px;
    }

    footer .copyright {
        font-size: 10px;
    }

}