@charset "utf-8";
/*===================================================
    color
====================================================*/
:root {
    --main: #231B5B;
    --mainHalf: #231B5B50;
    --accent: #ea6c81;
    --bg: #DADAEE;
    --white: #ffffff;
    --gray: #bbbbbb;

    --commonFont: "Shippori Mincho", "Noto Serif JP", serif;
    --titleFont: "Cormorant Garamond", serif;
} 



/*===================================================
  anim
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--main);
    z-index: 9999;
}

.action.act01 img {
    opacity:0;
    transition: .5s ease-out;
}
.action.act01.flower01 img {
    transform: translateX(-30px);
}
.action.act01.flower02 img {
    transform: translateX(30px);
}
.loaded .action.act01 img {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 1.25s;
}
.action.act02 img {
    transform: translateY(20px);
    opacity:0;
    transition: .5s ease-out;
}
.loaded .action.act02 img {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1.75s;
}

.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){}




/*===================================================
    borderBox
====================================================*/
.borderBox {
    pointer-events: none;
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    border: 7px solid var(--main);
    z-index: 9;
}
.borderBox span {
    position: fixed;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    border: 3px solid var(--main);
}
.borderBox .borderItem {
    position: absolute;
    width: 75px;
}
.borderBox .borderItem01 {
    top: 5px;
    left: 5px;
}
.borderBox .borderItem02 {
    bottom: 5px;
    left: 5px;
}
.borderBox .borderItem03 {
    bottom: 5px;
    right: 5px;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    .borderBox {
        border: 5px solid var(--main);
    }
    .borderBox span {
        width: calc(100% - 15px);
        height: calc(100% - 15px);
        border: 2px solid var(--main);
    }
    .borderBox .borderItem {
        width: 50px;
    }
    .borderBox .borderItem01 {}
    .borderBox .borderItem02 {}
    .borderBox .borderItem03 {}

}


/*===================================================
    flowerBox
====================================================*/
.flowerBox {
    pointer-events: none;
    width: 100%;
    height: 100vh;
    padding: 0;
    position: fixed;
    z-index: -1;
    left: 50%;
    top: 0;
    min-height: 750px;
    min-width: 1300px;
    transform: translate3d(-50%, 0, -1px);
}
.flowerBox .flower {
    position: absolute;
    top: 50%;
    opacity: 0.5;
}
.flowerBox .flower.flower01 {
    left: -10%;
    transform: translate(-10%, -50%);
    aspect-ratio: 1127 / 1824;
    height: 125vh;
}
.flowerBox .flower.flower02 {
    right: -10%;
    transform: translate(10%, -50%);
    aspect-ratio: 1127 / 1824;
    height: 125vh;
}

@media screen and (max-width: 960px){

	.flowerBox {
        min-height: 600px;
        min-width: 700px;
    }
    .flowerBox .flower {}
    .flowerBox .flower.flower01 {
        height: 90vh;
        max-height: 700px;
    }
    .flowerBox .flower.flower02 {
        height: 90vh;
        max-height: 700px;

    }

}


/*===================================================
    bgBox
====================================================*/
.bgBox {
    pointer-events: none;
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    z-index: -2;
    left: 0;
    top: 0;
    min-height: 600px;
    transform: translate3d(0, 0, -1px);
    overflow: hidden;
}
.bgBox .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.bgBox .bg01 {
    position: relative;
    z-index: 1;
    background-image: url(/static/equallove/official/feature/8th_aniv/image/ph_bg_0t8m0M6e.png);
    background-repeat: repeat;
    background-size: 75px 75px;
    opacity: 0.05;
}


@media screen and (max-width: 960px){

	.bgBox {
	    min-height: 450px;
	    height: 100vh;
	}
	.bgBox .bg {
		height: 100vh;
	}
	.bgBox .bg01 {
        background-size: 50px 50px;
	}
    
}



/*===================================================
    nav
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 10px;
    top: 10px;
    width: 45px;
    height: 45px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9998;
    background: var(--main);
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 10px;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: 12px;
}
.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn :nth-of-type(3) {
    bottom: 12px;
}
.hamBtn.open span {
    background: var(--white);
}
.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);
    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:after {
    content: none;
}
.navigation .headerNav li a{
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

.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;
}
.navigation .snsList .navListTit.sns {
    margin-right: 29px;
}
.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(--main);
    color: var(--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: 9px;
        top: 9px;
        width: 40px;
        height: 40px;
    }
    .hamBtn span {
        right: 20%;
        width: 60%;
    }
    .hamBtn :nth-of-type(1) {
        top: 10px;
    }
    .hamBtn :nth-of-type(3) {
        bottom: 10px;
    }

	.navigation .headerNav {
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-position: top center;
	    overflow: hidden;
	    object-fit: cover;
	}

    .navigation .headerNavBox {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .navigation .heroNavLogo {
        width: 50%;
        max-width: 175px;
        margin: 0px 0 30px;
    }
    .navigation .headerNav li {
        margin: 0 0 15px;
    }
    .navigation .headerNav li a {
        font-size: 20px;
    }
    .navigation .headerNav li:nth-last-child(3) {
        margin: 0 0 25px;
    }
    .navigation .snsList .menuList li:nth-last-child(3) {
    margin: 0px 10px 0 0;
    }

}


/*===================================================
	all
====================================================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    background: var(--bg);
}

body {}

.mainWrap {
    position: relative;
    z-index: 1;
    font-family: var(--commonFont);
	font-size: 16px;
    color: var(--main);
    line-height: 1.5;
	letter-spacing: 0.03em;
    word-break: break-all;
}
.mainWrap img {
	display: block;
}

.container {
    position: relative;
}

section {
	margin: 0 auto 160px;
    width: 90%;
    max-width: 1200px;
}

section h3 {
    position: relative;
    font-family: var(--titleFont);
    font-size: 80px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    margin: 0 0 40px;
}

section .inBox {
    position: relative;
    margin-bottom: 40px;
    padding: 20px 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}
section .inBox:last-child {
    margin-bottom: 0;
}
section .inBox .frame {
    width: 150px;
    margin: 0 auto;
}
section .inBox .frame.top {
    margin-bottom: 30px;
}
section .inBox .frame.bottom {
    margin-top: 30px;
}
section .inBox .inBoxBorder {
    padding: 40px;
    border: 1px solid;
    border-radius: 10px;
    margin-bottom: 20px;
}
section .inBox .inBoxBorder:last-child {
    margin-bottom: 0;
}

section .inBox .btn a {
	display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    color: var(--white);
    background: var(--accent);
    border: 1px solid 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: 20px 0;
    font-weight: bold;
    font-size: 20px;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a,img,i {
		-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 90px;
	    width: calc(100% - 50px);
	}

	section h3 {
        font-size: 36px;
        margin: 0 0 20px;
	}

	section .inBox {
	    padding: 15px 20px;
        margin-bottom: 20px;
        box-shadow: 0 0px 10px rgba(0, 0, 0, 0.05);
	}
    section .inBox .frameBox {
        top: 5px;
        left: 5px;
        height: calc(100% - 10px);
        width: calc(100% - 10px);
    }
    section .inBox .frame {
        width: 100px;
    }
    section .inBox .frame.top {
        margin-bottom: 20px;
    }
    section .inBox .frame.bottom {
        margin-top: 20px;
    }
    section .inBox .inBoxBorder {
        padding: 20px;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    section .inBox .btn a {
        padding: 15px;
    }

    .note {
        font-size: 12px;
    }

    .soon {
        padding: 10px 0;
        font-size: 16px;
    }

}


/*===================================================
	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%);
    -webkit-transform: translate(-50%, -50%);
    aspect-ratio: 603 / 628;
    height: 80svh;
    min-height: 480px;
}

#heroView .artistLogo {
    position: absolute;
    width: 30px;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
}

#heroView .scrollBox {
    position: absolute;
    width: 100%;
    height: 100svh;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
#heroView .scrollBox .scrollArrow {
    width: 1px;
    height: 60px;
    position: absolute;
    right: 50px;
    bottom: 50px;
    z-index: 1;
    background: var(--main);
    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){

    #heroView .artistLogo img:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

	#heroView {
	    min-height: 450px;
	    margin: 0 0 90px;
	}
			
	#heroView .heroInner .mainLogo {
        width: 80%;
        max-width: 450px;
        height: initial;
        min-height: initial;
    }

    #heroView .artistLogo {
        width: 75px;
        top: 30px;
        left: 49%;
        transform: translate(-50%, 0);
    }
			
	#heroView .scrollBox {}
	#heroView .scrollBox .scrollArrow {
        right: initial;
        left: 50%;
        bottom: 30px;
        transform: translateX(-50%);
	}

}



/*===================================================
	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(--main);
    color: var(--white);
}
#schedule .tourDateBox .tourDateList.sold:before {
  content: "完売!";
  background: var(--accent);
  color: var(--white);
}
#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(--main);
    padding: 0 0 15px;
    margin: 0 0 15px;
    position: relative;
}
#schedule .tourDateBox .tourDateList:last-of-type {
    margin-bottom: 20px;
}
#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(--main);
    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: 35%;
    text-align: center;
}
#schedule .tourDateBox .tourDateList .scheduleTime {
    width: 28%;
}
#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;
}
#schedule .more {
    text-align: center;
}

@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:last-of-type {
        margin-bottom: 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(--mainHalf);
	}
	#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;
        font-weight: 400;
        margin: 0 0 5px;
    }
    #schedule  .tourDateBox .tourDateList .scheduleDate .day {
        font-size: 12px;
    }
    #schedule  .tourDateBox .tourDateList .scheduleDate .area {}
	#schedule  .tourDateBox .tourDateList .scheduleDate .sp {
		padding: 0 0 0 10px;
        font-size: 90%;
	}
	#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;
    }

    #schedule .more {}

}
    

/*===================================================
	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;
}

#ticket .inBox .areaBox .area {
    font-size: 16px;
    border-left: 3px solid;
    padding: 0 0 0 10px;
    margin: 0 0 15px;
    font-weight: bold;
}

/*============ accordion ===========*/
#ticket .inBox .op_ticket {
    margin: 0 0 2px;
}
#ticket .inBox .op_ticket:last-child {
    margin: 0;
}
#ticket .op_ticket .ticketTit {
    background: var(--main);
    color: var(--white);
    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: 30px 40px;
    border: 1px solid;
    border-top: none;
    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(--main);
}
#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 {
        margin-bottom: 20px;
    }
    #ticket .inBox .areaBox:last-child {}

    #ticket .inBox .areaBox .area {
        font-size: 14px;
        margin: 0 0 10px;
    }

    #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: 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;
        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 .streamTit {
    padding: 0 0 40px;
    margin: 0 0 30px;
    border-bottom: 1px solid var(--mainHalf);
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
#streaming .inBox .txtBox {
    padding: 0 0 25px;
    margin: 0 0 30px;
    border-bottom: 1px solid var(--mainHalf);
}
#streaming .inBox .txtBox:last-of-type {
    margin-bottom: 40px;
}
#streaming .inBox .txtBox .boxTit {
    font-size: 16px;
    border-left: 3px solid;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
    font-weight: bold;
}
#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 .streamTit {
        padding: 0px 0 20px;
        margin: 0 0 20px;
        font-size: 16px;
        font-weight: bold;
        text-align: left;
    }
    #streaming .inBox .txtBox {
        padding: 0 0 15px;
        margin: 0 0 20px;
    }
    #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: 10px;
}
#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 {}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

	#fanclub {}
	#fanclub h3 {}
	#fanclub .inBox {}
	
}


/*===================================================
	contact
====================================================*/
#contact {}
#contact h3 {}
#contact .inBox {}

#contact .inBox .txtBox {
    padding: 0 0 25px;
    margin: 0 0 30px;
    border-bottom: 1px solid var(--mainHalf);
}
#contact .inBox .txtBox:last-child {
    padding: 0;
    margin: 0;
    border: none;
}
#contact .inBox .txtBox .boxTit {
    font-size: 16px;
    border-left: 3px solid;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
    font-weight: bold;
}
#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 {
    font-size: 14px;
    margin: 0 0 5px;
}

@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: 0 0 15px;
        margin: 0 0 20px;
    }
    #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 {
        font-size: 10px;
    }
    #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 {
        font-size: 10px;
    }
    #contact .inBox .txtBox:last-child .boxTxt p:first-child {
        font-size: 12px;
    }

}


/*===================================================
	FanClub
====================================================*/
#fanclub {}
#fanclub h3 {}
#fanclub .inBox {}

#fanclub .inBox .tit {
    font-weight: bold;
    border-left: 5px solid;
    padding: 0 0 0 10px;
    margin: 0 0 20px;
    font-size: 20px;
    color: #DF93AE;
}
#fanclub .inBox .txt {
    margin: 0 0 35px;
    background: #DF93AE25;
    padding: 25px 30px;
}
#fanclub .inBox .txt p {
    margin-bottom: 10px;
}
#fanclub .inBox .txt 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 .tit {
        margin: 0 0 15px;
        border-left: 3px solid;
        font-size: 16px;
    }
    #fanclub .inBox .txt {
        font-size: 14px;
        margin: 0 0 20px;
        padding: 15px 20px;
    }
    #fanclub .inBox .txt p {}
    #fanclub .inBox .txt p:last-child {}

}



/*===================================================
	footer
====================================================*/
#footer {
    width: 100%;
    padding: 0 0 40px;
    position: relative;
    z-index: 10;
}

#footer dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

#footer dl dt a {
    height: 74px;
    display: block;
}

#footer dl dt svg {
    width: 150px;
    height: 74px;
    fill: var(--main);
}

#footer dl dd .yoani {
	display: block;
    width: 180px;
    margin: 0 auto 10px;
    line-height: 0;
}

#footer .copy {
    display: inline-block;
    font-size: 10px;
}

@media screen and (min-width: 961px){

	#footer dl dt svg,
	#footer dl dd .yoani img {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	#footer dl dt a:hover svg,
	#footer dl dd .yoani:hover img {
	    opacity: 0.7;
	}
	
}

@media screen and (max-width: 960px){

	#footer {}

	#footer dl {
		display: flex;
	    align-items: center;
	    padding: 0;
	    flex-direction: column;
	    justify-content: inherit;
	}

	#footer dl dt a {
		margin: 0 0 30px;
	    height: 54px;
	}

	#footer dl dt svg {
	    width: 110px;
	    height: 54px;
	}
	
	#footer dl dd .logo {
	    padding: 0 10px 0 0;
	}

	#footer dl dd .yoani {}

	#footer .copy {}

}