@charset "utf-8";
:root {
    
    /* ======================================================
       Font
    ====================================================== */
    --font-base: "Shippori Mincho", serif;

    /* ======================================================
       Colors
    ====================================================== */
    /* Primitive (数値そのもの) */
    --color-black: #333333;
    --color-gray: #adadad;
    --color-white: #ffffff;

    --color-purple: #b84c97;

    --color-blue-light: #D4EFFF;
    --color-blue-light-grd: linear-gradient(180deg,rgba(212, 239, 255, 1) 0%, rgba(252, 227, 242, 1) 100%);

    --color-main-grd-t-b: linear-gradient(180deg,rgba(0, 161, 233, 1) 0%, rgba(67, 45, 141, 1) 50%, rgba(225, 0, 125, 1) 100%);
    --color-main-grd-tl-rb: linear-gradient(135deg,rgba(0, 161, 233, 1) 0%, rgba(67, 45, 141, 1) 50%, rgba(225, 0, 125, 1) 100%);
    --color-main-grd-rb-tl: linear-gradient(315deg,rgba(0, 161, 233, 1) 0%, rgba(67, 45, 141, 1) 50%, rgba(225, 0, 125, 1) 100%);

    --color-main: #0677C1;

    /* Semantic (用途固定) */
    --color-bg: var(--color-blue-light);
    --color-bg-grd: var(--color-blue-light-grd);

    --color-bg-inBox: var(--color-white);
    --color-bg-inBox-border-in-grd: var(--color-main-grd-tl-rb);
    --color-bg-inBox-border-out-grd: var(--color-main-grd-rb-tl);

    --color-text: var(--color-main);
    --color-accent: var(--color-main);

    --color-tag-text: var(--color-white);
    --color-tag-bg: var(--color-main);

    --color-btn: var(--color-main-grd-tl-rb);
    --color-btn-text: var(--color-white);
    --color-btn-fin: var(--color-gray);

    --color-nav-bg: var(--color-main-grd-tl-rb);
    --color-nav-text: var(--color-white);

    --color-accordion-bg: var(--color-main);
    --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) * 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-full: 100vmax; /* 完全円形用 */

    /* ======================================================
       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-white);
    z-index: var(--z-loader);
    pointer-events: none;
}

.js .bgBox .logoBox,
.js .mainLogo {
    opacity: 0;
    transition: 1s ease-out;
    transform: scale(0.9);
}
.js .loaded .bgBox .logoBox {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1.25s;
}
.js .loaded .mainLogo {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1.75s;
}

.js .mainLogo img {
    transition: .5s ease-out;
}
.js .scrolled .mainLogo img {
    opacity: 0.15;
}

.js #fv .scrollBox {
    transition: .5s ease-out;
}
.js .scrolled #fv .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){}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    position: fixed;
    z-index: var(--z-background);
    inset: 0;
    min-height: 600px;
    background: var(--color-bg);
    background: var(--color-bg-grd);
    pointer-events: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bgBox .bg01 {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: url(/static/yoani3rd/official/feature/tour2026/image/bg_main.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    mix-blend-mode: overlay;
}
.bgBox .logoBox {
    position: absolute;
    z-index: 2;
    max-width: 80%;
    max-height: 80vh;
    min-height: calc(600px * 0.8);
    aspect-ratio: 1553 / 1646;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bgBox .logoBox .mainLogo {
    position: relative;
    z-index: 2;
}
.bgBox .logoBox .bgItem {
    position: absolute;
    z-index: 1;
    aspect-ratio: 1060 / 1280;
}

@media screen and (min-width: 961px) {

    .bgBox .logoBox .bgItem {
        height: 120vh;
        min-height: calc(600px * 1.20);
        top: 50%;
        transform: translateY(-50%);
    }
    .bgBox .logoBox .bgItem.item01 { right: 55%; }
    .bgBox .logoBox .bgItem.item02 { left: 55%; }

}

@media screen and (max-width: 960px) {

    .bgBox {
        min-height: 450px;
	}
    .bgBox .bg {}
    .bgBox .bg01 {
        background: url(/static/yoani3rd/official/feature/tour2026/image/bg_main_sp.jpg) no-repeat;
        background-position: center center;
        background-size: cover;
    }
    .bgBox .logoBox {
        min-height: initial;
    }
    .bgBox .logoBox .mainLogo {}
    .bgBox .logoBox .bgItem {
        width: calc(100vw + 4px);
        left: 50%;
        transform: translateX(-50%);
    }
    .bgBox .logoBox .bgItem.item01 { 
        bottom: 65%;
        display: flex;
        flex-direction: column-reverse;
    }
    .bgBox .logoBox .bgItem.item02 { 
        top: 65%; 
    }
    
}



/*===================================================
    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-radius: var(--radius-full);
}
.hamBtn:after {
    position: absolute;
    z-index: 2;
    content: "";
    inset: 0;
    background: url(/static/yoani3rd/official/feature/tour2026/image/ph_watercolor.jpg);
    background-position: center center;
    background-size: cover;
    mix-blend-mode: soft-light;
    pointer-events: none;
    border-radius: var(--radius-full);
}
.hamBtn .border {
    position: absolute;
    z-index: 1;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: var(--radius-full);
    pointer-events: none;
}
.hamBtn .border::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: var(--color-bg-inBox-border-out-grd);
    -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.hamBtn .hamMenu span {
    display: block;
    position: absolute;
    z-index: 3;
    left: 20%;
    width: 60%;
    height: 2px;
    background: var(--color-white);
    transition: all .3s ease;
}
.hamBtn span:nth-of-type(1) {
    top: 14px;
}
.hamBtn span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn span:nth-of-type(3) {
    bottom: 14px;
}
.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-white);
    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 .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);
}
.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;
    font-style: italic;
}

.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;
    font-style: italic;
}
.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-full);
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    background: var(--color-tag-bg);
    color: var(--color-tag-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: var(--space-4);
        top: var(--space-4);
        width: 40px;
        height: 40px;
    }
    .hamBtn span:nth-of-type(1) {
        top: 10px;
    }
    .hamBtn span:nth-of-type(3) {
        bottom: 10px;
    }

	.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-6);
    }
    .navigation .headerNav li {
        margin: 0 0 var(--space-3);
    }
    .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);
}

.inBox {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: var(--space-8);
    padding: var(--space-16);
}
.inBox:last-of-type {
    margin-bottom: 0;
}
.inBoxBg {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: var(--color-bg-inBox);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.inBoxBg:before,
.inBoxBg:after {
    position: absolute;
    content: "";
    inset: 0;
}
.inBoxBg:before {
    z-index: 2;
    border: 3px solid;
    border-image: var(--color-bg-inBox-border-out-grd) 1;
}
.inBoxBg:after {
    z-index: 3;
    background: url(/static/yoani3rd/official/feature/tour2026/image/bg_inBox.png);
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 100% auto;
    mix-blend-mode: soft-light;
}
.inBoxBg span {
    position: absolute;
    z-index: 1;
    display: block;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border: 3px solid;
    border-image: var(--color-bg-inBox-border-in-grd) 1;
}

h3 {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 960px;
    line-height: 1;
    margin: 0 auto var(--space-16);
    pointer-events: none;
}

.txtBox {
    margin: 0 0 var(--space-8);
    padding: 0 0 var(--space-8);
    border-bottom: 1px solid;
}
.txtBox:nth-last-child(2) {
    margin: 0 0 var(--space-10);
    padding: 0;
    border-bottom: none;
}
#contact .txtBox:nth-last-child(2) {
    margin: 0;
}
.txtBox .boxTit {
    display: inline-block;
    color: var(--color-tag-text);
    background: var(--color-tag-bg);
    font-weight: bold;
    padding: 0.25em 1em;
    margin: 0 0 var(--space-3)
}
.txtBox .boxTxt {
    margin-bottom: var(--space-2);
}
.txtBox .boxTxt:last-of-type {
    margin-bottom: 0;
}
.txtBox .boxTxt p {
    margin-bottom: var(--space-1);
}
.txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}
.txtBox .boxTxt a {
    text-decoration: underline;
}

.btn a {
    position: relative;
	display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: var(--space-6) var(--space-4);
    color: var(--color-btn-text);
    background: var(--color-btn);
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-radius: var(--radius-full);
    overflow: hidden;
}
.btn.fin a {
	background: var(--color-gray);
    border: 1px solid var(--color-gray);
    pointer-events: none;
}
.btn a:after {
    position: absolute;
    z-index: 2;
    content: "";
    inset: 0;
    background: url(/static/yoani3rd/official/feature/tour2026/image/ph_watercolor.jpg);
    background-position: center center;
    background-size: cover;
    mix-blend-mode: soft-light;
    pointer-events: none;
}
.btn.fin a:after {
    display: 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;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	a:hover {
        opacity: 0.7;
	}
	
}

@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);
    }

	.inBox {
        padding: var(--space-6);
        margin-bottom: var(--space-4);
	}
    .inBoxBg:before {
        border: 2px solid;
        border-image: var(--color-bg-inBox-border-out-grd) 1;
    }
    .inBoxBg span {
        width: calc(100% - 8px);
        height: calc(100% - 8px);
        border: 2px solid;
        border-image: var(--color-bg-inBox-border-in-grd) 1;
    }

    h3 {
        margin: 0 auto var(--space-6);
    }

    .txtBox {
        margin: 0 0 var(--space-5);
        padding: 0 0 var(--space-4);
    }
    .txtBox:nth-last-child(2) {
        margin: 0 0 var(--space-6);
    }
    .txtBox .boxTit {
        font-size: 14px;
        padding: 0.4em 1em;
    }
    .txtBox .boxTxt p.note {
        font-size: 12px;
    }

    .btn a {
        width: 90%;
        padding: var(--space-5) var(--space-4);
    }

    .note {
        font-size: 12px;
    }

    .soon {
        padding: var(--space-6) 0;
        font-size: 20px;
    }

}


/*===================================================
	hero
====================================================*/
#fv {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#fv .scrollBox {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100svh;
    top: 0;
    pointer-events: none;
    transition: 0.5s ease-out;
}
#fv .scrollBox .scrollArrow {
    position: absolute;
    width: 2px;
    height: 80px;
    left: var(--space-8);
    bottom: var(--space-8);
    background: var(--color-main-grd-t-b);
    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){

	#fv {
	    min-height: 450px;
	}

	#fv .scrollBox .scrollArrow {
        width: 1px;
        height: 64px;
        left: var(--space-4);
        bottom: var(--space-4);
	}

}



/*===================================================
	schedule
====================================================*/
.tourDateBox {}
.tourDateBox .tourDateList {
    position: relative;
}

.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;
}
.tourDateBox .tourDateList.fin:before  {
    content: "公演終了";
    background: var(--color-tag-bg);
    color: var(--color-tag-text);
}
.tourDateBox .tourDateList.sold:before  {
    content: "両部完売!";
    background: var(--color-purple);
    color: var(--color-white);
}
.tourDateBox .tourDateList.day:before  {
    content: "昼の部完売!";
    background: var(--color-purple);
    color: var(--color-white);
}
.tourDateBox .tourDateList.night:before  {
    content: "夜の部完売!";
    background: var(--color-purple);
    color: var(--color-white);
}

.tourDateBox .tourDateList.listHead {
    padding: 0 0 var(--space-2);
}
.tourDateBox .tourDateList.listHead li {
    justify-content: center;
    font-size: 70%;
    font-weight: 600;
}
.tourDateBox .tourDateList.listHead li:after {
    display: none;
}

.tourDateBox .tourDateList {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--color-text);
    padding: 0 0 var(--space-4);
    margin: 0 0 var(--space-4);
    position: relative;
}
.tourDateBox .tourDateList:last-child {
    margin: 0;
}
.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;
}
.tourDateBox .tourDateList li:after {
    content: "";
    position: absolute;
    background: var(--color-text);
    top: 5%;
    right: 0;
    width: 1px;
    height: 90%;
} 
.tourDateBox .tourDateList li.scheduleTime:after {
    display: none;
}
.tourDateBox .tourDateList .scheduleDate {
    width: 31%;
    font-size: 18px;
    font-weight: bold;
}
.tourDateBox .tourDateList .scheduleDate .day {
    font-size: 12px;
    padding: 0 var(--space-1);
}
.tourDateBox .tourDateList .scheduleDate .day.week {
    padding: 0 0 0 var(--space-1);
}
.tourDateBox .tourDateList .scheduleArea {
    width: 9%;
}
.tourDateBox .tourDateList .scheduleVenue {
    width: 28%;
    text-align: center;
}
.tourDateBox .tourDateList .scheduleTime {
    width: 32%;
}
.tourDateBox .tourDateList .scheduleTime span {
    display: inline-block;
    font-size: 12px;
    color: var(--color-tag-text);
    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){

    .tourDateBox .tourDateList {
        padding: 0px 0 var(--space-4);
        margin: 0 0 var(--space-4);
    }
    .tourDateBox .tourDateList:before {
        position: relative;
        transform: rotate(0deg);
        top: 0;
        left: 0;
        margin-bottom: var(--space-1);
    }
    
    .tourDateBox .tourDateList.listHead {
        padding: 0;
    }
	.tourDateBox .tourDateList.listHead li {
	    display: none;
	}

	.tourDateBox .tourDateList {
        display: block;
        padding: 0 0 var(--space-5);
        margin: 0 0 var(--space-4);
        border-bottom: 1px solid var(--color-text);
	}
	.tourDateBox .tourDateList li {
	    padding: 0;
	    display: block;
	    font-size: 100%;
	}
	.tourDateBox .tourDateList li:after{
		display: none;
	} 
	.tourDateBox .tourDateList .scheduleDate {
	    width: 100%;
        font-size: 16px;
        margin: 0 0 var(--space-1);
        font-weight: 400;
    }
    .tourDateBox .tourDateList .scheduleDate .day {
        font-size: 10px;
        padding: 0 2px;
    }
	 .tourDateBox .tourDateList .scheduleDate .sp {
		padding: 0 0 0 var(--space-2);
	}
	 .tourDateBox .tourDateList .scheduleArea {
		display: none;
	}
	.tourDateBox .tourDateList .scheduleVenue {
        width: 100%;
        text-align: left;
        font-size: 18px;
        margin: 0 0 var(--space-2);
        font-weight: bold;
	}
	.tourDateBox .tourDateList .scheduleTime {
        width: 100%;
        font-size: 12px;
	}
    .tourDateBox .tourDateList .scheduleTime span {
        margin: 0 var(--space-1) var(--space-1) 0;
    }
    .tourDateBox .tourDateList .scheduleTime p span:last-child {
        margin: 0 var(--space-1) 0 0;
    }

}
    


/*===================================================
	ticket
====================================================*/
.ticketBoxTit {
    display: flex;
    font-size: 24px;
    font-weight: bold;
    align-items: center;
    margin: 0 0 var(--space-4);
}
.ticketBoxTit:after {
    content: "";
    flex-grow: 1;
    border-top: 1px solid;
    margin-left: var(--space-6);
}

.areaBox {
    margin: 0 0 var(--space-6);
}
.areaBox:nth-last-child(2) {
    margin-bottom: 0;
}

.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 ===========*/
.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);
    border: 1px solid;
    border-top: none;
    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);
}
.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){

	.ticketBoxTit {
        font-size: 16px;
        margin: 0 0 var(--space-3);
    }
    .ticketBoxTit:after {
        margin-left: var(--space-3);
    }

    .areaBox {
        margin: 0 0 var(--space-4);
    }

    .areaBox .area {
        font-size: 14px;
    }

	.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 10px;
        line-height: 1;
        font-weight: bold;
	}
    .op_ticket .detailList dt .detailInner .txt {
        border-left: 3px solid;
        padding: 0 0 0 10px;

    }
	.op_ticket .detailList dd {
	    width: 100%;
	    position: relative;
	    padding: 0;
	}
	.op_ticket .detailList dd:before {
	    content: none
	}

    .op_ticket .ticketDetail .btn a {
        width: 100%;
    }
	
}



/*===================================================
	streaming
====================================================*/
#streaming {}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #streaming {}

}


/*===================================================
	goods
====================================================*/
.goodsList {
    margin-bottom: var(--space-12);
}
.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){

    .goodsList {
        margin-bottom: var(--space-4);
    }
    .goodsList li {
        margin-bottom: var(--space-1);
    }

}



/*===================================================
	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 {}
.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){}

@media screen and (max-width: 960px){

    #contact {}

    .contactList {
        font-size: 12px;
        gap: var(--space-3);
    }
    .contactList li {
        width: 100%;
    }
    .contactList li .venue {
        margin: 0 0 var(--space-1);
    }
    .contactList li .note {
        font-size: 10px;
    }


}



/*===================================================
	footer
====================================================*/
footer {
    position: relative;
    z-index: var(--z-footer);
}

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-text);
    width: 160px;
    display: block;
}

footer .logo_yoani {
    width: 240px;
}
footer .logo_yoani a {
    display: block;
    margin: 0 0 var(--space-4);
}

footer .copyright {
    display: block;
    font-size: 10px;
    text-align: right;
    color: var(--color-black);
}

@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 6% 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 {}

}