@charset "utf-8";
/*===================================================
    color
====================================================*/
:root {
    --main: #629BCC;
    --accent: #D893BE;
    --white: #fff;
    --black: #222;
    --gray: #bbbbbb;
    --box: linear-gradient(0deg,rgba(178, 204, 224, 1) 0%, rgba(147, 186, 214, 1) 100%);
    --boxBorder: #E7EFF5;

    --commonFont: "Shippori Mincho", serif;
} 



/*===================================================
  anim
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--box);
    z-index: 9999;
}

.action.act01 .bgItem {
    opacity:0;
    transition: 1s ease-out;
    transform: scale(1.1);
    filter: blur(20px);
}
.loaded .action.act01 .bgItem {
    opacity: 1;
    transition-delay: 0.5s;
    transform: scale(1);
    filter: blur(0px);
}

.action.act02 img {
    opacity:0;
    transition: 1s ease-out;
}
.loaded .action.act02 img {
    opacity: 1;
    transition-delay: 1s;
}

.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){}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    pointer-events: none;
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    min-height: 600px;
    transform: translate3d(0, 0, -1px);
    overflow: hidden;
    background-color: var(--white);
}
.bgBox .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.bgBox .bg01 {
    z-index: 1;
    background: url(/static/notequalme/official/feature/specialLive2025/image/ph_bg_1e0y0M9p.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}
.bgBox .bg02 {
    z-index: 2;
    mix-blend-mode: plus-lighter;
    opacity: 0.15;
}
.bgBox .bg02 .star {
    position: absolute;
    display: block;
    background-color: var(--white);
    border-radius: 100px;
    opacity: 0;
    animation: light 3s infinite;
    filter: blur(4px);
}
@keyframes light {
  0% {opacity: 0;}
  50% {opacity: 1;transform: scale(1.2);}
  100% {opacity: 0;transform: scale(1);}
}
.bgBox .bg03 {
    z-index: 3;
    opacity: 0.4;
}
.bgBox .bg03 .bgItem {
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.bgBox .bg03 .bgItem.bgItem01 {
    background: url(/static/notequalme/official/feature/specialLive2025/image/ph_bgItem_01_1e0y0M9p.png) no-repeat;
    background-position: center 25%;
    background-size: cover;
}
.bgBox .bg03 .bgItem.bgItem02 {
    background: url(/static/notequalme/official/feature/specialLive2025/image/ph_bgItem_02_1e0y0M9p.png) no-repeat;
    background-position: 25% center;
    background-size: cover;
}
.bgBox .bg03 .bgItem.bgItem03 {
    background: url(/static/notequalme/official/feature/specialLive2025/image/ph_bgItem_03_1e0y0M9p.png) no-repeat;
    background-position: 75% center;
    background-size: cover;
}
.bgBox .bg03 .bgItem.bgItem04 {
    background: url(/static/notequalme/official/feature/specialLive2025/image/ph_bgItem_04_1e0y0M9p.png) no-repeat;
    background-position: center 75%;
    background-size: cover;
}
.bgBox .bg04 {
    z-index: 4;
    aspect-ratio: 1 / 1;
    width: initial;
    height: 120%;
    background: var(--white);
    border-radius: 9999px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    opacity: 0.5;
    transition: 0.5s ease-out;
}
.scrolled .bgBox .bg04 {
    opacity: 0;
}

@media screen and (max-width: 960px){

	.bgBox {}
	.bgBox .bg {}
	.bgBox .bg01 {
        background: url(/static/notequalme/official/feature/specialLive2025/image/ph_bg_sp_1e0y0M9p.jpg) no-repeat;
        background-position: center center;
        background-size: cover;
    }
    .bgBox .bg02 {
        opacity: 0.1;
    }
    .bgBox .bg03 {}
    .bgBox .bg03 .bgItem {}
    .bgBox .bg03 .bgItem.bgItem01 {
        background: url(/static/notequalme/official/feature/specialLive2025/image/ph_bgItem_01_sp_1e0y0M9p.png) no-repeat;
        background-position: center 0%;
        background-size: cover;
    }
    .bgBox .bg03 .bgItem.bgItem02,
    .bgBox .bg03 .bgItem.bgItem03 {
        display: none;
    }
    .bgBox .bg03 .bgItem.bgItem04 {
        background: url(/static/notequalme/official/feature/specialLive2025/image/ph_bgItem_02_sp_1e0y0M9p.png) no-repeat;
        background-position: center 100%;
        background-size: cover;
    }
    .bgBox .bg04 {
        height: initial;
        width: 150%;
        max-width: 900px;
        background: var(--white);
        filter: blur(60px);
    }
    
}



/*===================================================
    nav
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 30px;
    top: 30px;
    width: 45px;
    height: 45px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9998;
    background: var(--accent);
    border-radius: 100px;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 25%;
    width: 50%;
    height: 2px;
    background: var(--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(--white);
    color: var(--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 .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(3) {
    margin-bottom: 40px;
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li a {}
.navigation .headerNav li a img {
    height: 25px;
    width: auto;
    margin-bottom: 25px;
}

.navigation .snsList{
	display: flex;
}
.navigation .snsList .menuList {
	display: flex;
}
.navigation .snsList .navListTit {
    margin-right: 20px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    color: var(--main);
}
.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: 100px;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    background: var(--accent);
}
.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: 20px;
        top: 20px;
        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 20px;
    }
    .navigation .headerNav li a {}
    .navigation .headerNav li a img {
        height: 20px;
        margin-bottom: 0;
    }
    .navigation .headerNav li:nth-last-child(3) {
        margin: 0 0 30px;
    }
    .navigation .headerNav li:nth-last-child(2) {
        margin: 0 0 20px;
    }
    .navigation .headerNav .menuList li:nth-last-child(2),
    .navigation .headerNav .menuList li:nth-last-child(3) {
        margin: 0 10px 0 0;
    }

}


/*===================================================
	all
====================================================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    background: var(--white);
}

body {}

.mainWrap {
    position: relative;
    z-index: 1;
    font-family: var(--commonFont);
	font-size: 16px;
    color: var(--white);
    line-height: 1.5;
	letter-spacing: 0.03em;
}
.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: 65px;
    background: var(--box);
    border-radius: 10px;
}
section .inBox:last-child {
    margin-bottom: 0;
}
section .inBox .frameBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    border: 2px solid var(--boxBorder);
    pointer-events: none;
    border-radius: 7px;
}
section .inBox .frameBox .frame {
    position: absolute;
    width: 10px;
    aspect-ratio: 1 / 1;
    background: var(--white);
    border-radius: 100px;
}
section .inBox .frameBox .frame.lt { top: 10px; left: 10px; }
section .inBox .frameBox .frame.rt { top: 10px; right: 10px; }
section .inBox .frameBox .frame.lb { left: 10px; bottom: 10px; }
section .inBox .frameBox .frame.rb { right: 10px; bottom: 10px; }

section .inBox h3 {
    margin-bottom: 60px;
}
section .inBox h3 img {
    height: 60px;
    width: auto;
    margin: 0 auto;
}

section .inBox .btn a {
	display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    color: var(--white);
    background: var(--accent);
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-radius: 100px;
}
section .inBox .btn.fin a {
	background: var(--gray);
    pointer-events: none;
}

.note {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
}

.soon {
    text-align: center;
    padding: 60px 0;
    background: var(--white);
    color: var(--main);
    font-weight: bold;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	section .inBox .btn a:hover {
		color: var(--accent);
	    background: var(--white);
	}
	
}

@media screen and (max-width: 960px){

	.pc {
		display: none;
	}
	
	html {
	    scroll-padding-top: 45px;
	}

    .mainWrap {
        font-size: 14px;
    }

	section {
	    margin: 0 auto 80px;
	}
    section:last-of-type {
	    margin: 0 auto 160px;
	}

	section .inBox {
	    padding: 40px 30px 30px;
        margin-bottom: 20px;
	}
    section .inBox .frameBox {
        border: 1px solid var(--boxBorder);
    }
    section .inBox .frameBox .frame {
        width: 8px;
    }
    section .inBox .frameBox .frame.lt { top: 6px; left: 6px; }
    section .inBox .frameBox .frame.rt { top: 6px; right: 6px; }
    section .inBox .frameBox .frame.lb { left: 6px; bottom: 6px; }
    section .inBox .frameBox .frame.rb { right: 6px; bottom: 6px; }

    section .inBox h3 {
        margin: 0 0 35px;
	}
    section .inBox h3 img {
        max-height: 70px;
        height: 8vw;
    }

    section .inBox .btn a {
        width: 90%;
        padding: 15px;
    }
    section .inBox .ticketDetail .btn a {
        width: 100%;
    }

    .note {
        font-size: 12px;
    }

    .soon {
        padding: 30px 0;
    }

}


/*===================================================
	hero
====================================================*/
#heroView {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    margin: 0 0 160px;
}

#heroView .heroInner {}
#heroView .heroInner .mainLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 325 / 303;
    height: 75%;
}

.scrollBox {
    position: absolute;
    width: 100%;
    height: 100svh;
    top: 0;
    z-index: 1;
    pointer-events: none;
}
.scrollBox .scrollArrow {
    position: absolute;
    left: 35px;
    bottom: 35px;
}
.scrollBox .scrollArrow .txt {
    color: var(--black);
    font-weight: bold;
    line-height: 1;
    writing-mode: vertical-rl;
    padding: 0 0 10px 0;
}
.scrollBox .scrollArrow span {
    display: block;
    z-index: 1;
    width: 1px;
    height: 60px;
    background: var(--black);
    animation: scrollArrow 3s cubic-bezier(.19,1,.22,1) 0.5s infinite;
}
@keyframes scrollArrow{
    0% {clip-path: inset(0 0 100% 0);}
    25% {clip-path: inset(0 0 0 0);}
    75% {clip-path: inset(0 0 0 0);}
    100% {clip-path: inset(100% 0 0 0);}
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

	#heroView {
	    min-height: 450px;
	    margin: 0 0 80px;
	}
			
	#heroView .heroInner .mainLogo {
        max-width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
			
	#heroView .scrollBox .scrollArrow {
        left: 20px;
        bottom: 20px;
	}

}



/*===================================================
	schedule
====================================================*/
#schedule {}
#schedule .inBox {}

#schedule .tourDateBox {}
#schedule .tourDateBox .tourDateList {
    position: relative;
}
#schedule .tourDateBox .tourDateList:before {
    display: block;
    position: absolute;
    top: -15px;
    left: -20px;
    width: 90px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
    transform: rotate(-15deg);
    font-size: 14px;
}
#schedule .tourDateBox .tourDateList.fin:before  {
    content: "公演終了";
    background: var(--white);
    color: var(--main);
}
#schedule .tourDateBox .tourDateList.sold:before  {
    content: "完売";
    background: var(--accent);
}
#schedule .tourDateBox .tourDateList.listHead {
    padding: 0 0 10px;
}
#schedule .tourDateBox .tourDateList.listHead li {
    justify-content: center;
    font-size: 70%;
    font-weight: 600;
}
#schedule .tourDateBox .tourDateList.listHead li:after {
    display: none;
}

#schedule .tourDateBox .tourDateList {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--white);
    padding: 0 0 15px;
    margin: 0 0 15px;
    position: relative;
}
#schedule .tourDateBox .tourDateList:last-child {
    margin: 0;
}
#schedule .tourDateBox .tourDateList li {
    padding: 0 15px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
#schedule .tourDateBox .tourDateList li:after {
    content: "";
    position: absolute;
    background: var(--white);
    top: 5%;
    right: 0;
    width: 1px;
    height: 90%;
} 
#schedule .tourDateBox .tourDateList li.scheduleTime:after {
    display: none;
}
#schedule .tourDateBox .tourDateList .scheduleDate {
    width: 28%;
    font-size: 18px;
    font-weight: bold;
}
#schedule .tourDateBox .tourDateList .scheduleDate .day {
    font-size: 14px;
    padding: 0 3px;
}
#schedule .tourDateBox .tourDateList .scheduleDate .day.week {
    padding: 0 0 0 3px;
}
#schedule .tourDateBox .tourDateList .scheduleArea {
    width: 9%;
}
#schedule .tourDateBox .tourDateList .scheduleVenue {
    width: 28%;
    text-align: center;
}
#schedule .tourDateBox .tourDateList .scheduleTime {
    width: 35%;
}
#schedule .tourDateBox .tourDateList .scheduleTime span {
    display: inline-block;
    font-size: 12px;
    background: var(--accent);
    font-weight: bold;
    padding: 0 10px;
    margin: 0 10px 0 0;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #schedule .tourDateBox .tourDateList {
        padding: 0px 0 15px;
        margin: 0 0 15px;
    }
    #schedule .tourDateBox .tourDateList:before {
        position: relative;
        transform: rotate(0deg);
        top: 0;
        left: 0;
        margin-bottom: 5px;
    }
    #schedule .tourDateBox .tourDateList.fin:before {}
    #schedule .tourDateBox .tourDateList.sold:before {}
    
    #schedule .tourDateBox .tourDateList.listHead {
        padding: 0;
    }
	#schedule .tourDateBox .tourDateList.listHead li {
	    display: none;
	}

	#schedule  .tourDateBox .tourDateList {
        display: block;
        padding: 0 0 20px;
        margin: 0 0 15px;
        border-bottom: 1px solid var(--white);
	}
	#schedule  .tourDateBox .tourDateList li {
	    padding: 0;
	    display: block;
	    font-size: 100%;
	}
	#schedule  .tourDateBox .tourDateList li:after{
		display: none;
	} 
	#schedule  .tourDateBox .tourDateList .scheduleDate {
	    width: 100%;
        font-size: 16px;
        margin: 0 0 5px;
        font-weight: 400;
    }
    #schedule  .tourDateBox .tourDateList .scheduleDate .day {
        font-size: 12px;
    }
    #schedule  .tourDateBox .tourDateList .scheduleDate .area {}
	#schedule  .tourDateBox .tourDateList .scheduleDate .sp {
		padding: 0 0 0 10px;
	}
	#schedule  .tourDateBox .tourDateList .scheduleArea {
		display: none;
	}
	#schedule  .tourDateBox .tourDateList .scheduleVenue {
        width: 100%;
        text-align: left;
        font-size: 18px;
        margin: 0 0 10px;
        font-weight: bold;
	}
	#schedule  .tourDateBox .tourDateList .scheduleTime {
        width: 100%;
        font-size: 12px;
	}
    #schedule  .tourDateBox .tourDateList .scheduleTime span {
        margin: 0 5px 5px 0;
    }
    #schedule  .tourDateBox .tourDateList .scheduleTime p span:last-child {
        margin: 0 5px 0 0;
    }

}
    

/*===================================================
	ticket
====================================================*/
#ticket {}
#ticket h3 {}
#ticket .inBox {}

#ticket .inBox .ticketBoxTit {
    display: flex;
    font-size: 24px;
    font-weight: bold;
    align-items: center;
    margin: 0 0 20px;
}
#ticket .inBox .ticketBoxTit:after {
    content: "";
    flex-grow: 1;
    border-top: 1px solid;
    margin-left: 20px;
}

#ticket .inBox .areaBox {
    margin-bottom: 30px;
}
#ticket .inBox .areaBox:last-child {
    margin-bottom: 0;
}

/*============ accordion ===========*/
#ticket .inBox .op_ticket {
    margin: 0 0 2px;
}
#ticket .inBox .op_ticket:last-child {
    margin: 0;
}
#ticket .op_ticket .ticketTit {
    background: var(--main);
    padding: 30px 65px 30px 40px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: 10px;
}
#ticket .op_ticket .ticketTit.open {
    border-radius: 10px 10px 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: 0 40px 40px;
    background-color: var(--main);
    border-radius: 0 0 10px 10px;
}

#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(--white);
}
#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 15px;
    }
    #ticket .inBox .ticketBoxTit:after {
        margin-left: 10px;
    }

    #ticket .inBox .areaBox {}
    #ticket .inBox .areaBox:last-child {}

    #ticket .inBox .op_ticket {}
	#ticket .op_ticket .ticketTit {
        padding: 15px 35px 15px 15px;
        font-size: 14px;
        border-radius: 5px;
	}
    #ticket .op_ticket .ticketTit.open {
        border-radius: 5px 5px 0 0;
    }
    #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: 0 15px 15px;
        font-size: 14px;
        border-radius: 0 0 5px 5px;
	}
	#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
	}
	
}


/*===================================================
	streaming
====================================================*/
#streaming {}
#streaming h3 {}
#streaming .inBox {}

#streaming .inBox .txtBox {
    padding: 30px;
    background-color: var(--white);
    color: var(--main);
    margin-bottom: 5px;
    border-radius: 5px;
}
#streaming .inBox .txtBox:last-of-type {
    margin-bottom: 40px;
}
#streaming .inBox .txtBox .boxTit {
    display: inline-block;
    background: var(--main);
    margin: 0 0 10px;
    color: var(--white);
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
}
#streaming .inBox .txtBox .boxTxt {}
#streaming .inBox .txtBox .boxTxt p {
    margin-bottom: 5px;
}
#streaming .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #streaming {}
    #streaming h3 {}
    #streaming .inBox {}

    #streaming .inBox .txtBox {
        padding: 15px;
    }
    #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 {}

}



/*===================================================
	contact
====================================================*/
#contact {}
#contact h3 {}
#contact .inBox {}

#contact .inBox .txtBox {
    padding: 30px;
    background-color: var(--white);
    color: var(--main);
    margin-bottom: 5px;
    border-radius: 5px;
}
#contact .inBox .txtBox:last-child {}
#contact .inBox .txtBox .boxTit {
    display: inline-block;
    background: var(--main);
    margin: 0 0 10px;
    color: var(--white);
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
}
#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;
    }
    #contact .inBox .txtBox:last-child {}
    #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: #222;
}

@media screen and (min-width: 961px){

    footer {
        padding: 0 0 30px;
        height: auto !important;
        position: relative;
        color: #222;
    }
    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% 30px;
    }
    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;
    }

}