@charset "utf-8";

:root {
    --commonColor: #8C8670;
    --commonColorLight: #8C867015;
    --red: #E1C1C8;
    --blue: #86ADCF;
    --lightBlue: #B3D3EB;
    --white: #fff;
    --gray: #b1b1b1;
    --commonFont: "Shippori Mincho", serif;
    --titleFont: "Libre Baskerville", serif;
}



/*===================================================
    anim
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--blue);
    z-index: 9999;
}

.action {
    opacity:0;
    transition: .5s ease-out;
}
.loaded .action {
    opacity:1;
}
.action.act01 {
    transform: translateY(20px);
}
.loaded .action.act01 {
    transform: translateY(0);
    transition-delay: 1.25s;
}

.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: #fff;
}
.bgBox .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.bgBox .bg01 {
    background: url(/static/stu48/fansite/feature/liveTour2025/image/ph_bg_0y7b2P3k.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}
.bgBox .bg02 {
    z-index: 2;
}
.bgBox .bg02 .bgItem {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1200px;
    opacity: 0.15;
}
.bgBox .bg02 .bgItem.bgItem01 {
    top: 0;
}
.bgBox .bg02 .bgItem.bgItem02 {
    bottom: 0;
}
.bgBox .bg03 {
    z-index: 3;
    width: calc(100% - 40px);
    height: calc(100svh - 40px);
    min-height: 560px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--commonColor);
}

@media screen and (max-width: 960px){

	.bgBox {
	    min-height: 450px;
	}
	.bgBox .bg {}
    .bgBox .bg.bg01 {
        background: url(/static/stu48/fansite/feature/liveTour2025/image/ph_bg_sp_0y7b2P3k.jpg) no-repeat center center;
        background-position: center center;
        background-size: cover;
    }
    .bgBox .bg02 .bgItem {
        min-width: 800px;
    }
    .bgBox .bg02 .bgItem.bgItem01 {}
    .bgBox .bg02 .bgItem.bgItem02 {}
    .bgBox .bg03 {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }

}



/*===================================================
    nav
====================================================*/
.navList {
    position: fixed;
    right: 40px;
    top: 40px;
    font-family: var(--titleFont);
    text-align: right;
    color: var(--lightBlue);
    text-decoration: none;
    line-height: 1;
    z-index: 9;
    font-size: 24px;
    text-shadow: -0.75px -0.75px 0 var(--blue), 0.75px -0.75px 0 var(--blue), -0.75px 0.75px 0 var(--blue), 0.75px 0.75px 0 var(--blue);
    font-weight: bold;
    letter-spacing: 0.075em;
}
.navList li {
    margin: 0 0 15px;
}
.navList li:last-child {
    margin: 0;
}
.navList li a {
    text-decoration: none;
}

@media screen and (min-width: 961px){

	.navList li a:hover,
	.navigation .headerNav a:hover {
		opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

    .hamBtn {
        background: var(--commonColor);
        border-radius: 100px;
        display: block;
        position: fixed;
        right: 25px;
        top: 25px;
        width: 40px;
        height: 40px;
        transition: all .3s ease;
        cursor: pointer;
        z-index: 9998;
    }
    .hamBtn span {
        display: block;
        position: absolute;
        right: 0;
        width: 50%;
        height: 1px;
        background: var(--white);
        transition: all .3s ease;
    }
    .hamBtn :nth-of-type(1) {
        top: 37.5%;
        left: 25%;
    }
    .hamBtn :nth-of-type(2) {
        bottom: 37.5%;
        left: 25%;
    }
    .hamBtn.open span {}
    .hamBtn.open span:nth-of-type(1) {
        transform: translateY(-50%) rotate(-45deg);
        top: 50%;
    }
    .hamBtn.open span:nth-of-type(2) {
        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 .headerNav {
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-position: top center;
	    overflow: hidden;
	    object-fit: cover;
	}
    
    .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;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        flex-flow: column;
    }
    .navigation .headerNavBox .headerNav {}
    
    .navigation .heroNavLogo {
        width: 60%;
        max-width: 225px;
        margin: 0px 0 30px 3%;
    }
    
	.navigation .headerNav {
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-position: top center;
	    overflow: hidden;
	    object-fit: cover;
	}
    .navigation .headerNav li {
        padding: 0;
        position: relative;
        margin: 0 0 20px;
        line-height: 1;
    }
    .navigation .headerNav li:last-child {
        margin: 0;
    }
    .navigation .headerNav li:after {
        content: none;
    }
    .navigation .headerNav li a{
        font-size: 24px;
        text-decoration: none;
        color: var(--lightBlue);
        text-shadow: -0.75px -0.75px 0 var(--blue), 0.75px -0.75px 0 var(--blue), -0.75px 0.75px 0 var(--blue), 0.75px 0.75px 0 var(--blue);
        margin: 0 auto;
        font-weight: bold;
        line-height: 1;
        display: block;
    }

}



/*===================================================
	all
====================================================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    background: var(--white);   
}

body {
    background: var(--white);
}

.mainWrap {
	position: relative;
    z-index: 1;
	line-height: 1.5;
	font-size: 16px;
    letter-spacing: 0.03em;
	color: var(--commonColor);
    font-family: var(--commonFont);
}
.mainWrap img {
	display: block;
}

.container {
    position: relative;
}

section {
	margin: 0 auto 160px;
    text-align: center;
}
section:last-of-type {
	margin: 0 auto 240px;  
}

section h3 {
    position: relative;
    margin: 0 auto 60px;
    line-height: 1;
}
section h3 img {
    height: 80px;
    width: auto;
    margin: 0 auto;
}

section .inBox {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--commonColor);
    box-shadow: 5px 5px var(--commonColorLight);
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

section .inBox .btn {}
section .inBox .btn a {
    display: block;
    padding: 15px 20px;
    color: var(--red);
    width: 90%;
    max-width: 300px;
    text-align: center;
    background: var(--red);
    border: 1px solid var(--red);
    margin: 0 auto;
    text-decoration: none;
    font-weight: bold;
    border-radius: 100px;
}
section#ticket .inBox .btn a {
    background: var(--red);
    color: var(--red);
    border: 1px solid var(--red);
}
section#ticket .inBox .btn.finBtn a {
    background: var(--glay);
    border: 1px solid var(--glay);
    pointer-events: none;
    color: var(--red);
}

section .inBox .soon {
    text-align: center;
}

@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 {
        background: var(--white);
        color: var(--red);
    }
    section#ticket .inBox .btn a:hover {
        background: var(--red);
        color: var(--white);
        border: 1px solid 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;
	}
    section:last-of-type {
        margin: 0 auto 150px;
    }

	section h3 {
        margin: 0 auto 30px;
	}
    section h3 img {
        max-height: 60px;
        height: 12vw;
    }

	section .inBox {
        padding: 20px;
        width: calc(90% - 10px);
	}

    section .inBox .btn {}
    section .inBox .btn a {}
    section .inBox .btn.finBtn a {}

    section .inBox .soon {}

}



/*===================================================
	hero
====================================================*/
#heroView {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    margin: 0 0 160px;
}
		
#heroView .heroInner {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 900px;
}
#heroView .heroInner .mainLogo {}
#heroView .heroInner .mainLogo img {}

#heroView .artistLogo {
    position: absolute;
    width: 120px;
    top: 40px;
    left: 40px;
}

.scrollBox {
    position: absolute;
    width: 100%;
    height: 100svh;
    top: 0;
    z-index: 1;
    pointer-events: none;
}
.scrollBox .scrollArrow {
    width: 1px;
    height: 60px;
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 1;
    background: var(--commonColor);
    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 .snsWrap {
    position: absolute;
    right: 40px;
    bottom: 40px;
}
#heroView .snsWrap ul {
    display: flex;
}
#heroView .snsWrap ul li {
    margin: 0 15px 0 0;
    line-height: 1;
}
#heroView .snsWrap ul li:last-child {
	margin: 0;
}
#heroView .snsWrap ul li a {
    line-height: 1;
    font-size: 18px;
    background: var(--commonColor);
    color: var(--white);
    display: flex;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
}
#heroView .snsWrap ul li a i {}

@media screen and (min-width: 961px) {

	#heroView .artistLogo a:hover img,
    #heroView .snsWrap ul li a:hover i {
        opacity: 0.7;
	}

}

@media screen and (max-width: 960px) {

	#heroView {
		height: 100svh;
	    min-height: 450px;
	    margin: 0 0 90px;
	}
			
	#heroView .heroInner {
        width: 80%;
    }
    #heroView .heroInner .mainLogo {}
	#heroView .heroInner .mainLogo img {}

	#heroView .artistLogo {
        width: 75px;
        top: 25px;
        left: 25px;
	}
			
	.scrollBox .scrollArrow {
	    left: 25px;
	    bottom: 25px;
	}

    #heroView .snsWrap {
        bottom: 25px;
        right: 25px;
	}
    #heroView .snsWrap ul li a {
        font-size: 16px;
        width: 30px;
        height: 30px;
    }
    #heroView .snsWrap ul li {
        margin: 0 10px 0 0;
    }
    
}



/* =================================================
    about
================================================= */
#about {}
#about h3 {}
#about .inBox {}

#about .inBox .txtBox {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}
#about .inBox .txtBox p {
    margin-bottom: 10px;
}
#about .inBox .txtBox p:last-child {
    margin-bottom: 0;
} 

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #about {}
    #about h3 {}
    #about .inBox {}

    #about .inBox .txtBox {
        font-size: 16px;
    }
    #about .inBox .txtBox p {}
    #about .inBox .txtBox p:last-child {}

}



/*===================================================
	schedule
====================================================*/
#schedule {}
#schedule h3 {}
#schedule .inBox {}

#schedule .inBox .scheduleTit {
    border-bottom: 1px solid;
    text-align: center;
    padding: 5px 0 45px;
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 40px;
    line-height: 1;
}

#schedule .inBox .scheduleListBox {}
#schedule .inBox .scheduleListBox .scheduleList {
	display: flex;
    justify-content: space-between;
    margin: 0 0 40px;
    padding: 0 0 40px;
    border-bottom: 1px solid;
}
#schedule .inBox .scheduleListBox .scheduleList:last-child {
	margin: 0;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleLeft {
	padding: 0px 40px 0 0;
	margin: 0 40px 0 0;
	border-right: 1px solid var(--commonColor);
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleLeft .date {
	font-size: 24px;
	font-weight: bold;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleLeft .date .day {
    background: var(--commonColor);
    color: var(--white);
    font-size: 16px;
    padding: 5px 0 10px;
    margin: 5px 0 0;
    width: 100%;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#schedule .inBox .scheduleListBox .scheduleList .scheduleRight {
    width: 100%;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail {}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .place {
	font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .place .area {
	font-size: 16px;
    border: 1px solid;
    padding: 3px 15px;
    line-height: 1;
    display: inline-block;
    margin: 0 10px 0 0;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .timeBox {
	margin: 0 0 20px;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .timeBox .open {
	font-size: 14px;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .timeBox .time {
	margin: 0 0 2px;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .timeBox .time:last-child {
	margin: 0;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .timeBox .time span {
    background: var(--commonColor);
    font-size: 12px;
    padding: 0 15px;
    margin: 0 5px 0 0;
    display: inline-block;
    color: var(--white);
    text-align: center;
    letter-spacing: 0.1em;
}

#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox {
	padding: 20px 20px 0;
    background: var(--commonColorLight);
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox.pa {
    padding: 20px;
    margin-bottom: 20px;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox:last-child {
	padding: 20px;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox .memberTit {
	border-left: 3px solid;
    font-weight: bold;
    line-height: 1.2;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox .memberTxt {}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox ul {}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox ul li {
    margin-bottom: 5px;
    padding: 0 0 0 1em;
    text-indent: -1em;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox ul li:last-child {
    margin-bottom: 0;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox ul li span {
	font-size: 14px;
    padding: 0 0 0 1em;
    display: block;
    margin-top: 2px;
}
#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox ul li span a {
    text-decoration: underline;
}

@media screen and (min-width: 961px){

	#schedule .inBox .attBox .attList li a:hover {
		opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

	#schedule {}
	#schedule h3 {}
	#schedule .inBox {}

	#schedule .inBox .scheduleTit {
        padding: 0 0 20px;
        margin: 0 0 20px;
        line-height: 1.5;
        font-size: 20px;
	}

	#schedule .inBox .scheduleListBox {}
	#schedule .inBox .scheduleListBox .scheduleList {
		display: block;
		margin: 0 0 20px;
		padding: 0 0 25px;
	}
	#schedule .inBox .scheduleListBox .scheduleList:last-child {}
	#schedule .inBox .scheduleListBox .scheduleList .scheduleLeft {
		padding: 0;
		margin: 0;
		border-right: none;
	}
	#schedule .inBox .scheduleListBox .scheduleList .scheduleLeft .date {
        font-size: 20px;
        margin: 0 0 10px;
        display: flex;
        align-items: center;
        line-height: 1;
	}
	#schedule .inBox .scheduleListBox .scheduleList .scheduleLeft .date .day {
        display: inline-block;
        width: auto;
        margin: 0 0 0px 10px;
        font-size: 14px;
        line-height: 1;
        padding: 1px 10px 5px;
	}

	#schedule .inBox .scheduleListBox .scheduleList .scheduleRight {}
	#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail {}
	#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .place {
        font-size: 20px;
        margin: 0 0 2px;
	}
	#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .place .area {
		margin: 0 0 3px;
		font-size: 14px;
	}
	#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .timeBox {}
	#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .timeBox .open {}
	#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .timeBox .time {}
	#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .timeBox .time:last-child {}
	#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .scheduleDetail .timeBox .time span {}

	#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox {
		font-size: 14px;
	}
	#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox .memberTit {}
	#schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox .memberTxt {}
    #schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox ul {}
    #schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox ul li {}
    #schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox ul li:last-child {}
    #schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox ul li span {
        font-size: 12px;
    }
    #schedule .inBox .scheduleListBox .scheduleList .scheduleRight .memberBox ul li span a {}

}




/*===================================================
	ticket
====================================================*/
#ticket {}
#ticket h3 {}
#ticket .inBox  {
	position: relative;
}

#ticket .inBox .receptionClosedWrap .op_ticket {
    margin: 0 0 30px;
}

#ticket .inBox .receptionClosedWrap .op_ticket:last-child {
    margin: 0;
}

/*============ accordion ===========*/
#ticket .ticketInfoBox {}
#ticket .op_ticket {
    margin-bottom: 20px;
}
#ticket .op_ticket:last-child {
    margin-bottom: 0;
}
#ticket .op_ticket .ticketList {
    margin-bottom: 20px;
    overflow: hidden;
}
#ticket .op_ticket .ticketList:last-child{
    margin-bottom: 0;
}
#ticket .op_ticket .ticketTit {
    background: var(--commonColor);
    color: var(--white);
    padding: 30px 60px 30px 40px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
    font-size: 20px;
}
#ticket .op_ticket .ticketTit .getIcon {
    display: inline-block;
    font-size: 14px;
    background: var(--white);
    color: var(--commonColor);
    font-weight: bold;
    padding: 2px 15px;
    margin: 0 0 0 10px;
}
#ticket .op_ticket .ticketTit span {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 12px;
    height: 12px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}
#ticket .op_ticket .ticketTit.open span {
    transform: translateY(-50%);
}
#ticket .op_ticket .ticketTit span:before {
    content: "";
    position: absolute;
    top: 25%;
    width: 100%;
    height: 100%;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
}
#ticket .op_ticket .ticketDetail{
    display: none;
    padding: 40px;
    background: var(--commonColorLight);
}
#ticket .op_ticket .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 15px 0 15px;
    margin: 0;
    align-items: stretch;
}
#ticket .op_ticket .detailList:first-child{
    border-top: 1px solid;
}
#ticket .op_ticket .detailList:last-of-type {
    margin-bottom: 15px;
}
#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(--commonColor);
}
#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;
}
#ticket .op_ticket .ticketNote {
    margin: 0 0 35px;
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
}
#ticket .op_ticket .btnBox {
	display: flex;
    justify-content: center;
	margin: 0 auto;
}
#ticket .op_ticket .btnBox:last-child {
	margin: 0 auto;
}
#ticket .op_ticket .btnBox .btn {
	width: 100%;
    max-width: 350px;
	margin-right: 20px;
}
#ticket .op_ticket .btnBox .btn a {
    margin: 0 auto;
    display: block;
    padding: 20px;
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    text-align: center;
    border-radius: 100px;
}
#ticket .op_ticket .btnBox .btn:last-child {
	margin-right: 0;
}
#ticket .op_ticket .btnBox .btn:last-child a {}

@media screen and (min-width: 961px){

	#ticket .op_ticket .btnBox .btn a:hover {
		background: initial;
		color: var(--blue);
        border: 1px solid var(--blue);
	}

	#ticket .inBox .attBox .attList li a:hover {
		opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

	#ticket {}
	#ticket h3 {}
	#ticket .inBox  {}

	#ticket .ticketInfoBox {}

    #ticket .op_ticket {
        margin-bottom: 10px;
    }
	#ticket .op_ticket .ticketList {}
	#ticket .op_ticket .ticketTit {
        padding: 20px 45px 20px 20px;
        font-size: 16px;
	}
	#ticket .op_ticket .ticketTit .getIcon {
        font-size: 12px;
        padding: 2px 10px;
    }
    #ticket .op_ticket .ticketTit span {
        right: 20px;
    }
	#ticket .op_ticket .ticketDetail {
        padding: 20px;
	}
	#ticket .op_ticket .detailList {
        display: block;
        border-bottom: none;
        padding: 20px 0 15px;
        border-bottom: 1px dashed var(--commonColor);
	}
    #ticket .op_ticket .detailList:last-of-type {}
	#ticket .op_ticket .detailList:first-child {
        border-top: none;
        padding: 0 0 15px;
	}
	#ticket .op_ticket .detailList dt {
        width: 100%;
        padding: 0 0 0 10px;
        margin: 0 0 10px;
        font-weight: bold;
        border-left: 3px solid;
	}
	#ticket .op_ticket .detailList dd {
	    width: 100%;
	    position: relative;
	    padding: 0;
	    font-size: 14px;
	}
	#ticket .op_ticket .detailList dd:before {
	    content: none
	}
	#ticket .op_ticket .ticketNote {
        font-size: 12px;
        margin: 0 0 15px;
	}
	#ticket .op_ticket .btnBox {
        flex-wrap: wrap;
	}
	#ticket .op_ticket .btnBox:last-child {margin: 0;}
	#ticket .op_ticket .btnBox .btn {}
	#ticket .op_ticket .btnBox .btn a {
        margin: 0 auto;
        width: 100%;
        padding: 15px;
    }
	#ticket .op_ticket .btnBox .btn:last-child {}
	#ticket .op_ticket .btnBox .btn:last-child a {}

}



/*===================================================
	GOODS
====================================================*/
#goods {}
#goods h3 {}
#goods .inBox {}

#goods .inBox .goosList {
    margin-bottom: 40px;
}
#goods .inBox .goosList li {
    margin-bottom: 10px;
}
#goods .inBox .goosList 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 .goosList {
        margin-bottom: 20px;
    }
    #goods .inBox .goosList li {}
    #goods .inBox .goosList li:last-child {}

}



/*===================================================
	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 {}

}



/*===================================================
	attention
====================================================*/
#attention {}
#attention h3 {}
#attention .inBox {}

#attention .inBox .attBox {
	margin: 0 0 35px;
}
#attention  .inBox .attBox:last-child {
	margin: 0;
}
#attention .inBox .attBox .attTit {
	border-left: 3px solid;
    font-weight: bold;
    line-height: 1.2;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
}
#attention .inBox .attBox .attList {}
#attention .inBox .attBox .attList li {
	font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin: 0 0 5px;
}
#attention .inBox .attBox .attList li:last-child {
	margin: 0;
}
#attention .inBox .attBox .attList li a {
	text-decoration: underline;
}

#attention .inBox .attBox .attMainTit {
	font-size: 18px;
    font-weight: bold;
    margin: 0 0 25px;
    padding: 0 0 20px;
    border-bottom: 1px solid;
}
#attention .inBox .attBox .attMainTit span {
	display: inline-block;
    font-size: 16px;
    padding: 0 0 0 10px;
}
#attention .inBox .attBox .attInBox {
	margin: 0px 0 25px;
    padding: 0px 0 20px;
    border-bottom: 1px dashed var(--commonColor);
}
#attention .inBox .attBox .attInBox:last-child {}
#attention .inBox .attBox .attTxt {}

@media screen and (max-width: 960px){

	#attention {}
	#attention h3 {}
	#attention .inBox {}

	#schedule .inBox .attBox {
		margin: 0 0 20px;
	}
	#attention .inBox .attBox:last-child {}
	#attention .inBox .attBox .attTit {}
	#attention .inBox .attBox .attList {}
	#attention .inBox .attBox .attList li {
		font-size: 12px;
	}
	#attention .inBox .attBox .attList li:last-child {}
	#attention .inBox .attBox .attList li a {}

	#attention .inBox .attBox .attMainTit {
		font-size: 14px;
	}
	#attention .inBox .attBox .attMainTit span {
		font-size: 12px;
		display: block;
		padding: 0;
	}
	#attention .inBox .attBox .attInBox {
	    margin: 0px 0 20px;
	    padding: 0px 0 15px;
	}
	#attention .inBox .attBox .attInBox:last-child {}
	#attention .inBox .attBox .attTxt {
		font-size: 14px;
	}

}



/*===================================================
	footer
====================================================*/
#footer {
    width: 100%;
    padding: 60px 0 20px;
    position: relative;
    z-index: 10;
    background: var(--commonColor);
    color: var(--white);
}

#footer .footerLogo {
    width: 150px;
    margin: 0 auto 30px;
}

#footer .snsWrap {}
#footer .snsWrap ul {
    display: flex;
    justify-content: center;
    margin: 0 0 50px;
}
#footer .snsWrap ul li {
	margin: 0 20px 0 0;
}
#footer .snsWrap ul li:last-child {
	margin: 0;
}
#footer .snsWrap ul li a {
	color: #fff;
	font-size: 20px;
}
#footer .snsWrap ul li a i {}

#footer .copyLight {
	line-height: 1;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

@media screen and (min-width: 961px){

	#footer .footerLogo a:hover img,
	#footer .snsWrap ul li a:hover i {
	    opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

	#footer {
		padding: 40px 0 20px;
	}

	#footer .footerLogo {
		width: 100px;
		margin: 0 auto 25px;
	}

	#footer .snsWrap {}
	
	#footer .snsWrap ul {
		margin: 0 0 30px;
	}
	#footer .snsWrap ul li {}
	#footer .snsWrap ul li:last-child {}
	#footer .snsWrap ul li a {}
	#footer .snsWrap ul li a i {}

	#footer .copylight {}

}