@charset "utf-8";
:root {
    
    /* ======================================================
       Font
    ====================================================== */
    --font-base: "Roboto", "Noto Sans JP", sans-serif;
    --font-title: "blaacck", sans-serif;

    /* ======================================================
       Colors
    ====================================================== */
    /* Primitive (数値そのもの) */
    --color-black: #000000;
    --color-gray: #cbcbcb;
    --color-white: #ffffff;

    --color-blue: #00AFEC;
    --color-yellow: #FFD900;
    --color-orange: #ED6C00;

    --color-blue-grd: linear-gradient(180deg,rgba(241, 250, 254, 1) 0%, rgba(0, 175, 236, 1) 100%);

    /* Semantic (用途固定) */
    --color-bg: var(--color-blue);
    --color-bg-inBox: var(--color-white);

    --color-text: var(--color-blue);
    --color-accent: var(--color-yellow);
    --color-border: var(--color-black);

    --color-tag-text: var(--color-white);
    --color-tag-bg: var(--color-blue);

    --color-btn: var(--color-yellow);
    --color-btn-text: var(--color-black);
    --color-btn-fin: var(--color-gray);

    --color-nav-btn: var(--color-yellow);
    --color-nav-text: var(--color-blue);
    --color-nav-bg: var(--color-white);

    --color-accordion-bg: var(--color-blue);
    --color-accordion-text: var(--color-white);
    --color-accordion-bg-fin: var(--color-white);
    --color-accordion-text-fin: var(--color-blue);

    /* ======================================================
       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: 2;  
    --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-l: 16px;
    --radius-full: 9999px; /* 完全円形用 */

    /* ======================================================
       Z-index - 基本レイヤー
    ====================================================== */
    --z-background: -1;   /* 背景 */
    --z-base: 1;          /* 通常コンテンツ */
    --z-content: 10;      /* メインコンテンツ */
    --z-float: 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 #fv .fvTit,
.js .floatBox img {
    opacity:0;
    transition: 0.5s ease-out;
}
.js .loaded #fv .fvTit,
.js .loaded .floatBox img {
    opacity:1;
    transition-delay: 1.5s;
}

.js #fv .fvTit img {
    transition: .5s ease-out;
}
.js .scrolled #fv .fvTit img {
    opacity: 0;
}

.js #fv .scrollBox,
.js #fv .artistLogo {
    transition: .5s ease-out;
}
.js .scrolled #fv .scrollBox,
.js .scrolled #fv .artistLogo {
    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){}



/*===================================================
    AOP
====================================================*/
body header,
body .header--bg,
body .drawer__fc,
body .block--sns,
body .logo--area,
body .drawer__btn,
body .block--video__bg,
body footer {
    display: none;
}

body .wrap {
    padding: 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;
}
.bgBox .inBg {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: url(/static/ligareaz/fanclub/feature/aozoraSummerFes2026/image/bg_pc_rQGwjWhm.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    .bgBox {
        min-height: 450px;
    }
    .bgBox .inBg {
        background: url(/static/ligareaz/fanclub/feature/aozoraSummerFes2026/image/bg_sp_rQGwjWhm.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

}



/*===================================================
    nav
====================================================*/
.hamBtn {
    position: fixed;
    z-index: var(--z-nav-btn);
    display: block;
    right: var(--space-8);
    top: var(--space-8);
    width: 48px;
    height: 48px;
    transition: all .3s ease;
    cursor: pointer;
    background: var(--color-nav-btn);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
}
.hamBtn .hamMenu span {
    display: block;
    position: absolute;
    z-index: 3;
    left: 20%;
    width: 60%;
    height: 2px;
    background: var(--color-border);
    transition: all .3s ease;
}
.hamBtn span:nth-of-type(1) {
    top: 12px;
}
.hamBtn span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn span:nth-of-type(3) {
    bottom: 12px;
}
.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-10);
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li:after {
    content: none;
}
.navigation .headerNav li a {
    font-family: var(--font-title);
    font-size: 40px;
    letter-spacing: 0.03em;
    font-weight: bold;
    text-decoration: none;
    line-height: 1;
}
.navigation .headerNav li a.ja {
    font-family: var(--font-base);
    font-size: 32px;
}

.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 .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: 60%;
        max-width: 240px;
        margin: 0px 0 var(--space-8);
    }
    .navigation .headerNav li {
        margin: 0 0 var(--space-4);
    }
    .navigation .headerNav li a {
        font-size: 32px;
    }
    .navigation .headerNav li a.ja {
        font-size: 26px;
    }
    .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-3) 0 0;
    }
    .navigation .snsList{
        margin-bottom: var(--space-2);
        justify-content: center;
    }
    .navigation .snsList .navListTit {
        font-size: 16px;
        margin-right: var(--space-4);
    }
    .navigation .snsList .menuList li {
        margin: 0px var(--space-3) 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;
}

.floatBox {
    position: fixed;
    z-index: var(--z-float);
    right: var(--space-4);
    bottom: var(--space-4);
    width: 12.5%;
    max-width: 160px;
    aspect-ratio: 1 / 1;
    transition: all 0.5s ease-out;
}
.mainWrap:has(#ticket.on) .floatBox {
    opacity: 0;
    pointer-events: none;
}
.floatBox a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.floatBox a .floatTxt {
    position: absolute;
    z-index: 2;
}
.floatBox a .floatBg {
    position: absolute;
    z-index: 1;
}
.floatBox a .floatBg img {
    animation: floatAnim 30s linear infinite;
}
@keyframes floatAnim {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(-360deg);
    }
  }

.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);
    background: var(--color-bg-inBox);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-l);
    box-shadow: 4px 4px 0px var(--color-border);
}
.inBox:last-of-type {
    margin-bottom: 0;
}

h3 {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 560px;
    line-height: 1;
    margin: 0 auto var(--space-12);
    pointer-events: none;
}
h3.ja {
    width: 80%;
    max-width: calc(1200px * 0.8);
}

.mainBtn 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);
    line-height: 1.5;
    border: 2px solid;
    box-shadow: 4px 4px 0px var(--color-border);
    overflow: hidden;
}
.mainBtn.fin a {
	background: var(--color-gray);
    pointer-events: none;
}
.mainBtn 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;
}
.mainBtn.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;
}

.copy {
    font-size: 10px;
    color: var(--color-black);
    text-align: center;
    padding-bottom: var(--space-4);
}

@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;
    }

    .floatBox {
        width: 30%;
        max-width: 120px;
        right: var(--space-2);
        bottom: var(--space-2);
    }

    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);
	}

    h3 {
        width: 70%;
        max-width: 480px;
        margin: 0 auto var(--space-6);
    }
    h3.ja {
        width: 90%;
        max-width: calc(960px * 0.9);
    }

    .mainBtn a {
        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 .fvTit {
    position: fixed;
    z-index: 2;
    max-width: 80%;
    min-height: calc(600px * 0.85);
    max-height: 85svh;
    aspect-ratio: 1600 / 990;
    display: flex;
    justify-content: center;
    align-items: center;
}

#fv .artistLogo {
    position: fixed;
    z-index: 1;
    max-width: 240px;
    top: var(--space-8);
    left: var(--space-8);
}

#fv .scrollBox {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100svh;
    top: 0;
    left: 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-border);
    animation: scrollArrow 3s cubic-bezier(.19,1,.22,1) 0.5s infinite;
}
@keyframes scrollArrow{
    0% {clip-path: inset(0 0 100% 0);}
    25% {clip-path: inset(0 0 0 0);}
    75% {clip-path: inset(0 0 0 0);}
    100% {clip-path: inset(100% 0 0 0);}
}

@media screen and (min-width: 961px){

    #fv .artistLogo a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

	#fv {
	    min-height: 450px;
	}

    #fv .fvTit {
        max-width: 92.5%;
        min-height: initial;
    }

    #fv .artistLogo {
        width: 160px;
        top: var(--space-6);
        left: var(--space-4);
    }

	#fv .scrollBox .scrollArrow {
        width: 1px;
        height: 64px;
        left: var(--space-4);
        bottom: var(--space-4);
	}

}



/*===================================================
	lead
====================================================*/
.lead {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.lead p {
    margin-bottom: var(--space-4);
}
.lead p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    .lead {
        font-size: clamp(16px, 4vw, 18px);
    }
    .lead p {
        margin-bottom: var(--space-2);
    }

}



/*===================================================
	plan
====================================================*/
.newsList {}
.newsList li {
    margin-bottom: var(--space-2);
}
.newsList li:last-child {
    margin-bottom: 0;
}
.newsList li a {
    display: block;
    color: var(--color-white);
    background: var(--color-blue);
    padding: var(--space-8) var(--space-12);
    border-radius: var(--radius-m);
    line-height: 1.5;
}
.newsList li a .newsDate {
    margin: 0 0 var(--space-1);
    font-weight: bold;
}
.newsList li a .newsDate span {
    font-size: 14px;
    color: var(--color-accent);
    margin: 0 0 0 var(--space-2);
}
.newsList li a .newsTit {}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    .newsList li a {
        padding: var(--space-4) var(--space-4);
    }

}



/*===================================================
	plan
====================================================*/
.planLead {    
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: var(--space-16);
}
.planLead p {
    margin-bottom: var(--space-2);
}
.planLead p:last-child {
    margin-bottom: 0;
}

.planList li {
    background: var(--color-orange);
    color: var(--color-white);
    padding: var(--space-8) var(--space-12);
    margin-bottom: var(--space-2);
    border-radius: var(--radius-m);
    line-height: 1.5;
    text-align: center;
}
.planList li:last-child {
    margin-bottom: 0;
}

.planList li .planTit {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px dashed;
    padding-bottom: var(--space-6);
    margin-bottom: var(--space-6);
}

.planList li .planTxt {
    margin-bottom: var(--space-6);
}
.planList li .planTxt:last-child {
    margin-bottom: 0;
}
.planList li .planTxt p {
    margin-bottom: var(--space-2);
}
.planList li .planTxt p:last-child {
    margin-bottom: 0;
}

.planList li .mainBtn a {
    font-size: 16px;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    .planLead {
        font-size: clamp(16px, 4vw, 18px);
        margin-bottom: var(--space-6);
    }
    .planLead p {
        margin-bottom: var(--space-1);
    }

    .planList li {
        padding: var(--space-6) var(--space-4);
    }
    
    .planList li .planTit {
        font-size: 16px;
        padding-bottom: var(--space-4);
        margin-bottom: var(--space-4);
    }

    .planList li .planTxt {
        text-align: left;
        margin-bottom: var(--space-4);
    }
    .planList li .planTxt p {
        margin-bottom: var(--space-1);
    }

    .planList li .mainBtn a {}

}



/*===================================================
	schedule
====================================================*/
.scheduleTit {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    color: var(--color-tag-text);
    background: var(--color-tag-bg);
    padding: 0.5em 0.75em;
    margin: 0 0 var(--space-6);
    border-radius: var(--radius-s);
}

.tourDateBox .tourDateList.listHead {
    padding: 0 0 var(--space-2);
}
.tourDateBox .tourDateList.listHead li {
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    padding: 0;
}
.tourDateBox .tourDateList.listHead li:after {
    display: none;
}

.tourDateBox .tourDateList {
    position: relative;
    padding: 0 0 var(--space-4);
    margin: 0 0 var(--space-4);
    border-bottom: 1px solid var(--color-text);
    display: flex;
    align-items: stretch;
}
.tourDateBox .tourDateList:last-child {
    margin: 0;
}
.tourDateBox .tourDateList li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 0 var(--space-4);
}
.tourDateBox .tourDateList li:after{
    content: "";
    position: absolute;
    background: var(--color-text);
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
} 
.tourDateBox .tourDateList .scheduleDate {
    position: relative;
    width: 31%;
}
.tourDateBox .tourDateList .scheduleDate .scheduleInner .date {
    font-family: var(--font-base);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.03em;
}
.tourDateBox .tourDateList .scheduleDate .scheduleInner .date .week {
    display: inline-block;
    font-size: 14px;
    margin: 0 0 0 var(--space-1);
}
.tourDateBox .tourDateList .scheduleArea {
    width: 15%;
}
.tourDateBox .tourDateList .scheduleVenue {
    width: 32%;
    text-align: center;
}
.tourDateBox .tourDateList .scheduleTime {
    width: 22%;
}
.tourDateBox .tourDateList .scheduleTime:after {
	display: none;
}

.tourDateBox .infoBox {
    font-size: 12px;
}
.tourDateBox .infoBox .tit {
    font-weight: bold;
    margin: 0 0 var(--space-1);
}
.tourDateBox .infoBox .txt {}
.tourDateBox .infoBox .txt a {
    text-decoration: underline;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    .scheduleTit {
        font-size: 16px;
        line-height: 1.4;
        padding: 0.75em 0.75em 0.5em;
        margin: 0 0 var(--space-3);
    }

    .tourDateBox {
        padding: 0;
        border-top: none;
        margin: 0 auto;
    }
    .tourDateBox .tourDateList.listHead {
        padding: 0;
    }
	.tourDateBox .tourDateList.listHead li {
	    display: none;
	}

	.tourDateBox .tourDateList {
        display: block;
        padding: 0 0 var(--space-3);
        margin: 0 0 var(--space-4);
        border-bottom: 1px dashed;
	}
	.tourDateBox .tourDateList li {
	    padding: 0;
	    display: block;
	    font-size: 100%;
	}
	.tourDateBox .tourDateList li:after{
		display: none;
	} 
	.tourDateBox .tourDateList .scheduleDate {
	    width: 100%;
	}
    .tourDateBox .tourDateList .scheduleDate .scheduleInner .date {
        margin: 0;
        font-size: 20px;
    }
    .tourDateBox .tourDateList .scheduleDate .scheduleInner .date .week {
        font-size: 12px;
    }
    .tourDateBox .tourDateList .scheduleDate .scheduleInner .date .area {
        display: inline-block;
        padding: 0 0 0 var(--space-2);
        font-size: 16px;
    }
	.tourDateBox .tourDateList .scheduleArea {
		display: none;
	}
	.tourDateBox .tourDateList .scheduleVenue {
	    width: 100%;
	    text-align: left;
	    font-size: 20px;
	    margin: 0 0 var(--space-2);
        font-weight: bold;
	}
	.tourDateBox .tourDateList .scheduleTime {
	    width: 100%;
	    margin: 0;
	}
	.tourDateBox .tourDateList .scheduleTime .subTxt {
        font-size: 12px;
	    line-height: 1;
        width: 100%;
        margin: 0 0 2px;
	}
    .tourDateBox .tourDateList .scheduleTime .time {}

    .tourDateBox .infoBox .tit {
        font-size: 12px;
        border-left: 4px solid;
        padding: 0 0 0 var(--space-2);
    }

}
    


/*===================================================
	ticket
====================================================*/
.priceBox  {
    padding: var(--space-12);
    margin: 0 auto var(--space-6);
    border: 1px solid;
    border-radius: var(--radius-m);
}
.priceBox .priceInBox {
    position: relative;
    padding: 0 0 var(--space-8);
    margin: 0 0 var(--space-10);
    border-bottom: 1px dashed;
}
.priceBox .priceInBox:last-child {
    margin: 0;
    padding: 0;
    border: none;
}
.priceBox .priceInBox.sold:after {
    position: absolute;
    z-index: 2;
    content: "SOLD OUT";
    font-size: 32px;
    top: calc(50% - 32px / 2);
    left: var(--space-6);
    transform: translateY(-50%) rotate(-10deg);
    line-height: 1;
    color: var(--color-white);
    background: #ed6c00d9;
    padding: var(--space-3) var(--space-6);
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.03em;
    pointer-events: none;
    border-radius: var(--radius-s);
}
.priceBox .priceInBox .priceTit {
    display: inline-block;
    color: var(--color-tag-text);
    background: var(--color-tag-bg);
    border-radius: var(--radius-s);
    font-size: 18px;
    line-height: 1em;
    font-weight: bold;
    padding: var(--space-3) var(--space-4);
    margin-bottom: var(--space-2);
}
.priceBox .priceInBox .priceTit span {
    padding-left: var(--space-2);
}
.priceBox .priceInBox .price {
    font-size: 28px;
    font-weight:bold;
    margin: 0 0 var(--space-1);
}
.priceBox .priceInBox .price .yen {
    font-size: 16px;
    padding: 0 var(--space-1) 0 0;
}
.priceBox .priceInBox .price .tax {
    font-size: 16px;
    padding: 0 0 0 var(--space-1);
}
.priceBox .priceInBox .priceNote {
    margin: 0 0 var(--space-4);
}
.priceBox .priceInBox .priceNote:last-child {
    margin-bottom: 0;
}
.noteList {}
.priceBox .noteList {
    margin-bottom: 0;
}
.noteList li {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin: 0 0 var(--space-1);
}
.noteList li:last-child {
    margin: 0;
}

/* op_ticket */
.op_ticket {
    margin: 0 0 var(--space-2);
}
.op_ticket:last-of-type {
    margin: 0;
}
.op_ticket .ticketTit {
    position: relative;
    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;
    border-radius: var(--radius-m);
    cursor: pointer;
    transition: 0.5s ease;
}
.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 .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-6);
    margin: 0 0 var(--space-6);
    align-items: stretch;
}
.op_ticket .detailList:first-child {
    border-top: 1px solid;
    padding: var(--space-6) 0;
}
.op_ticket .detailList:last-of-type {
    margin-bottom: var(--space-8);
}
.op_ticket .detailList dt {
    width: 20%;
    padding: 0 var(--space-12) 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.op_ticket .detailList dd {
    width: 80%;
    position: relative;
    padding: 0 0 0 var(--space-12);
    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;
}

/*============ accordion fin ===========*/
.op_ticket.op_ticket_fin {
    margin-top: var(--space-6);
}
.op_ticket .ticketTit.ticketTitFin {
    background: var(--color-accordion-bg-fin);
    color: var(--color-accordion-text-fin);
    border: 1px solid var(--color-accordion-text-fin);
    border-radius: var(--radius-m);
}
.op_ticket .ticketDetail.ticketDetailFin {
    padding: var(--space-2) 0 0;
    border: none;
    border-radius: 0;
}

.mainBtnBox {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: var(--space-6);
}
.mainBtnBox .mainBtn {
    width: calc(100% / 3 - 32px / 3);
    max-width: 320px;
}
.mainBtnNote {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
}

@media screen and (min-width: 961px){

    .op_ticket .ticketTit:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

     .priceBox  {
        margin: 0 0 var(--space-3);
        padding: var(--space-4);
    }
    .priceBox .priceInBox {
        margin: 0 0 var(--space-5);
        padding: 0 0 var(--space-4);
    }
    .priceBox .priceInBox.sold:after {
        font-size: 24px;
        top: calc(50% - 16px / 2);
        left: var(--space-4);
        padding: var(--space-2) var(--space-4);
    }
    .priceBox .priceInBox .priceTit {
        font-size: 16px;
        padding: var(--space-2) var(--space-3);
        line-height: 1.5;
    }
    .priceBox .priceInBox .priceTit span {
        display: block;
        padding: 0;
        font-size: 12px;
    }
    .priceBox .priceInBox .price {
        font-size: 20px;
        margin: 0;
    }
    .priceBox .priceInBox .price .yen {
        font-size: 12px;
    }
    .priceBox .priceInBox .price .tax {
        font-size: 12px;
    }
    .priceBox .priceInBox .priceNote {
        margin: 0 0 var(--space-2);
    }
    .noteList {}
    .noteList li {
        font-size: 12px;
    }

    /* op_ticket */
    .op_ticket {
        margin: 0 0 var(--space-1);
    }
	.op_ticket .ticketTit {
        padding: var(--space-5) var(--space-10) var(--space-5) var(--space-4);
        font-size: 14px;
	}
    .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) var(--space-4) var(--space-6);
        font-size: 14px;
	}
	.op_ticket .detailList {
	    display: block;
	    margin: 0 0 var(--space-4);
        padding-bottom: var(--space-4);
	}
    .op_ticket .detailList:last-of-type {
        margin-bottom: var(--space-6);
    }
	.op_ticket .detailList:first-child {
        padding: var(--space-4) 0;
    }
	.op_ticket .detailList dt {
        width: 100%;
        margin: 0 0 var(--space-2);
        font-weight: bold;
        border-left: 4px solid;
        padding: 0 0 0 var(--space-2);
	}
	.op_ticket .detailList dd {
	    width: 100%;
	    position: relative;
	    padding: 0;
	}
	.op_ticket .detailList dd:before {
	    content: none
	}

    /*============ accordion fin ===========*/
    .op_ticket.op_ticket_fin {
        margin-top: var(--space-2);
    }          
    .op_ticket .ticketDetail.ticketDetailFin {
        padding: var(--space-1) 0 0;
    }

    .mainBtnBox {
        flex-direction: column;
        margin-bottom: var(--space-4);
    }
    .mainBtnBox .mainBtn {
        width: 100%;
        margin: 0 auto;
    }
    .mainBtnNote {
        font-size: 12px;
    }
	
}






/*===================================================
	deco
====================================================*/
.deco {
    position: absolute;
    z-index: 1;
    display: block;
    max-width: 120px;
    pointer-events: none;
}

/* lead */
.deco.deco16 {
    top: -17%;
    left: 6%;
    width: 13%;
    max-width: 140px;
}
.deco.deco17 {
    top: 32%;
    right: -2%;
    width: 8%;
    transform: rotate(30deg);
    max-width: 80px;
}
.deco.deco18 {
    bottom: -14%;
    left: -3%;
    width: 12%;
    max-width: 100px;
}

/* news */
.deco.deco20 {
    top: -3%;
    left: -2%;
    width: 10%;
    max-width: 80px;
}
.deco.deco21 {
    top: 13%;
    right: -3%;
    width: 13%;
    transform: rotate(30deg);
    max-width: 80px;
}
.deco.deco22 {
    bottom: -6%;
    left: -3%;
    width: 15%;
    max-width: 160px;
}
.deco.deco23 {
    bottom: 5%;
    right: 3%;
    width: 10%;
    max-width: 104px;
}

/* plan */
.deco.deco01 {
    top: 2%;
    left: -3%;
    width: 10%;
}
.deco.deco02 {
    top: 20%;
    right: 2%;
    width: 8%;
    transform: rotate(30deg);
    max-width: 96px;
}
.deco.deco03 {
    bottom: 1%;
    left: 2%;
    width: 12%;
    max-width: 100px;
}
.deco.deco04 {
    bottom: -2%;
    right: -5%;
    width: 15%;
    max-width: 160px;
}

/* schedule */
.deco.deco05 {
    top: 31%;
    left: -4%;
    width: 10%;
    max-width: 80px;
}
.deco.deco06 {
    top: -18%;
    right: 5%;
    width: 25%;
    max-width: 140px;
}
.deco.deco07 {
    bottom: -7%;
    right: 30%;
    width: 10%;
    max-width: 72px;
    transform: rotate(30deg);
}

/* ticket */
.deco.deco08 {
    top: -3%;
    left: -2%;
    width: 9%;
    max-width: 96px;
}
.deco.deco09 {
    top: 28%;
    right: -3%;
    width: 13%;
    transform: rotate(30deg);
    max-width: 80px;
}
.deco.deco10 {
    bottom: 28%;
    left: 2%;
    width: 12%;
    max-width: 48px;
}
.deco.deco11 {
    bottom: 5%;
    right: 3%;
    width: 10%;
    max-width: 104px;
}
.deco.deco12 {
    top: -2%;
    left: -8%;
    width: 12%;
    max-width: 140px;
}
.deco.deco13 {
    top: 43%;
    right: -0.5%;
    width: 13%;
    transform: rotate(30deg);
    max-width: 56px;
}
.deco.deco14 {
    bottom: -5%;
    left: -3%;
    width: 12%;
    max-width: 104px;
}

/* bg */
.deco.deco15 {
    z-index: -1;
    bottom: -1%;
    right: -10%;
    width: 40%;
    max-width: 600px;
    transform: rotate(-12deg);
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    .deco {
        max-width: 80px;
    }

    /* lead */
    .deco.deco16 {
        top: -20%;
        left: -9%;
        width: 25%;
        max-width: 80px;        
    }
    .deco.deco17 {
        top: 30%;
        right: -7%;
        width: 12%;
        max-width: 60px;
    }
    .deco.deco18 {
        bottom: -17%;
        left: -6%;
        width: 16%;
        max-width: 72px;
    }

    /* news */
    .deco.deco20 {
        top: -3%;
        left: -5%;
        width: 14%;
        max-width: 64px;
    }
    .deco.deco21 {
        top: 14%;
        right: -9%;
        width: 14%;
        transform: rotate(30deg);
        max-width: 48px;
    }
    .deco.deco22 {
        bottom: -5%;
        left: -8%;
        width: 24%;
        max-width: 100px;
    }
    .deco.deco23 {
        bottom: -7%;
        right: -7%;
        width: 19%;
        max-width: 72px;
    }

    /* plan */
    .deco.deco01 {
        top: -1%;
        left: -6%;
        width: 16%;
    }
    .deco.deco02 {
        top: 25%;
        right: -8%;
        width: 13%;
        max-width: 72px;
    }
    .deco.deco03 {
        bottom: -1%;
        left: -5%;
        width: 18%;
        max-width: 72px;
    }
    .deco.deco04 {
        bottom: -2%;
        right: -9%;
        width: 25%;
        max-width: 100px;
    }

    /* schedule */
    .deco.deco05 {
        top: -8%;
        left: -7%;
        width: 14%;
        max-width: 64px;
    }
    .deco.deco06 {
        top: 30%;
        right: -9%;
        width: 24%;
        max-width: 80px;
    }
    .deco.deco07 {
        bottom: -7%;
        right: 24%;
        width: 11%;
        max-width: 64px;
    }

    /* ticket */
    .deco.deco08 {
        top: -5%;
        left: -4%;
        width: 15%;
        max-width: 64px;
    }
    .deco.deco09 {
        top: 28%;
        right: -5%;
        width: 14%;
        transform: rotate(30deg);
        max-width: 48px;
    }
    .deco.deco10 {
        bottom: 24%;
        left: -4%;
        width: 12%;
        max-width: 32px;
    }
    .deco.deco11 {
        bottom: 3%;
        right: 3%;
        width: 19%;
        max-width: 72px;
    }
    .deco.deco12 {
        top: 0%;
        left: -10%;
        width: 24%;
        max-width: 72px;
    }
    .deco.deco13 {
        top: 25%;
        right: -8%;
        width: 12%;
        max-width: 48px;
    }
    .deco.deco14 {
        bottom: -7%;
        left: -7%;
        width: 16%;
        max-width: 72px;
    }

    /* bg */
    .deco.deco15 {
        bottom: -1%;
        right: -16%;
        width: 70%;
        max-width: 450px;
        transform: rotate(-30deg);
    }

}