@charset "utf-8";
/*===================================================
    color
====================================================*/
:root {
    --color-white: #fff;
    --color-black: #000;
    --color-gray: #bbbbbb;
    --color-green: #477628;
    --color-blue: #65B2E8;
    --color-navyBlue: #0E1D49;
    --color-lightBlue: #D1E2E4;

    --font-common: "Shippori Mincho", serif;
    --font-title:  "scotch-text-compressed", "scotch-text", sans-serif;

} 



/*===================================================
  anim
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--color-navyBlue);
    z-index: 9999;
}

.clip {will-change: clip-path;}
.clipT {clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);}
.clipB {clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);}
.clipL {clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);}
.clipR {clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);}
.clipVtb {clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);}
.clipVlr {clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);}

.loaded .clipT,
.loaded .clipB,
.loaded .clipL,
.loaded .clipR,
.loaded .clipVtb,
.loaded .clipVlr {animation: clipAnim 1.5s cubic-bezier(0.77, 0, 0.175, 1) both;}

@keyframes clipAnim {
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.loaded .clip01 {animation-delay: 1s;}

.mainTit img {
    opacity: 0;
    transition: all .5s ease-out; 
    transform: translateY(20px);
}
.loaded .mainTit img {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 1s;
}

.wing img {
    opacity: 0;
    transition: all .5s ease-out; 
    transform: scale(1.2);
    filter: blur(20px);
}
.loaded .wing img {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1s;
    filter: blur(0px);
}

.mainWrap .anim.fadeX,
.mainWrap .anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.mainWrap .anim.fadeX {
    transform: translateX(20px);
}
.mainWrap .anim.fadeY {
    transform: translateY(20px);
}
.mainWrap .anim.fadeX.on,
.mainWrap .anim.fadeY.on {
    opacity: 1;
}
.mainWrap .anim.fadeX.on {
    transform: translateX(0px);
}
.mainWrap .anim.fadeY.on {
    transform: translateY(0px);
}

@media screen and (max-width: 960px){}



/*===================================================
    bg
====================================================*/
.bgBox {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    min-height: 600px;
    inset: 0;
    background-color: var(--color-lightBlue);
    box-sizing: border-box;
    pointer-events: none;
    overflow: hidden;
}
.bgBox .bg {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    inset: 0;
    background: url(/static/notequalme/official/feature/7th_anniversary/image/bg_0r1B2w0n.png) no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.25;
}
.bgBox .wing {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 290 / 247;
    width: 115%;
    min-width: 1200px;
}
.borderBox {
    position: absolute;
    z-index: 3;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--color-navyBlue);
}
.bgBox .mainTit {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 633 / 623;
    height: 75%;
    max-width: 85%;
    transition: all 0.5s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scrolled .bgBox .mainTit {
    opacity: 0;
}

@media screen and (max-width: 960px){

	.bgBox {
	    height: 100%;
        height: 100dvh;
        min-height: 450px;
	}
    .bgBox .bg {
        background: url(/static/notequalme/official/feature/7th_anniversary/image/bg_sp_0r1B2w0n.png) no-repeat;
        background-position: center center;
        background-size: cover;
    }
    .bgBox .wing {
        top: 42.5%;
        width: 160%;
        min-width: initial;
    }
    .borderBox {
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        border: 2px solid var(--color-navyBlue);
    }
    .bgBox .mainTit {}
    
}



/*===================================================
    nav
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 33px;
    top: 33px;
    width: 45px;
    height: 45px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9998;
    background: var(--color-green);
    border-radius: 100vmax;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 25%;
    width: 50%;
    height: 2px;
    background: var(--color-white);
    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 {
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9997;
    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);
    color: var(--color-navyBlue);
    margin: 0 auto;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    flex-direction: row;
}
.navigation .headerNavBox .headerNav {}

.navigation .heroNavLogo {
    width: 80%;
    max-width: 400px;
    margin: 0 80px 0 0;
}

.navigation .headerNav li {
	padding: 0;
    position: relative;
    margin: 0 0 20px;
    line-height: 1;
    font-family: var(--titleFont);
}
.navigation .headerNav li:nth-last-child(2) {
    margin-bottom: 40px;
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li a {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: bold;
    text-decoration: none;
}

.navigation .snsList{
	display: flex;
}
.navigation .snsList .menuList {
	display: flex;
}
.navigation .snsList .navListTit {
    margin-right: 20px;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    font-family: var(--font-title);
    text-decoration: none;
}
.navigation .headerNav li:nth-last-child(2) .snsList .navListTit {
    margin-right: 31.5px;
}
.navigation .snsList .menuList li {
    margin: 0px 10px 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: 35px;
    height: 35px;
    border-radius: 100vmax;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    background: var(--color-green);
    color: var(--color-white);
}
.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: 22px;
        top: 22px;
        width: 45px;
        height: 45px;
    }
    .hamBtn span {}

	.navigation .headerNav {
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-position: top center;
	    overflow: hidden;
	    object-fit: cover;
	}

    .navigation .headerNavBox {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .navigation .heroNavLogo {
        width: 50%;
        max-width: 200px;
        margin: 0px 0 30px;
    }
    .navigation .headerNav li {
        margin: 0 0 15px;
    }
    .navigation .headerNav li a {
        font-size: 24px;
    }
    .navigation .headerNav li:nth-last-child(2) {
        margin: 0 0 30px;
    }
    .navigation .headerNav .menuList li:nth-last-child(2){
        margin: 0 10px 0 0;
    }

    .navigation .snsList .navListTit {
        font-size: 16px;
    }

}


/*===================================================
	all
====================================================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    background: var(--color-lightBlue);
}

body {
    background: var(--color-lightBlue);
}

.mainWrap {
    position: relative;
    z-index: 1;
    font-family: var(--font-common);
	font-size: 16px;
    color: var(--color-white);
    line-height: 1.5;
}
.mainWrap img {
	display: block;
}

.container {
    position: relative;
}

section {
	margin: 0 auto 160px;
    width: 90%;
    max-width: 1200px;
}
section:last-of-type {
 	margin: 0 auto 240px;   
}

section .inBox {
    position: relative;
    margin-bottom: 40px;
    padding: 60px;
    background: var(--color-navyBlue);
}
section .inBox:last-child {
    margin-bottom: 0;
}
section .inBox .frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    border: 3px solid var(--color-lightBlue);
    pointer-events: none;
}

section .inBox h3 {
    font-family: var(--font-title);
    font-size: 88px;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.03em;
    margin: 0 0 45px;
}
section .inBox h3 span {
    position: relative;
}
section .inBox h3 span:before,
section .inBox h3 span:after {
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
    width: 120px;
    aspect-ratio: 13 / 10;
    background-image: url(/static/notequalme/official/feature/7th_anniversary/image/ph_titleItem_0r1B2w0n.svg);
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    pointer-events: none;
}
section .inBox h3 span:before {
    left: 0;
    transform: translate(-50%, -50%) rotate(-10deg);
}
section .inBox h3 span:after {
    right: 0;
    transform: translate(50%, -50%) rotate(10deg);
}

section .inBox .btn a {
	display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    color: var(--color-white);
    background: var(--color-green);
    border: 1px solid var(--color-green);
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-radius: 100vmax;
}
section .inBox .btn.fin a {
	background: var(--color-gray);
    border: 1px solid var(--color-gray);
    pointer-events: none;
}

.note {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
}

.soon {
    text-align: center;
    padding: 120px 40px;
    background: var(--color-white);
    color: var(--color-navyBlue);
    font-weight: bold;
    font-size: 24px;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a, i, img {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	section .inBox .btn a:hover {
        color: var(--color-green);
        background: var(--color-white);
	}
	
}

@media screen and (max-width: 960px){

	.pc {
		display: none;
	}
	
	html {
	    scroll-padding-top: 45px;
	}

    .mainWrap {
        font-size: 14px;
    }

	section {
        width: calc(90% - 14px);
	    margin: 0 auto 80px;
	}
    section:last-of-type {
	    margin: 0 auto 160px;
	}

	section .inBox {
	    padding: 30px 20px 25px;
        margin-bottom: 20px;
	}
    section .inBox .frame {
        border: 2px solid var(--color-lightBlue);
    }

    section .inBox h3 {
        font-size: 42px;
        margin: 0 0 20px;
    }
    section .inBox h3 span {}
    section .inBox h3 span:before,
    section .inBox h3 span:after {
        width: 60px;
    }
    section .inBox h3 span:before {left: 5px;}
    section .inBox h3 span:after {right: 5px;}

    section .inBox .btn a {
        width: 90%;
        padding: 15px;
    }
    section .inBox .ticketDetail .btn a {
        width: 100%;
    }

    .note {
        font-size: 12px;
    }

    .soon {
        padding: 45px 15px;
        font-size: 18px;
    }

}


/*===================================================
	hero
====================================================*/
#heroView {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
}

#heroView .artistLogo {
    position: fixed;
    z-index: 1;
    width: 90px;
    top: 33px;
    left: 33px;
    transition: 0.5s ease-out;
}
.scrolled #heroView .artistLogo {
    opacity: 0;
    pointer-events: none;
}

#heroView .scrollArrow {
    position: fixed;
    z-index: 100;
    left: 33px;
    bottom: 33px;
    pointer-events: none;
    transition: 0.5s ease-out;
}
.scrolled #heroView .scrollArrow {
    opacity: 0;
}
#heroView .scrollArrow .txt {
    color: var(--color-navyBlue);
    font-weight: bold;
    line-height: 1;
    writing-mode: vertical-rl;
    padding: 0 0 10px 0;
}
#heroView .scrollArrow span {
    display: block;
    z-index: 1;
    width: 1px;
    height: 60px;
    background: var(--color-navyBlue);
    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);}
}

#heroView .shareList {
    position: fixed;
    z-index: 100;
    right: 33px;
    bottom: 33px;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}
#heroView .shareList li {
    height: 40px;
    aspect-ratio: 17 / 13;
}
#heroView .shareList li a {
    display: block;
}
#heroView .shareList li a img {}

@media screen and (min-width: 961px) {
    
    #heroView .artistLogo a:hover {
        opacity: 0.7;
    }

    #heroView .shareList li a:hover {
        transform: translateY(-5px);
    }

}

@media screen and (max-width: 960px) {

	#heroView {
	    min-height: 450px;
	}

    #heroView .artistLogo {
        top: 22px;
        left: 22px;
        width: 75px;
    }

    #heroView .scrollArrow {
        left: 22px;
        bottom: 22px;
    }

    #heroView .shareList {
        right: 22px;
        bottom: 22px;
    }
    #heroView .shareList li {
        height: 35px;
    }
    #heroView .shareList li a {}
    #heroView .shareList li a img {}

}



/*===================================================
	schedule
====================================================*/
#schedule {}
#schedule .inBox {}


#schedule .inBox .scheduleBox {
    background: var(--color-white);
    color: var(--color-navyBlue);
    padding: 40px;
}
#schedule .inBox .scheduleBox .date {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 5px;
}
#schedule .inBox .scheduleBox .date span {
    font-size: 14px;
    padding: 0 5px;
}
#schedule .inBox .scheduleBox .date span:last-child {
    padding: 0 0 0 5px;
}
#schedule .inBox .scheduleBox .venue {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin: 0px 0 30px;
}
#schedule .inBox .scheduleBox .venue a {
    display: block;
}
#schedule .inBox .scheduleBox .venue a i {
    padding-left: 10px;
}
#schedule .inBox .scheduleBox .detailBox {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 5px;
}
#schedule .inBox .scheduleBox .detailBox .dateBox {
    position: relative;
    width: 50%;
    padding: 15px 40px;
    text-align: center;
    background: var(--color-lightBlue);
}
#schedule .inBox .scheduleBox .detailBox .dateBox:last-child {}

#schedule .inBox .scheduleBox .detailBox .dateBox:before {
    display: block;
    position: absolute;
    top: -15px;
    left: -20px;
    width: 90px;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
    transform: rotate(-15deg);
    font-size: 14px;
}
#schedule .inBox .scheduleBox .detailBox .dateBox.fin:before  {
    content: "公演終了";
    background: var(--color-green);
    color: var(--color-white);
}
#schedule .inBox .scheduleBox .detailBox .dateBox.sold:before  {
    content: "完売!";
    background: var(--color-blue);
    color: var(--color-white);
}

#schedule .inBox .scheduleBox .detailBox .dateBox .session {
    font-weight: bold;
    margin: 0 0 5px;
}
#schedule .inBox .scheduleBox .detailBox .dateBox .timeBox {
    display: flex;
}
#schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time {
    width: 50%;
    font-weight: bold;
    font-size: 20px;
}
#schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time:first-child {}
#schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time:last-child {}
#schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time span {
    font-size: 12px;
    padding: 0 10px 0 0;
}

@media screen and (min-width: 961px) {

    #schedule .inBox .scheduleBox .venue a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px) {

    #schedule {}
    #schedule h3 {}
    #schedule .inBox {}

    #schedule .inBox .scheduleBox {
        padding: 15px 10px 10px;
    }
    #schedule .inBox .scheduleBox .date {
        font-size: 16px;
        margin: 0;
    }
    #schedule .inBox .scheduleBox .date span {
        font-size: 10px;
        padding: 0 3px;
    }
    #schedule .inBox .scheduleBox .date span:last-child {}
    #schedule .inBox .scheduleBox .venue {
        font-size: 16px;
        margin: 0 0 20px;
    }
    #schedule .inBox .scheduleBox .venue a {}
    #schedule .inBox .scheduleBox .venue a i {
        padding-left: 5px;
    }
    #schedule .inBox .scheduleBox .detailBox {
        flex-direction: column;
    }
    #schedule .inBox .scheduleBox .detailBox .dateBox {
        width: 100%;
        padding: 15px;
    }
    #schedule .inBox .scheduleBox .detailBox .dateBox:last-child {}

    #schedule .inBox .scheduleBox .detailBox .dateBox:before {
        top: 0px;
        left: -10px;
        width: 75px;
        line-height: 25px;
        transform: rotate(-15deg);
        font-size: 12px;
    }
    #schedule .inBox .scheduleBox .detailBox .dateBox.fin:before  {}
    #schedule .inBox .scheduleBox .detailBox .dateBox.sold:before  {}


    #schedule .inBox .scheduleBox .detailBox .dateBox .session {
        margin-bottom: 0;
    }
    #schedule .inBox .scheduleBox .detailBox .dateBox .timeBox {
        max-width: 240px;
        margin: 0 auto;
    }
    #schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time {
        font-size: 18px;
    }
    #schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time:first-child {}
    #schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time:last-child {}
    #schedule .inBox .scheduleBox .detailBox .dateBox .timeBox .time span {
        font-size: 10px;
    }

}

    

/*===================================================
	ticket
====================================================*/
#ticket {}
#ticket h3 {}
#ticket .inBox {}

#ticket .inBox .ticketBoxTit {
    font-size: 24px;
    font-weight: bold;
    border-left: 5px solid;
    padding: 0 0 0 15px;
    line-height: 1;
    margin: 0 0 30px;
}

#ticket .inBox .areaBox {}

/*============ accordion ===========*/
#ticket .inBox .op_ticket {
    margin: 0 0 2px;
}
#ticket .inBox .op_ticket:last-child {
    margin: 0;
}
#ticket .op_ticket .ticketTit {
    color: var(--color-white);
    background: var(--color-blue);
    padding: 30px 65px 30px 40px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: 5px;
}
#ticket .op_ticket .ticketTit.open {
    border-radius: 5px 5px 0 0;
}
#ticket .op_ticket .ticketTit span {
    position: absolute;
    top: 50%;
    right: 40px;
    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: "";
    display: block;
    width: 20px;
    height: 0;
    border-bottom: solid 2px;
    position: absolute;
    top: 40%;
    right: 0px;
    transition: all 0.3s ease-out;
    z-index: 1;
}
#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: 40px;
    background-color: var(--color-white);
    color: var(--color-navyBlue);
    border-radius: 0 0 5px 5px;
}

#ticket .op_ticket .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 0 0 15px;
    margin: 0 0 30px;
    align-items: stretch;
}
#ticket .op_ticket .detailList:first-child {
    border-top: 1px solid;
    padding: 15px 0 15px;
}
#ticket .op_ticket .detailList:last-child {
    margin: 0;
}
#ticket .op_ticket .detailList dt {
    width: 20%;
    padding: 0 40px 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 40px;
    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-navyBlue);
}
#ticket .op_ticket .detailList dd > * {
    margin-bottom:20px;
}
#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:10px;
}
#ticket .op_ticket .detailList dd .detailInner  > *:last-child{
    margin-bottom:0;
}

@media screen and (min-width: 961px){

    #ticket .op_ticket .ticketTit:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

    #ticket {}
    #ticket h3 {}
    #ticket .inBox {}

	#ticket .inBox .ticketBoxTit {
        font-size: 16px;
        margin: 0 0 20px;
        padding: 0 0 0 10px;
        border-left: 3px solid;
    }

    #ticket .inBox .areaBox {}
    #ticket .inBox .areaBox:last-child {}

    #ticket .inBox .op_ticket {}
	#ticket .op_ticket .ticketTit {
        padding: 15px 35px 15px 15px;
        font-size: 14px;
	}
    #ticket .op_ticket .ticketTit.open {}
    #ticket .op_ticket .ticketTit span {
        right: 15px;
        width: 15px;
        height: 15px;
    }
    #ticket .op_ticket .ticketTit span:before,
    #ticket .op_ticket .ticketTit span:after {
        width: 15px;
    }
	#ticket .op_ticket .ticketDetail {
        padding: 15px;
        font-size: 14px;
	}
	#ticket .op_ticket .detailList {
	    display: block;
	    margin: 0 0 15px;
	    border-bottom: none;
	}
	#ticket .op_ticket .detailList:first-child {
	    border-top: none;
	    padding: 0;
	}
	#ticket .op_ticket .detailList dt {
        width: 100%;
        margin: 0 0 10px;
        line-height: 1;
        font-weight: bold;
	}
    #ticket .op_ticket .detailList dt .detailInner .txt {
        border-left: 3px solid;
        padding: 0 0 0 10px;

    }
	#ticket .op_ticket .detailList dd {
	    width: 100%;
	    position: relative;
	    padding: 0;
	}
	#ticket .op_ticket .detailList dd:before {
	    content: none
	}

    #ticket .op_ticket .ticketDetail .btn a {
        width: 90%;
    }
	
}


/*===================================================
	streaming
====================================================*/
#streaming {}
#streaming h3 {}
#streaming .inBox {}

#streaming .inBox .txtBox {
    padding: 30px;
    margin-bottom: 5px;
    background: var(--color-white);
    color: var(--color-navyBlue);
    border-left: 10px solid var(--color-blue);
}
#streaming .inBox .txtBox:last-of-type {
    margin-bottom: 40px;
}
#streaming .inBox .txtBox .boxTit {
    display: inline-block;
    background: var(--color-navyBlue);
    margin: 0 0 10px;
    color: var(--color-white);
    font-weight: bold;
    padding: 5px 15px;
}
#streaming .inBox .txtBox .boxTxt {
    margin-bottom: 10px;
}
#streaming .inBox .txtBox .boxTxt:last-of-type {
    margin-bottom: 0;
}
#streaming .inBox .txtBox .boxTxt p {
    margin-bottom: 5px;
}
#streaming .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #streaming {}
    #streaming h3 {}
    #streaming .inBox {}

    #streaming .inBox .txtBox {
        padding: 15px;
        border-left: 5px solid var(--color-blue);
    }
    #streaming .inBox .txtBox:last-of-type {
        margin-bottom: 20px;
    }
    #streaming .inBox .txtBox .boxTit {
        font-size: 14px;
    }
    #streaming .inBox .txtBox .boxTxt {}
    #streaming .inBox .txtBox .boxTxt p {}

}


/*===================================================
	goods
====================================================*/
#goods {}
#goods h3 {}
#goods .inBox {}

#goods .inBox .goodsList {
    margin-bottom: 40px;
}
#goods .inBox .goodsList li {
    margin-bottom: 5px;
}
#goods .inBox .goodsList li:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #goods {}
    #goods h3 {}
    #goods .inBox {}
    
    #goods .inBox .goodsList {
        margin-bottom: 20px;
    }
    #goods .inBox .goodsList li {}
    #goods .inBox .goodsList li:last-child {}

}


/*===================================================
	fanclub
====================================================*/
#fanclub {}
#fanclub h3 {}
#fanclub .inBox {}

#fanclub .inBox .txtBox {
    padding: 30px;
    margin-bottom: 5px;
    background: var(--color-white);
    color: var(--color-navyBlue);
    border-left: 10px solid var(--color-blue);
}
#fanclub .inBox .txtBox:last-of-type {
    margin-bottom: 40px;
}
#fanclub .inBox .txtBox .boxTit {
    display: inline-block;
    background: var(--color-navyBlue);
    margin: 0 0 10px;
    color: var(--color-white);
    font-weight: bold;
    padding: 5px 15px;
}
#fanclub .inBox .txtBox .boxTxt {
    margin-bottom: 10px;
}
#fanclub .inBox .txtBox .boxTxt:last-of-type {
    margin-bottom: 0;
}
#fanclub .inBox .txtBox .boxTxt p {
    margin-bottom: 5px;
}
#fanclub .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #fanclub {}
    #fanclub h3 {}
    #fanclub .inBox {}

    #fanclub .inBox .txtBox {
        padding: 15px;
        border-left: 5px solid var(--color-blue);
    }
    #fanclub .inBox .txtBox:last-of-type {
        margin-bottom: 20px;
    }
    #fanclub .inBox .txtBox .boxTit {
        font-size: 14px;
    }
    #fanclub .inBox .txtBox .boxTxt {}
    #fanclub .inBox .txtBox .boxTxt p {}

}



/*===================================================
	contact
====================================================*/
#contact {}
#contact h3 {}
#contact .inBox {}

#contact .inBox .txtBox {
    padding: 30px;
    margin-bottom: 5px;
    background: var(--color-white);
    color: var(--color-navyBlue);
    border-left: 10px solid var(--color-blue);
}
#contact .inBox .txtBox:last-of-type {
    margin-bottom: 40px;
}
#contact .inBox .txtBox .boxTit {
    display: inline-block;
    background: var(--color-navyBlue);
    margin: 0 0 10px;
    color: var(--color-white);
    font-weight: bold;
    padding: 5px 15px;
}
#contact .inBox .txtBox .boxTxt {
    margin: 0 0 15px;
}
#contact .inBox .txtBox .boxTxt:last-child {
    margin: 0;
}
#contact .inBox .txtBox .boxTxt p {
    font-size: 14px;
    margin-bottom: 5px;
}
#contact .inBox .txtBox .boxTxt p a {
    text-decoration: underline;
}
#contact .inBox .txtBox .boxTxt p i {
    padding: 0 5px 0 0;
}
#contact .inBox .txtBox .boxTxt p.note {
    font-size: 12px;
}
#contact .inBox .txtBox .boxTxt p:first-child {
    font-weight: bold;
}
#contact .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}
#contact .inBox .txtBox:last-child .boxTxt p {
    font-size: 12px;
    margin: 0
}
#contact .inBox .txtBox:last-child .boxTxt p:first-child {}

@media screen and (min-width: 961px){

    #contact .inBox .txtBox .boxTxt p a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

    #contact {}
    #contact h3 {}
    #contact .inBox {}

    #contact .inBox .txtBox {
        padding: 15px;
        border-left: 5px solid var(--color-blue);
    }
    #contact .inBox .txtBox:last-of-type {
        margin-bottom: 20px;
    }
    #contact .inBox .txtBox .boxTit {
        font-size: 14px;
    }
    #contact .inBox .txtBox .boxTxt {
        font-size: 12px;
    }
    #contact .inBox .txtBox .boxTxt:last-child {}
    #contact .inBox .txtBox .boxTxt p {}
    #contact .inBox .txtBox .boxTxt p.note {}
    #contact .inBox .txtBox .boxTxt p span {}
    #contact .inBox .txtBox .boxTxt p a {}
    #contact .inBox .txtBox .boxTxt p i {}
    #contact .inBox .txtBox .boxTxt p:last-child {}
    #contact .inBox .txtBox:last-child .boxTxt p {}
    #contact .inBox .txtBox:last-child .boxTxt p:first-child {}
    #contact .inBox .txtBox:last-child .boxTxt p:last-child {
        margin-top: 5px;
    }
}


/*===================================================
	footer
====================================================*/
footer {
    position: relative;
}
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;
    }

}