@charset "utf-8";

:root {

    /* ======================================================
       Font
    ====================================================== */
    --font-base: "Noto Sans JP", sans-serif;
    --font-title: futura-pt, "Noto Sans JP", sans-serif;

    /* ======================================================
       Colors
    ====================================================== */
    /* Primitive (数値そのもの) */
    --color-black: #333;
    --color-gray: #c3c3c3;
    --color-white: #ffffff;

    --color-blue-light: #c1e5f9;
    --color-blue: #90CDE0;
    --color-blue-overlay: #90CDE050;
    --color-pink: #f4d1ed;
    
    /* Semantic (用途固定) */
    --color-bg-primary: var(--color-blue-light);
    --color-bg-section: var(--color-white);
    --color-nav-bg: var(--color-white);

    --color-text-primary: var(--color-blue);
    --color-text-section: var(--color-blue);
    --color-text-accent: var(--color-pink);
    --color-nav-text: var(--color-black);

    /* Component (UI) */
    --color-btn-bg: var(--color-pink);
    --color-btn-text: var(--color-white);
    --color-btn-disabled: var(--color-gray);
    --color-btn-bg-nav: var(--color-blue);
    --color-btn-text-nav: var(--color-white);

    --color-tag-bg: var(--color-blue);
    --color-tag-text: var(--color-white);
    --color-tag-bg-secondary: var(--color-pink);
    --color-tag-text-secondary: var(--color-white);

    --color-accordion-bg: var(--color-blue);
    --color-accordion-text: var(--color-white);


    /* ======================================================
       4px Grid (spacing)
    ====================================================== */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;

    /* ======================================================
       Section専用スケール (ページレイアウト用)
    ====================================================== */
    --section-ratio-last: 1.5;  
    --section-base-pc: calc(var(--space-16) * 3);
    --section-base-sp: calc(var(--space-16) * 1.5);
    --section-base-last-pc: calc(var(--section-base-pc) * var(--section-ratio-last));
    --section-base-last-sp: calc(var(--section-base-sp) * var(--section-ratio-last));

    /* ======================================================
       Radius
    ====================================================== */
    --radius-s: 4px;
    --radius-m: 8px;
    --radius-x: 16px;
    --radius-full: 9999px; /* 完全円形用 */

    /* ======================================================
       Z-index - 基本レイヤー
    ====================================================== */
    --z-background: -1;     /* 背景 */
    --z-base: 1;            /* 通常コンテンツ */
    --z-content: 10;        /* メインコンテンツ */
    --z-footer: 20;         /* フッター */
    --z-nav: 30;            /* ナビゲーション */
    --z-nav-btn: 31;        /* ナビゲーションボタン */
    --z-loader: 100;        /* ローダー */

}



/*===================================================
  anim
====================================================*/
.js .loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--color-bg-primary);
    z-index: var(--z-loader);
}

.js .mainWrap .anim.fadeX,
.js .mainWrap .anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.js .mainWrap .anim.fadeX {
    transform: translateX(20px);
}
.js .mainWrap .anim.fadeY {
    transform: translateY(20px);
}
.js .mainWrap .anim.fadeX.on,
.js .mainWrap .anim.fadeY.on {
    opacity: 1;
}
.js .mainWrap .anim.fadeX.on {
    transform: translateX(0px);
}
.js .mainWrap .anim.fadeY.on {
    transform: translateY(0px);
}

.js #fv .mainTit img {
    opacity:0;
    transition: all 0.5s ease-out;
}
.js .loaded #fv .mainTit img {
    opacity:1;
    transition-delay: 1.25s;
}

.js #fv .mainTit,
.js #fv .scrollBox,
.js .bgBox .frame {
    transition: all 0.5s ease-out;
}
.js .scrolled #fv .mainTit,
.js .scrolled #fv .scrollBox,
.js .scrolled .bgBox .frame {
    opacity: 0;
    transform: scale(1.1);
}

@media screen and (max-width: 960px){}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    position: absolute;
    z-index: var(--z-background);
    inset: 0;
    min-height: 600px;
    background: var(--color-bg-primary);
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bgBox .bg01 {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: url(/static/notequalme/official/feature/graduation_suganami/image/bg.jpg);
    background-position: center top;
    background-size: contain;
    background-repeat: repeat-y;
    mix-blend-mode: overlay;
}
.bgBox .frame {
    position: fixed;
    z-index: 2;
    inset: 0;
    min-height: 600px;
}
.bgBox .frame span {
    position: absolute;
    display: block;
    width: 50%;
    max-width: 720px;
}
.bgBox .frame span.top {
    top: 0;
    right: 0;
}
.bgBox .frame span.btm {
    left: 0;
    bottom: 0;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    .bgBox {
        min-height: 450px;
    }
    .bgBox .bg01 {
        z-index: 1;
        background: url(/static/notequalme/official/feature/graduation_suganami/image/bg_sp.jpg);
        background-position: center top;
        background-size: contain;
        background-repeat: repeat-y;
    }
    .bgBox .frame {
        min-height: 450px;
    }
    .bgBox .frame span {
        width: 65%;
        max-width: 420px;
    }

}


/*===================================================
    nav
====================================================*/
.hamBtn {
    display: block;
    z-index: var(--z-nav-btn);
    position: fixed;
    background: var(--color-btn-bg-nav);
    border-radius: var(--radius-m);
    right: var(--space-8);
    top: var(--space-8);
    width: 48px;
    height: 48px;
    transition: all .3s ease;
    cursor: pointer;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 25%;
    width: 50%;
    height: 2px;
    background: var(--color-btn-text-nav);
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: 30%;
}
.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn :nth-of-type(3) {
    bottom: 30%;
}
.hamBtn.open span {}
.hamBtn.open span:nth-of-type(1) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
}
.hamBtn.open span:nth-of-type(2) {
    opacity: 0;
}
.hamBtn.open span:nth-of-type(3) {
    transform: translateY(50%) rotate(45deg);
    bottom: 50%;
}

.navigation {
    z-index: var(--z-nav);
    position: fixed;
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	transition: all 0.5s ease-out;
}
.navigation.active {
    opacity:1;
    pointer-events:auto;
    transition: opacity 0.5s ease;
}

.navigation .headerNavBox {
    background: var(--color-nav-bg);
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    transition: all 0.5s ease;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    flex-direction: row;
}
.navigation .headerNavBox .headerNav {}

.navigation .heroNavLogo {
    width: 80%;
    max-width: 400px;
    margin: 0 var(--space-20) 0 0;
}

.navigation .headerNav li {
	padding: 0;
    position: relative;
    margin: 0 0 var(--space-4);
    line-height: 1;
    color: var(--color-text-primary);
}
.navigation .headerNav li:nth-last-child(2) {
    margin-bottom: var(--space-10);
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li a {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 600;
    text-decoration: none;
}

.navigation .snsList{
	display: flex;
}
.navigation .headerNav li .snsList:nth-last-child(2) {
    margin-bottom: var(--space-4);
}
.navigation .snsList .menuList {
	display: flex;
}
.navigation .snsList .navListTit {
    margin-right: 20px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-family: var(--font-title);
    text-decoration: none;
}
.navigation .headerNav li .snsList:nth-last-child(2) .navListTit {
    margin-right: 31px;
}
.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 i,
.navigation .shareList .menu_icon a i {
    font-size: 14px;
}
.navigation .shareList .menu_icon a img {
	height: 16px;
}

@media screen and (min-width: 961px) {

	.navigation .headerNav a:hover {
		opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

    .hamBtn {
        right: var(--space-4);
        top: var(--space-4);
        width: 40px;
        height: 40px;
        border-radius: var(--radius-s);
    }
    .hamBtn span {}

    .navigation {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .navigation .headerNavBox {
        position: absolute;
        display: flex;
        flex-direction: column;
        text-align: center;
        min-height: 100dvh;
        height: auto;
        padding: 64px 0;
        box-sizing: border-box;
    }

	.navigation .headerNav {
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-position: top center;
	    overflow: hidden;
	    object-fit: cover;
	}

    .navigation .heroNavLogo {
        width: 50%;
        max-width: 200px;
        margin: 0px 0 var(--space-8);
    }
    .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-4) 0 0;
    }

    .navigation .snsList {
        justify-content: center;
    }

    .navigation .snsList .navListTit {
        font-size: 16px;
    }
    .navigation .headerNav li .snsList:nth-last-child(2) .navListTit {
        margin-right: 20px;
    }

}


/*===================================================
	all
====================================================*/
html {
    scroll-behavior: auto;
    scroll-padding-top: var(--space-20);
    background: var(--color-bg-primary);
}

body {
    background: var(--color-bg-primary);
}

.mainWrap {
    position: relative;
    z-index: var(--z-base);
    font-family: var(--font-base);
	font-size: 16px;
    color: var(--color-text-primary);
    line-height: 1.5;
    overflow: hidden;
}
.mainWrap img {
	display: block;
}

.container {
    position: relative;
    z-index: var(--z-content);
}

section {
    padding-bottom: var(--section-base-pc);
}
section:last-of-type {
    padding-bottom: var(--section-base-last-pc);
}

section h3 {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    font-family: var(--font-title);
    font-size: 104px;
    font-weight: 600;
    line-height: 1;
    margin: 0 auto var(--space-16);
    word-break: break-all;
    text-align: center;
}
section h3 span {
    position: relative;
    z-index: 1;
}
section#cd h3 span{
    width: 184px;
    display: inline-block;
}
section h3 span:before,
section h3 span:after {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    width: 200px;
    aspect-ratio: 395 / 218;
    bottom: -32px;
    pointer-events: none;
}
section h3 span:before {
    background-image: url(/static/notequalme/official/feature/graduation_suganami/image/ph_titItem_01.png);
    background-size: cover;
    background-position: center;
    left: -80px;
}
section h3 span:after {
    background-image: url(/static/notequalme/official/feature/graduation_suganami/image/ph_titItem_02.png);
    background-size: cover;
    background-position: center;
    right: -80px;
}

section .inBox {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto var(--space-6);
    color: var(--color-text-section);
    background: var(--color-bg-section);
    padding: var(--space-12);
    border: 2px solid;
    border-radius: var(--radius-x);
}
section .inBox:last-of-type {
    margin-bottom: 0;
}
section .inBox:before {
    position: absolute;
    z-index: 2;
    content: "";
    display: block;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed;
    border-radius: var(--radius-m);
    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-bg);
    border: 1px solid var(--color-btn-bg);
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-radius: var(--radius-full);
    line-height: 1;
}
section .inBox .btn.fin a {
	background: var(--color-btn-disabled);
    border: 1px solid var(--color-btn-disabled);
    pointer-events: none;
}

.soon {
    padding: var(--space-16) 0;
    font-size: 24px; 
    font-weight: bold;
    text-align: center;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	section .inBox .btn a:hover {
        color: var(--color-btn-bg);
        background: var(--color-btn-text);
        border: 1px solid var(--color-btn-bg);
	}
	
}

@media screen and (max-width: 960px){

	.pc {
		display: none;
	}
	
	html {
	    scroll-padding-top: var(--space-12);
	}

    .mainWrap {
        font-size: 14px;
    }

    .container {}

    section {
        padding-bottom: var(--section-base-sp);
    }
    section:last-of-type {
        padding-bottom: var(--section-base-last-sp);
    }

    section h3 {
        font-size: 48px;
        margin-bottom: var(--space-8);
    }
    section#cd h3 span{
        width: 104px;
    }
    section h3 span:before,
    section h3 span:after {
        width: 96px;
        bottom: -12px;
    }
    section h3 span:before {
        left: -40px;
    }
    section h3 span:after {
        right: -40px;
    }

	section .inBox {
        padding: var(--space-5);
        margin-bottom: var(--space-4);
        border-radius: var(--radius-m);
	}
    section .inBox:before {
        width: calc(100% - 8px);
        height: calc(100% - 8px);
        border: 1px dashed;
        border-radius: var(--radius-s);
    }

    section .inBox .btn a {
        width: 90%;
        padding: var(--space-5) var(--space-4);
    }

    .soon {
        padding: var(--space-6) 0;
        font-size: 20px;
    }

}



/*===================================================
	fv
====================================================*/
#fv {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

#fv .mainTit {
    position: fixed;
    z-index: 2;
    height: 80%;
    min-height: calc(600px * 0.8);
    max-width: 80%;
    aspect-ratio: 611 / 654;
    display: flex;
    justify-content: center;
    align-items: center;
}
#fv .mainTit .titItem {
    position: absolute;
    z-index: -1;
    display: block;
}

#fv .artistLogo {
    position: absolute;
    z-index: 3;
    top: var(--space-8);
    left: var(--space-8);
    width: 96px;
}

#fv .scrollBox {
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
#fv .scrollBox .scrollArrow {
    position: absolute;
    right: var(--space-8);
    bottom: var(--space-8);
    width: 2px;
    height: 80px;
    background: var(--color-text-primary);
    animation: scrollArrow 3s cubic-bezier(.19,1,.22,1) 0.5s infinite;
}
@keyframes scrollArrow{
    0% { clip-path: inset(0 0 100% 0) ;}
    25% { clip-path: inset(0 0 0 0); }
    75% { clip-path: inset(0 0 0 0); }
    100% { clip-path: inset(100% 0 0 0); }
}

@media screen and (min-width: 961px) {

    #fv .mainTit .titItem {
        width: max-content;
        height: 107.5%;
        top: 50%;
        transform: translateY(-50%);
    }
    #fv .mainTit .titItem img {
        width: auto;
        height: 100%;
    }
    #fv .mainTit .titItem.l {
        right: 115%;
    }
    #fv .mainTit .titItem.r {
        left: 115%;
    }

}

@media screen and (max-width: 960px) {

	#fv {
        height: 100svh;
        height: 100dvh;
	    min-height: 450px;
	}

    #fv .mainTit {
        min-height: initial;
    }
    #fv .mainTit .tit {
        position: relative;
    }
    #fv .mainTit .titItem {
        width: 110%;
        left: 50%;
        transform: translateX(-50%);
    }
    #fv .mainTit .titItem.l {
        bottom: 105%;
    }
    #fv .mainTit .titItem.r {
        top: 105%;
    }

    #fv .artistLogo {
        width: 64px;
        left: var(--space-4);
    }

    #fv .scrollBox .scrollArrow  {
        right: var(--space-4);
        bottom: var(--space-4);
        width: 1px;
        height: 64px;
    }

}



/*===================================================
	schedule
====================================================*/
#schedule .fin,
#schedule .sold {
    position: relative;
}
#schedule .fin:before,
#schedule .sold:before {
    display: block;
    position: absolute;
    top: -24px;
    left: -24px;
    width: 80px;
    line-height: 24px;
    font-weight: bold;
    text-align: center;
    transform: rotate(-15deg);
    font-size: 12px;
}
#schedule .fin:before  {
    content: "公演終了";
    background: var(--color-tag-bg);
    color: var(--color-tag-text);
}
#schedule .sold:before {
    content: "完売";
    background: var(--color-tag-bg-secondary);
    color: var(--color-tag-text-secondary);
}

.scheduleList li .top {
    display: flex;
    align-items: flex-end;
}
.scheduleList li .top .date {
    font-size: 24px;
    font-weight: bold;
}
.scheduleList li .top .date .sub {
    display: inline-block;
    font-size: 18px;
    padding: 0 var(--space-1);
}
.scheduleList li .top .date .venue {
    display: none;
}
.scheduleList li .place {
    display: flex;
    align-items: center;
    font-size: 36px;
    font-weight: bold;
    gap: var(--space-4);
    margin-bottom: var(--space-1);
}
.scheduleList li .place span {
    display: block;
    font-size: 20px;
    border: 1px solid;
    padding: 0px var(--space-4);
    margin-top: var(--space-1);
}
.scheduleList li .time {
    margin-bottom: var(--space-1);
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px){

    #schedule .fin:before,
    #schedule .sold:before {
        position: relative;
        transform: rotate(0deg);
        top: 0;
        left: 0;
        margin-bottom: var(--space-1);
    }

    .scheduleList li .top {}
    .scheduleList li .top .date {
        font-size: 20px;
    }
    .scheduleList li .top .date .sub {
        font-size: 14px;
        padding: 0 var(--space-1);
    }
    .scheduleList li .top .date .venue {
        display: inline-block;
        font-size: 18px;
        padding: 0 0 0 var(--space-2);
    }
    .scheduleList li .place {
        font-size: 24px;
    }
    .scheduleList li .place span {
        display: none;
    }
    .scheduleList li .time {
        font-size: 14px;
    }

}

    

/*===================================================
	ticket
====================================================*/
#ticket .inBox .ticketBoxTit {
    display: flex;
    font-size: 24px;
    font-weight: bold;
    align-items: center;
    margin: 0 0 var(--space-4);
}
#ticket .inBox .ticketBoxTit:after {
    content: "";
    flex-grow: 1;
    border-top: 1px solid;
    margin-left: var(--space-8);
}

#ticket .inBox .areaBox {
    margin: 0 0 var(--space-6);
}
#ticket .inBox .areaBox:last-of-type {
    margin-bottom: 0;
}

/*============ accordion ===========*/
#ticket .inBox .op_ticket {
    margin: 0 0 var(--space-1);
}
#ticket .inBox .op_ticket:last-child {
    margin: 0;
}
#ticket .op_ticket .ticketTit {
    color: var(--color-accordion-text);
    background: var(--color-accordion-bg);
    padding: var(--space-8) var(--space-16) var(--space-8) var(--space-8);
    font-size: 20px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: var(--radius-m);
}
#ticket .op_ticket .ticketTit.open {
    border-radius: var(--radius-m) var(--radius-m) 0 0;  
}
#ticket .op_ticket .ticketTit span {
    position: absolute;
    top: 50%;
    right: var(--space-8);
    width: 20px;
    height: 20px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}
#ticket .op_ticket .ticketTit span:before,
#ticket .op_ticket .ticketTit span:after {
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    width: 20px;
    height: 0;
    border-bottom: solid 2px;
    top: 40%;
    right: 0px;
    transition: all 0.3s ease-out;
}
#ticket .op_ticket .ticketTit span:before {
    transform: rotate(90deg);
}
#ticket .op_ticket .ticketTit.open span:before {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

#ticket .inBox .indent {
    display: inline-block;
    text-indent: -0.25em;
}

#ticket .op_ticket .ticketDetail {
    display: none;
    padding: var(--space-8);
    background-color: var(--color-bg-section);
    color: var(--color-text-section);
    border-radius: 0 0 var(--radius-m) var(--radius-m);
    border: 1px solid;
    border-top: none;
}

#ticket .op_ticket .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 0 0 var(--space-4);
    margin: 0 0 var(--space-8);
    align-items: stretch;
}
#ticket .op_ticket .detailList:first-child {
    border-top: 1px solid;
    padding: var(--space-4) 0 var(--space-4);
}
#ticket .op_ticket .detailList:last-child {
    margin: 0;
}
#ticket .op_ticket .detailList dt {
    width: 20%;
    padding: 0 var(--space-10) 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.6em;
}
#ticket .op_ticket .detailList dd {
    width: 80%;
    position: relative;
    padding: 0 0 0 var(--space-8);
    display: flex;
    align-items: center;
}
#ticket .op_ticket .detailList dd:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--color-text-section);
}
#ticket .op_ticket .detailList dd > * {
    margin-bottom: var(--space-4);
}
#ticket .op_ticket .detailList dd > *:last-child {
    margin-bottom: 0;
}
#ticket .op_ticket .detailList dd .detailInner {
    width: 100%;
}
#ticket .op_ticket .detailList dd .detailInner > *{
    margin-bottom: var(--space-2);
}
#ticket .op_ticket .detailList dd .detailInner  > *:last-child{
    margin-bottom: 0;
}

@media screen and (min-width: 961px){

    #ticket .op_ticket .ticketTit:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

	#ticket .inBox .ticketBoxTit {
        font-size: 16px;
        margin: 0 0 var(--space-3);
    }
    #ticket .inBox .ticketBoxTit:after {
        margin-left: var(--space-3);
    }

    #ticket .inBox .areaBox {
        margin: 0 0 var(--space-4);
    }
    #ticket .inBox .areaBox:last-child {}

    #ticket .inBox .op_ticket {}
	#ticket .op_ticket .ticketTit {
        padding: var(--space-4) var(--space-10) var(--space-4) var(--space-4);
        font-size: 14px;
        border-radius: var(--radius-s);
	}
    #ticket .op_ticket .ticketTit.open {
        border-radius: var(--radius-s) var(--radius-s) 0 0;
    }
    #ticket .op_ticket .ticketTit span {
        right: var(--space-4);
        width: 16px;
        height: 16px;
    }
    #ticket .op_ticket .ticketTit span:before,
    #ticket .op_ticket .ticketTit span:after {
        width: 16px;
    }
	#ticket .op_ticket .ticketDetail {
        padding: var(--space-4);
        font-size: 14px;
        border-radius: 0 0 var(--radius-s) var(--radius-s);
	}
	#ticket .op_ticket .detailList {
	    display: block;
	    margin: 0 0 var(--space-4);
	    border-bottom: none;
	}
	#ticket .op_ticket .detailList:first-child {
	    border-top: none;
	    padding: 0;
	}
	#ticket .op_ticket .detailList dt {
        width: 100%;
        margin: 0 0 10px;
        line-height: 1;
        font-weight: bold;
	}
    #ticket .op_ticket .detailList dt .detailInner .txt {
        border-left: 3px solid;
        padding: 0 0 0 10px;

    }
	#ticket .op_ticket .detailList dd {
	    width: 100%;
	    position: relative;
	    padding: 0;
	}
	#ticket .op_ticket .detailList dd:before {
	    content: none
	}

    #ticket .op_ticket .ticketDetail .btn a {
        width: 90%;
    }
	
}


/*===================================================
	streaming
====================================================*/
#streaming .inBox .txtBox {
    margin: 0 0 var(--space-8);
    padding: 0 0 var(--space-8);
    border-bottom: 1px solid var(--color-blue-overlay);
}
#streaming .inBox .txtBox:last-of-type {
    margin: 0 0 var(--space-10);
    padding: 0;
    border-bottom: none;
}
#streaming .inBox .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)
}
#streaming .inBox .txtBox .boxTxt p {
    margin-bottom: var(--space-1);
}
#streaming .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}
#streaming .inBox .txtBox .boxTxt p.note {
    text-indent: -1em;
    padding: 0 0 0 1em;
    font-size: 14px;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #streaming .inBox .txtBox {
        margin: 0 0 var(--space-5);
        padding: 0 0 var(--space-4);
    }
    #streaming .inBox .txtBox:last-of-type {
        margin: 0 0 var(--space-4);
    }
    #streaming .inBox .txtBox .boxTit {
        font-size: 14px;
        margin: 0 0 var(--space-2);
    }
    #streaming .inBox .txtBox .boxTxt p.note {
        font-size: 12px;
    }

}


/*===================================================
	goods
====================================================*/
#goods .inBox .goodsList {
    margin-bottom: var(--space-10);
}
#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 .inBox .goodsList {
        margin-bottom: var(--space-4);
    }

}


/*===================================================
	cd
====================================================*/
#cd .inBox .cdList {
    margin-bottom: var(--space-10);
}
#cd .inBox .cdList li {
    margin-bottom: var(--space-1);
}
#cd .inBox .cdList li:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){
    
    #cd .inBox .cdList {
        margin-bottom: var(--space-4);
    }

}


/*===================================================
	information
====================================================*/
#information .inBox .infoMainTit {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 var(--space-6);
    border-left: 4px solid;
    padding: 0 0 0 var(--space-3);
}
#information .inBox .infoImg {
    margin: 0 auto var(--space-10);
}

#information .inBox .txtBox {
    margin: 0 0 var(--space-8);
    padding: 0 0 var(--space-8);
    border-bottom: 1px solid var(--color-blue-overlay);
}
#information .inBox .txtBox:last-of-type {
    margin: 0 0 var(--space-10);
    padding: 0;
    border-bottom: none;
}
#information .inBox .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)
}
#information .inBox .txtBox .boxTxt {
    margin-bottom: var(--space-2);
}
#information .inBox .txtBox .boxTxt:last-of-type {
    margin-bottom: 0;
}
#information .inBox .txtBox .boxTxt p {
    margin-bottom: var(--space-1);
}
#information .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #information .inBox .infoMainTit {
        font-size: 16px;
        margin: 0 0 var(--space-4);
        padding: 0 0 0 var(--space-2);
    }
    #information .inBox .infoImg {
        margin-bottom: var(--space-4);
    }

    #information .inBox .txtBox {
        margin: 0 0 var(--space-4);
        padding: 0 0 var(--space-4);
    }
    #information .inBox .txtBox:last-of-type {
        margin: 0 0 var(--space-4);
    }
    #information .inBox .txtBox .boxTit {
        font-size: 14px;
        margin: 0 0 var(--space-3);
    }

}


/*===================================================
	fanclub
====================================================*/
#fanclub .inBox .fcMainTit {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 var(--space-6);
    border-left: 4px solid;
    padding: 0 0 0 var(--space-3);
}

#fanclub .inBox .fcLead {
    margin: 0 0 var(--space-8);
    padding: 0 0 var(--space-8);
    border-bottom: 1px solid var(--color-blue-overlay);
}
#fanclub .inBox .fcLead p {
    margin-bottom: var(--space-4);
}
#fanclub .inBox .fcLead p:last-child {
    margin-bottom: 0;
}

#fanclub .inBox .txtBox {
    margin: 0 0 var(--space-8);
    padding: 0 0 var(--space-8);
    border-bottom: 1px solid var(--color-blue-overlay);
}
#fanclub .inBox .txtBox.last {
    margin: 0 0 var(--space-10);
}
#fanclub .inBox .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)
}
#fanclub .inBox .txtBox .boxTxt {
    margin-bottom: var(--space-2);
}
#fanclub .inBox .txtBox .boxTxt:last-child {
    margin-bottom: 0;
}
#fanclub .inBox .txtBox .boxTxt p {
    margin-bottom: var(--space-1);
}
#fanclub .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}

#fanclub .inBox .txtBox .attList {}
#fanclub .inBox .txtBox .attList li {
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin-bottom: var(--space-1);
    font-size: 14px;
}
#fanclub .inBox .txtBox .attList li:last-child {
    margin-bottom: 0;
}

#fanclub .inBox .btnBox {
    display: flex;
    justify-content: center;
    gap: var(--space-10);
}
#fanclub .inBox .btnBox .btn {
    width: 100%;
    max-width: 300px;
}

#fanclub .inBox .btn.quiz a {
    margin-bottom: var(--space-6);
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #fanclub .inBox .fcMainTit {
        font-size: 16px;
        margin: 0 0 var(--space-4);
        padding: 0 0 0 var(--space-2);
    }

    #fanclub .inBox .fcLead {
        margin: 0 0 var(--space-5);
        padding: 0 0 var(--space-4);
    }
    #fanclub .inBox .fcLead p {
        margin-bottom: var(--space-3);
    }
    #fanclub .inBox .fcLead p:last-child {}

    #fanclub .inBox .txtBox {
        margin: 0 0 var(--space-5);
        padding: 0 0 var(--space-4);
    }
    #fanclub .inBox .txtBox.last {
        margin: 0 0 var(--space-6);
    }
    #fanclub .inBox .txtBox .boxTit {
        font-size: 14px;
        margin: 0 0 var(--space-3);
    }

    #fanclub .inBox .txtBox .attList li {
        font-size: 12px;
    }

    #fanclub .inBox .btnBox {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }

    #fanclub .inBox .btn.quiz a {
        margin-bottom: var(--space-3);
    }

}


/*===================================================
	contact
====================================================*/
#contact .inBox .txtBox {
    margin: 0 0 var(--space-8);
    padding: 0 0 var(--space-8);
    border-bottom: 1px solid var(--color-blue-overlay);
}
#contact .inBox .txtBox:last-of-type {
    margin: 0;
    padding: 0;
    border-bottom: none;
}
#contact .inBox .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)
}
#contact .inBox .txtBox .boxTxt p {
    font-size: 14px;
    margin-bottom: var(--space-1);
}
#contact .inBox .txtBox .boxTxt p a {
    text-decoration: underline;
}
#contact .inBox .txtBox .boxTxt p i {
    padding: 0 var(--space-1) 0 0;
}
#contact .inBox .txtBox .boxTxt p.note {
    font-size: 12px;
    text-indent: -1em;
    padding: 0 0 0 1em;
}
#contact .inBox .txtBox .boxTxt p:first-child {
    font-weight: bold;
}
#contact .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}
#contact .inBox .txtBox:last-child .boxTxt p {
    font-size: 12px;
    margin: 0
}

.contactList {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    font-size: 14px;
}
.contactList li {
    width: calc(50% - 8px);
}
.contactList li .tel a {
    text-decoration: underline;
    word-break: break-all;
}
.contactList li .note {
    font-size: 12px;
}

@media screen and (min-width: 961px){

    #contact .inBox .txtBox a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

    #contact .inBox .txtBox {
        margin: 0 0 var(--space-5);
        padding: 0 0 var(--space-4);
    }
    #contact .inBox .txtBox .boxTit {
        font-size: 14px;
    }
    #contact .inBox .txtBox .boxTxt {
        font-size: 12px;
    }
    #contact .inBox .txtBox .boxTxt p.note {
        font-size: 12px;
    }
    #contact .inBox .txtBox:last-child .boxTxt p:last-child {
        margin-top: var(--space-1);
    }

    .contactList {
        font-size: 12px;
        gap: var(--space-3);
    }
    .contactList li {
        width: 100%;
        padding: 0 0 0 var(--space-2);
        border-left: var(--space-1) solid;
    }
    .contactList li .note {
        font-size: 10px;
    }

}


/*===================================================
	footer
====================================================*/
footer {
    position: relative;
    z-index: var(--z-footer);
}
footer .inner {
    padding: 0 3%;
    position: relative;
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .logo_official {
    width: 10vw;
}
footer .logo_yoani {
    width: 17vw;
}
footer .logo_yoani a {
    display: block;
    margin: 0 0 5px;
}
footer .copyright {
    display: block;
    font-size: 12px;
    text-align: right;
    color: var(--color-black);
}

@media screen and (min-width: 961px){

    footer {
        padding: 0 0 80px;
        height: auto !important;
        position: relative;
        color: var(--color-black);
    }
    footer .logo_official a, footer .logo_yoani a {
        cursor: pointer;
    }
    footer .logo_official a:hover, footer .logo_yoani a:hover {
        opacity: 0.4;
    }
	
}

@media screen and (max-width: 960px){

    footer {
	    padding: 0 5% 60px;
    }
    footer .inner {
        padding: 0;
    }
    footer .inner .logo_official {
        width: 24vw;
        margin: 0;
    }
    footer .inner .logo_yoani {
        width: 45vw;
    }
    footer .copyright {
        font-size: 10px;
        zoom: 0.8;
    }

}