@charset "utf-8";

/*===================================================
  anim
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: #0a0a0a;
    z-index: 9999;
}

.action {
    opacity:0;
    transition: .5s ease-out;
}
.loaded .action {
    opacity:1;
}
.action.act01 {
    transform: translateY(20px);
}
.action.act02 {
    transform: translateX(20px);
}
.loaded .action.act01 {
    transform: translateY(0);
    transition-delay: 1.25s;
}
.loaded .action.act02 {
    transform: translateX(0);
    transition-delay: 1.5s;
}

.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: 750px;
    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/harukamirai/fanclub/feature/tour2025/image/ph_bg_0a1t2A0y.jpg) no-repeat center center;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}
.bgBox .bg02 {
    width: 40%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 40% 0%);
    position: absolute;
    background: rgba(10, 10, 10, 0.05);
    z-index: 2;
}
.bgBox .bg03 {
    z-index: 3;
}
.bgBox .bg03 .bgTxt {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.bgBox .bg03 .bgTxt img {
    height: 10.5vw;
    max-height: 200px;
}
.bgBox .bg03.schedule .bgTxt.bgTxt01,
.bgBox .bg03.ticket .bgTxt.bgTxt02 {
    opacity: 0.3;
}

@media screen and (min-width: 961px){

    .bgBox .bg02sp {
        display: none;    
    }

}

@media screen and (max-width: 960px){

	.bgBox {
	    min-height: 450px;
	    height: 100vh;
	}
	.bgBox .bg {
		height: 100vh;
	}
    .bgBox .bg.bg01 {
        background: url(/static/harukamirai/fanclub/feature/tour2025/image/ph_bgSp_0a1t2A0y.jpg) no-repeat center center;
        background-position: center center;
        background-size: cover;
    }
    .bgBox .bg02 {
        width: 100%;
        clip-path: polygon(0% 95%, 0% 100%, 100% 100%, 100% 80%);
    }
    .bgBox .bg02sp {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        background: rgba(10, 10, 10, 0.05);
        clip-path: polygon(0% 0%, 0% 20%, 100% 5%, 100% 0%);
        z-index: 2;
    }

    .bgBox .bg03 {
        z-index: 3;
    }
    .bgBox .bg03 .bgTxt {}
    .bgBox .bg03 .bgTxt img {
        height: auto;
        max-height: initial;
        width: 10.5vh;
    }
    .bgBox .bg03 .bgTxt.bgTxt01 {}
    .bgBox .bg03 .bgTxt.bgTxt02 {}

}



/*===================================================
  NAVIGATION
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 30px;
    top: 30px;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 9998;
    transition: all 0.3s ease 0s;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: 0;
}
.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn :nth-of-type(3) {
    bottom: 0;
}
.hamBtn.open span {
    background: #0a0a0a;
}
.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: #fff;
    color: #0a0a0a;
    margin: 0 auto;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100%;
    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: 300px;
    margin: 0 100px 0 0;
}

.navigation .headerNav li {
	padding: 0;
    position: relative;
    margin: 0 0 25px;
    line-height: 1;
    font-family: "Libre Baskerville", serif;
}
.navigation .headerNav li:nth-last-child(2) {}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li:after {
    content: none;
}
.navigation .headerNav li a{
    font-size: 32px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.navigation .snsWrap {
    display: flex;
}
.navigation .snsWrap p {
    margin-right: 20px;
}
.navigation .snsWrap p:last-child {
    margin-right: 0;
}
.navigation .snsWrap p a {
    font-size: 24px;
}
.navigation .snsWrap p a i {}

@media screen and (min-width: 961px) {

	.navigation .headerNav a:hover {
		opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

    .hamBtn {
        right: 20px;
        top: 20px;
    }

	.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: 70%;
        max-width: 225px;
        margin: 0 auto 30px;
        padding: 0 0 25px;
        border-bottom: 1px solid;
    }

    .navigation .headerNav {
        width: 70%;
        max-width: 225px;
        margin: 0 auto;
        text-align: left;
    }
    .navigation .headerNav li {
        position: relative;
    }
    .navigation .headerNav li:nth-last-child(2) {
        margin: 0 0 30px;
    }
    .navigation .headerNav li a {
        font-size: 24px;
        display: block;
        line-height: 1;
    }

    .navigation .snsWrap {}
    .navigation .snsWrap a {
        font-size: 20px;
    }

}




/*===================================================
	ALL
====================================================*/
html {
    scroll-behavior: smooth;
}

.menuBox {
    position: fixed;
    width: 90px;
    top: 0;
    right: 0;
    z-index: 100;
    color: #0a0a0a;
    border-left: 1px solid #0a0a0a;
    height: 100%;
}
.menuBox .scrollArrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.scrolled .menuBox .scrollArrow {
    opacity: 0;
}
.menuBox .scrollArrow span {
    line-height: 1;
    writing-mode: vertical-rl;
    font-weight: bold;
}

.mainWrap {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
    color: #0a0a0a;
    width: calc(100% - 90px);
    margin: 0 auto 0 0;
    overflow: hidden;
    letter-spacing: 0.03em;
}
.mainWrap img {
    display: block;
}

.mainWrap .ticketBtn {}
.mainWrap .ticketBtn a {
    position: fixed;
    display: block;
    z-index: 10;
    bottom: 30px;
    right: 120px;
    color: #fff;
    background: #0a0a0a;
    padding: 15px 20px;
    border-radius: 100px;
    font-weight: bold;
}

section {
    position: relative;
    padding: 120px 0;
    border-bottom: 1px solid #0a0a0a;
}
section#schedule {
    border-top: 1px solid #0a0a0a;
}
section h3 {
    font-family: "Libre Baskerville", serif;
    margin: 0 auto 10px;
    width: 90%;
    max-width: 1100px;
    font-size: clamp(16px, 6vw, 100px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
}
section h4 {
    margin: 0 auto 60px;
    font-size: clamp(16px, 1.75vw, 36px);
    width: 90%;
    max-width: 1100px;
}
section .inBox {
    position: relative;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.mainWrap .copy {
    text-align: center;
    font-size: 10px;
    padding: 30px 0;
}

@media screen and (min-width:961px) {
    
    .sp {
        display: none;
    }

    a {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .mainWrap .ticketBtn a:hover {
        background: #fff;
        color: #0a0a0a;
    }

}

@media screen and (max-width:960px) {
    
    .pc {
        display: none;
    }

	html {}

    .menuBox {
        display: none;
    }
    .menuBox .scrollBox {}
    .menuBox .scrollArrow {}
    .menuBox .scrollArrow span {}

    .mainWrap {
        width: 100%;
    }

    .mainWrap .ticketBtn {}
    .mainWrap .ticketBtn a {
        bottom: 20px;
        right: 20px;
        font-size: 14px;
        padding: 10px 20px;
    }

    section {
        padding: 75px 0 80px;
    }
    section h3 {
        font-size: 42px;
        margin: 0 auto 5px;
    }
    section h4 {
        font-size: 16px;
        margin: 0 auto 30px;
    }
    section .inBox {}

    .mainWrap .copy {}

}



/*===================================================
    heroView
====================================================*/
#heroView {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

#heroView .heroInner {
    display: flex;
    position: absolute;
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    justify-content: space-between;
    align-items: center;
}
#heroView .heroInner .kv {
    width: 55%;
}
#heroView .heroInner .rightBox {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
}
#heroView .heroInner .rightBox .logo {
    padding: 2% 0 0;
    width: 80%;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

	#heroView {
	    min-height: 600px;
	    height: 100svh;
	}

	#heroView .heroInner {
        max-width: 450px;
        width: 75%;
        align-items: flex-start;
        flex-direction: column;
    }
    #heroView .heroInner .kv {
        width: 100%;
        margin: 0 0 12%;
    }
    #heroView .heroInner .rightBox {
        width: 100%;
    }
    #heroView .heroInner .rightBox .logo {
        margin: 0 auto;
        padding: 0;
        width: 80%;
    }

    #heroView .scrollTxt {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: initial;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }
    .scrolled #heroView .scrollTxt {
        opacity: 0;
    }
    #heroView .scrollTxt span {
        line-height: 0;
        font-size: 14px;
        font-weight: bold;
        writing-mode: vertical-lr;
        transform: rotate(180deg);
    }

}



/*===================================================
    schedule
====================================================*/
#schedule {}
#schedule .inBox {}

#schedule .tourDateBox {
    margin-bottom: 60px;
}
#schedule .tourDateBox:last-child {
    margin-bottom: 0;
}
#schedule .tourDateBox .tourDateTit {
    background: #0a0a0a;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 20px;
    margin: 0 auto 25px;
    letter-spacing: 0.03em;
    font-style: italic;
}
#schedule .tourDateBox .tourDateTit span {
    margin: 0 10px 0 0;
    font-size: 145%;
    line-height: 1;
}
#schedule .tourDateBox .tourDateTit.final {
    padding: 5px 20px 8px;
}
#schedule .tourDateBox .tourDateTit.final span {
    margin: 0 auto;
}

#schedule .tourDateBox .tourDateList.listHead {
    padding: 0 0 10px;
}
#schedule .tourDateBox .tourDateList.listHead li {
    justify-content: center;
    font-size: 70%;
    font-weight: 600;
}
#schedule .tourDateBox.fin .tourDateList.listHead {
    background: none;
    padding: 0 0 10px;
}
#schedule .tourDateBox .tourDateList.listHead li:after {
    display: none;
}
#schedule .tourDateBox .listHead .scheduleInfo {
    justify-content: center!important;
    font-size: 100%;
}

#schedule .tourDateBox .tourDateList {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #0a0a0a;
    padding: 0 0 15px;
    margin: 0 0 15px;
    position: relative;
}
#schedule .tourDateBox .tourDateList:last-child {
    margin: 0;
}
#schedule .tourDateBox.fin .tourDateList {
    margin: 0;
    padding: 15px 0;
}
#schedule .tourDateBox .tourDateList li {
    padding: 0 15px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90%;
    line-height: 1.5em;
}
#schedule .tourDateBox .tourDateList li:after{
    content: "";
    position: absolute;
    background: #0a0a0a;
    top: 5%;
    right: 0;
    width: 1px;
    height: 90%;
} 
#schedule .tourDateBox .tourDateList .scheduleDate {
    width: 24%;
    position: relative;
}

#schedule .tourDateBox .tourDateList .scheduleDate .day {
    font-size: 150%;
    padding: 0 5px 0 0;
    font-weight: bold;
}
#schedule .tourDateBox .tourDateList .scheduleDate .week {
    width: 33px;
    display: inline-block;
}
#schedule .tourDateBox .tourDateList .scheduleDate .week.sat {
    color: #2c40d5;
}
#schedule .tourDateBox .tourDateList .scheduleDate .week.sun {
    color: #d52c2c;
}
#schedule .tourDateBox .tourDateList .scheduleArea {
    width: 10%;
}
#schedule .tourDateBox .tourDateList .scheduleVenue {
    width: 26%;
    text-align: center;
}
#schedule .tourDateBox .tourDateList .scheduleTime {
    width: 17%;
}
#schedule .tourDateBox .tourDateList .scheduleInfo {
    width: 23%;
    justify-content: left;
    font-size: 70%;
    padding: 0 0 0 20px;
}
#schedule .tourDateBox .tourDateList .scheduleInfo:after {
	display: none;
}
#schedule .tourDateBox .tourDateList .scheduleInfo .scheduleInner i {
	padding: 0 3px 0 0;
	display: inline-block;
}
#schedule .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt span {
    display: block;
    padding: 2px 0 0;
}
#schedule .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .phone,
#schedule .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .web {
	text-decoration: underline;
    display: inline-block;
    margin: 0 5px 0 0;
}
#schedule .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt span .webInquiry {
	border-bottom: 1px solid;
}

#schedule .csBox {
    background: #0a0a0a;
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 40px;
    margin: 0 auto;
    letter-spacing: 0.03em;
    font-style: italic;
    text-align: center;
    width: fit-content;
}
#schedule .csBox p {}
#schedule .csBox p:first-child {
    font-size: 115%;
    line-height: 1.2;
}
#schedule .csBox p:last-child {}

/* sold */
#schedule .tourDateBox .tourDateTit.sold {
    position: relative;
    margin: 25px auto;
}
#schedule .tourDateBox .tourDateTit.sold:before {
    position: absolute;
    content: "";
    width: 200px;
    height: 102px;
    top: -70px;
    left: -20px;
}
#schedule .tourDateBox .tourDateTit.sold.sold01:before {
    background: url(/static/harukamirai/fanclub/feature/tour2025/image/ph_sold_01_dk49haO1.png);
    background-size: 200px;
    background-position: center center;
    background-repeat: no-repeat;
}
#schedule .tourDateBox .tourDateTit.sold.sold02:before {
    background: url(/static/harukamirai/fanclub/feature/tour2025/image/ph_sold_02_0y45sNj1.png);
    background-size: 200px;
    background-position: center center;
    background-repeat: no-repeat;
}
#schedule .tourDateBox .tourDateTit.sold.sold03:before {
    background: url(/static/harukamirai/fanclub/feature/tour2025/image/ph_sold_03_0a5tmhC9.png);
    background-size: 200px;
    background-position: center center;
    background-repeat: no-repeat;
}
#schedule .tourDateBox .tourDateTit.sold.sold04:before {
    background: url(/static/harukamirai/fanclub/feature/tour2025/image/ph_sold_04_0t2kN1us.png);
    background-size: 200px;
    background-position: center center;
    background-repeat: no-repeat;
}
#schedule .tourDateBox .tourDateList .scheduleDate.sold .scheduleInner .txt{
    position: relative;
}
#schedule .tourDateBox .tourDateList .scheduleDate.sold .scheduleInner .txt:before {
    position: absolute;
    content: "";
    background: url(/static/harukamirai/fanclub/feature/tour2025/image/ph_sold_0a3i2H4n.png);
    background-size: 60px;
    background-position: center center;
    background-repeat: no-repeat;
    width: 60px;
    height: 34px;
    top: -20px;
    left: -20px;
    z-index: -1;
}

#ticket .inBox .op_ticket.fin .ticketTit,
#ticket .inBox .op_ticket.fin .ticketDetail {
    background: #00000020;
}

@media screen and (min-width: 961px){

	#schedule  .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .phone a:hover,
    #schedule  .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .web a:hover {
	    opacity: 0.7;
	}
	
}

@media screen and (max-width: 960px){

    #schedule .tourDateBox {
        margin-bottom: 40px;
    }
    #schedule .tourDateBox:last-child {}
    #schedule .tourDateBox .tourDateTit {
        font-size: 18px;
        padding: 5px 15px;
        margin: 0 5px 0 0;
    }
    #schedule .tourDateBox .tourDateTit.final {
        padding: 5px 15px;
    }
    #schedule .tourDateBox .tourDateTit.final span {
        margin: 0 auto;
}

    #schedule .tourDateBox .tourDateList.listHead {
        padding: 0;
    }
    #schedule .tourDateBox.fin .tourDateList.listHead {
        padding: 0;
    }
	#schedule .tourDateBox .tourDateList.listHead li {
	    display: none;
	}

	#schedule  .tourDateBox .tourDateList {
	    display: block;
	    padding: 0;
        margin: 0 0 20px;
	}
    #schedule .tourDateBox.fin .tourDateList {
        padding: 15px;
    }
	#schedule  .tourDateBox .tourDateList li {
	    padding: 0;
	    display: block;
	    font-size: 100%;
	}
	#schedule  .tourDateBox .tourDateList li:after{
		display: none;
	} 
	#schedule  .tourDateBox .tourDateList .scheduleDate {
	    width: 100%;
	}
    #schedule  .tourDateBox .tourDateList .scheduleDate br.sp {
        margin: 0;
    }
	#schedule  .tourDateBox .tourDateList .scheduleDate .day {
        font-weight: bold;
	}
    #schedule  .tourDateBox .tourDateList .scheduleDate .week {
        width: initial;
    }
	#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;
	}
	#schedule  .tourDateBox .tourDateList .scheduleTime {
	    width: 100%;
	    margin: 0 0 10px;
	}
	#schedule  .tourDateBox .tourDateList .scheduleTime .subTxt {
	    font-size: 70%;
	    line-height: 1;
        width: 100%;
	}
	#schedule  .tourDateBox .tourDateList .scheduleInfo {
	    width: 100%;
	    padding: 0;
	    margin: 0 0 20px;
	}
    #schedule .tourDateBox .tourDateList .scheduleInfo {
        margin-bottom: 0;
    }

    #schedule .csBox {
        padding: 10px 30px;
        font-size: 18px;
    }
    #schedule .csBox p {}
    #schedule .csBox p:first-child {}
    #schedule .csBox p:last-child {}

    /* sold */
    #schedule .tourDateBox .tourDateTit.sold {
        margin: 25px auto 0;
    }
    #schedule .tourDateBox .tourDateTit.sold:before {
        width: 150px;
        height: 76px;
        top: -50px;
        left: -10px;
    }
    #schedule .tourDateBox .tourDateTit.sold.sold01:before {
        background-size: 150px;
    }
    #schedule .tourDateBox .tourDateTit.sold.sold02:before {
        background-size: 150px;
    }
    #schedule .tourDateBox .tourDateTit.sold.sold03:before {
        background-size: 150px;
    }
    #schedule .tourDateBox .tourDateTit.sold.sold04:before {
        background-size: 150px;
    }
    #schedule .tourDateBox .tourDateList .scheduleDate.sold .scheduleInner .txt {}
    #schedule .tourDateBox .tourDateList .scheduleDate.sold .scheduleInner .txt:before {
        background-size: 50px;
        width: 50px;
        height: 28px;
        top: -15px;
        left: -10px;
    }

	body #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox:first-child {
		padding: 20px 20px 15px;
	}
	body #ticket .inBox .op_ticket .ticketDetail .btn a {
		width: calc(100% - 40px);
	}

}



/*===================================================
    ticket
====================================================*/
#ticket {}
#ticket h3
#ticket .inBox {}

#ticket .inBox .priceBox {
    margin: 0 0 40px;
}
#ticket .inBox .priceBox .ticketPrice {
    margin: 0 0 20px;
    padding: 60px 40px;
    border: 1px solid;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
#ticket .inBox .priceBox .ticketPrice .yen {
    font-size: 16px;
    padding: 0 5px;
}
#ticket .inBox .priceBox .ticketPrice .tax {
    font-size: 16px;
    padding: 0 0 0 5px;
}
#ticket .inBox .priceBox .noteList {}
#ticket .inBox .priceBox .noteList li {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin: 0 0 5px;
}
#ticket .inBox .priceBox .noteList li:last-child {
    margin: 0;
}

#ticket .inBox .ticketBox {
    margin-bottom: 45px;
    position: relative;
}
#ticket .inBox .ticketBox:last-child {
    margin-bottom: 0;
}
#ticket .inBox .ticketBoxTit {
    background: #0a0a0a;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 20px;
    margin: 0 auto 25px;
    letter-spacing: 0.03em;
    font-style: italic;
}
#ticket .inBox .ticketBoxTit span {
    margin: 0 10px 0 0;
    font-size: 145%;
    line-height: 1;
}

#ticket .inBox .op_ticket {
	border-top: 1px solid;
}
#ticket .inBox .op_ticket:last-child {
	border-bottom: 1px solid;
}
#ticket .inBox .op_ticket .ticketTit {
    padding: 30px 40px;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
}
#ticket .inBox .op_ticket .ticketTit span {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 15px;
    height: 15px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}
#ticket .inBox .op_ticket .ticketTit.open span {
    transform: translateY(-50%);
}
#ticket .inBox .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 .inBox .op_ticket .ticketDetail {
    display: none;
    padding: 0 0 40px;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox {
	display: flex;
    border-bottom: 1px solid #0a0a0a;
    padding: 0 0 20px;
    margin: 0 0 20px;
    align-items: center;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox:first-child {
    border-top: 1px solid #0a0a0a;
    padding: 20px 0;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox:last-of-type {
    margin: 0 0 40px;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .tit {
    width: 25%;
    text-align: center;
    font-weight: 600;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt {
    width: 75%;
    padding: 0 30px;
    border-left: 1px solid #0a0a0a;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .txtList {}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .txtList li {
    margin: 0 0 5px;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .txtList li:last-child {
    margin: 0;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .txtList li.listNote {
    font-size: 14px;
    text-indent: -0.5em;
    padding: 0 0 0 0.5em;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .attList {}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .attList li {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin: 0 0 5px;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .attList li:last-child {
    margin: 0;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList {}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList li {
    font-size: 14px;
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid #0a0a0a;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList li:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList li .infoListTit {
    margin: 0 0 5px;
    font-weight: bold;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList li .infoListTxt {
    text-decoration: underline;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList li .infoListNote {
    font-size: 12px;
    padding: 5px 0 0;
}

#ticket .inBox .op_ticket .ticketDetail .btn a {
    font-size: 16px;
    text-align: center;
    background-color: #0a0a0a;
    border: 1px solid #0a0a0a;
    color: #fff;
    width: 100%;
    max-width: 350px;
    text-decoration: none;
    border-radius: 100px;
    padding: 20px;
    display: block;
    margin: 0px auto;
    font-weight: bold;
}
#ticket .inBox .op_ticket .ticketDetail .btn.grayBtn a {
    pointer-events: none;
    background-color: #9f9f9f;
    border: 1px solid #9f9f9f;
}

/* final */
span#finalAnk {
    display: block;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: -80px;
}

#ticket .inBox .ticketBoxTit.final {
    padding: 5px 20px 8px;
}
#ticket .inBox .ticketBoxTit.final span {
    margin: 0;
}

#ticket .inBox .finalPriceBox {
    margin: 0 0 20px;
    padding: 30px;
    border: 1px solid;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
#ticket .inBox .finalPriceBox .ticketPrice {
    padding: 0 0 25px;
    margin-bottom: 20px;
    border-bottom: 1px dashed;
}
#ticket .inBox .finalPriceBox .ticketPrice:last-child {
    margin-bottom: 0;
    padding: 0;
    border: none;
}
#ticket .inBox .finalPriceBox .ticketPrice span {}
#ticket .inBox .finalPriceBox .ticketPrice span.sub {
    font-size: 16px;
    padding: 0 0 0 5px;
}
#ticket .inBox .finalPriceBox .ticketPrice span.yen {
    font-size: 16px;
    padding: 0 5px;
}
#ticket .inBox .finalPriceBox .ticketPrice span.tax {
    font-size: 16px;
    padding: 0 0 0 5px;
}

#ticket .inBox .finalNoteList {
    margin: 0 0 40px;
}
#ticket .inBox .finalNoteList li {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin: 0 0 5px;
}
#ticket .inBox .finalNoteList li:last-child {
    margin: 0;
}

@media screen and (min-width: 961px) {

    #ticket .inBox .op_ticket .ticketTit:hover {
        background-color: #0a0a0a;
        color: #fff;
    }

    #ticket .inBox .op_ticket .ticketDetail .btn a:hover {
        background-color: #00000000;
        color: #0a0a0a;
    }

}

@media screen and (max-width: 960px) {

    #ticket {}
    #ticket h3
    #ticket .inBox {}

    #ticket .inBox .priceBox {
        margin: 0 0 30px;
    }
    #ticket .inBox .priceBox .ticketPrice {
        padding: 30px 15px;
        font-size: 18px;
        margin: 0 0 15px;
    }
    #ticket .inBox .priceBox .ticketPrice .yen {
        font-size: 12px;
    }
    #ticket .inBox .priceBox .ticketPrice .tax {
        font-size: 12px;
    }
    #ticket .inBox .priceBox .noteList {}
    #ticket .inBox .priceBox .noteList li {}
    #ticket .inBox .priceBox .noteList li:last-child {}

    #ticket .inBox .ticketBox {
        margin-bottom: 35px;
    }
    #ticket .inBox .ticketBox:last-child {}
    #ticket .inBox .ticketBoxTit {
        font-size: 18px;
        padding: 5px 15px;
        margin: 0 5px 0 0;
    }

    #ticket .inBox .op_ticket {}
    #ticket .inBox .op_ticket .ticketTit{
        padding: 20px 45px 20px 20px;
        font-size: 16px;
    }
    #ticket .inBox .op_ticket .ticketTit span {
        right: 20px;
        width: 12px;
        height: 12px; 
    }
    #ticket .inBox .op_ticket .ticketDetail{
        padding: 0 0 20px;
    }
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox {
        display: block;
        padding: 0 0 15px;
    }
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox:first-child {
        border-top: 1px solid #0a0a0a;
        padding: 20px 0 15px;
    }
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox:last-of-type {
        margin: 0 0 20px;
    }
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .tit {
        width: 100%;
        text-align: left;
        padding: 0 0 0 10px;
        border-left: 3px solid;
        line-height: 1.3;
        margin: 0 0 10px;
    }
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt {
        width: 100%;
        border-left: none;
        padding: 0;
    }
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .txtList {}
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .txtList li {
        font-size: 14px;
    }
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .txtList li:last-child {}
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .txtList li.listNote {}
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .attList {}
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .attList li {}
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .attList li:last-child {}
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList {}
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList li {}
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList li:last-child {}
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList li .infoListTit {}
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList li .infoListTxt {}
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList li .infoListNote {}

    #ticket .inBox .op_ticket .ticketDetail .btn a {
        width: 90%;
        padding: 15px;
    }
    #ticket .inBox .op_ticket .ticketDetail .btn.grayBtn a {}

    /* final */
    span#finalAnk {
        top: -60px;
    }
    
    #ticket .inBox .ticketBoxTit.final {
        padding: 5px 15px;
    }
    #ticket .inBox .ticketBoxTit.final span {
        margin: 0;
    }

    #ticket .inBox .finalPriceBox {
        padding: 20px 15px;
        font-size: 18px;
        margin: 0 0 15px;
    }
    #ticket .inBox .finalPriceBox .ticketPrice {
        padding: 0 0 15px;
        margin-bottom: 15px;
        border-bottom: 1px dashed;
    }
    #ticket .inBox .finalPriceBox .ticketPrice:last-child {
        padding: 0;
        border-bottom: none;
    }
    #ticket .inBox .finalPriceBox .ticketPrice span {}
    #ticket .inBox .finalPriceBox .ticketPrice span.sub {
        font-size: 12px;
    }
    #ticket .inBox .finalPriceBox .ticketPrice span.yen {
        font-size: 12px;
    }
    #ticket .inBox .finalPriceBox .ticketPrice span.tax {
        font-size: 12px;
    }

    #ticket .inBox .finalNoteList {
        margin: 0 0 30px;
    }
    #ticket .inBox .finalNoteList li {}
    #ticket .inBox .finalNoteList li:last-child {}

}



/*===================================================
    footer
====================================================*/
#footer {}
#footer .copyright {
    font-size: 10px;
    text-align: center;
}

@media screen and (min-width: 961px) {}
        
@media screen and (max-width: 960px) {

    #footer {}
    #footer .copyright {}

}