@charset "utf-8";

:root {
    --black: #010101;
    --white: #fff;
    --glay: #777;
    --red: #BA2426;
    --lightRed: #ec4648;
    --blue: #5b7fd0;
    --commonFont: "Shippori Mincho", "Noto Serif JP", serif;
    --titleFont: "stilson", serif;
}



/*===================================================
  AOP
====================================================*/
.wrap header,
body:not(.page--home) footer {
    display: none;
}

.wrap::after {
    content: none;
}

html body:not(.page--home) .wrap {
    background: var(--black);
    min-height: 100vh;
}

@media screen and (max-width: 960px){

    html, body {
        height: auto;
    }

}



/*===================================================
  anim
====================================================*/
.loader {
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--black);
    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.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) {}



/*===================================================
	OWVN
====================================================*/
.translateBox {
    position: fixed;
    top: 25px;
    left: 30px;
    font-size: 12px;
    z-index: 99;
    font-family: var(--titleFont);
}
.wovn-languages {
    width: 100px;
    height: 20px;
    cursor: pointer;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    position: relative;
    border: none;
    background: transparent;
}
.wovn-languages .nav-dropdown {
    position: absolute;
    top: 0;
    line-height: 1.3;
    border-bottom: 1px solid var(--white);
    text-align: left;
    z-index: 2;
    width: 100%;
    height: 25px;
    max-width: 105px;
    right: 0;
}
.wovn-languages .nav-dropdown .list--language {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}
.wovn-languages .nav-dropdown .list--language li {
    width: 100%;
    display: none;
    cursor: pointer;
    padding-bottom: 10px;
    padding: 0;
    height: auto;
    font-size: 100%;
}
.wovn-languages .nav-dropdown .list--language li.selected {
    display: block;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
}
.wovn-languages .nav-dropdown::after {
    top: 5px;
    right: 5px;
    border-color: var(--white);
}
.wovn-languages.visible .nav-dropdown {
    opacity: 1;
    pointer-events: visible;
    z-index: 1;
    border: none;
    padding: 15px;
    background: #EDEDE8;
    color: var(--black);
    height: auto;
    top: 0;
    bottom: auto;
}
.wovn-languages.visible .nav-dropdown .list--language li {
    display: block;
    border: none;
    cursor: pointer;
    padding-bottom: 10px;
}
.wovn-languages.visible .nav-dropdown::after {
    content: none;
}
.wovn-languages.visible .nav-dropdown .list--language li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

@media screen and (max-width: 960px){

    .translateBox {
        max-width: 240px;
        top: 15px;
        left: 20px;
    }
    .navigation .headerNav {
        padding: 80px 40px 20px;
    }
    .wovn-languages .nav-dropdown {
        right: auto;
    }
    .wovn-languages .nav-dropdown::after {
        content: "";
        display: block;
        top: 5px;
        right: 5px;
        width: 9px;
        height: 9px;
        transform: rotate(45deg) translateY(-4.5px);
    }

}



/*===================================================
    bgBox
====================================================*/
.slideBox {
    pointer-events: none;
    width: 100%;
    height: 100%;
    min-height: 600px;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
}
.slideBox .slide {
	pointer-events: none;
	overflow: hidden;
    width: 200px;
    height: 100%;
    background-repeat: repeat-y;
    background-size: 200px auto;
    z-index: 1;
    position: absolute;
    opacity: 0.1;
}
.slideBox .slide01 {
    background-image: url(/static/issue/fanclub/feature/tour2025/image/ph_slide_01_0d6k1B6e.png);
    animation: slide01 10s linear infinite;
    left: 0;
}
.slideBox .slide02 {
    background-image: url(/static/issue/fanclub/feature/tour2025/image/ph_slide_02_0d6k1B6e.png);
    animation: slide02 10s linear infinite;
    right: 0;
}
@keyframes slide01 {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 400px;
    }
}
@keyframes slide02 {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 -400px;
    }
}

@media screen and (max-width: 960px) {

    .slideBox {
	    min-height: 450px;
	}
    .slideBox .slide {
        width: 100%;
        height: 100px;
        background-repeat: repeat-x;
        background-size: auto 100px;
        opacity: 0.15;
    }
    .slideBox .slide01 {
        background-image: url(/static/issue/fanclub/feature/tour2025/image/ph_slide_01_sp_0d6k1B6e.png);
        animation: slideSp01 10s linear infinite;
        left: initial;
        top: 0;
    }
    .slideBox .slide02 {
        background-image: url(/static/issue/fanclub/feature/tour2025/image/ph_slide_02_sp_0d6k1B6e.png);
        animation: slideSp02 10s linear infinite;
        right: initial;
        bottom: 0;
    }
    @keyframes slideSp01 {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: -200px 0;
        }
    }
    @keyframes slideSp02 {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 200px 0;
        }
    }
    
}



/*===================================================
  NAVIGATION
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 20px;
    top: 20px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9999;
    box-sizing: border-box;
}
.hamSwitch {

}
.hamBtn .hamMenu{
    position: relative;
    width: 30px;
    height: 25px;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all .3s ease;
}
.hamBtn .hamMenu span:nth-of-type(1) {
    top: 0;
}
.hamBtn .hamMenu span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn .hamMenu span:nth-of-type(3) {
    bottom: 0;
}
.hamSwitch.open{

}
.hamSwitch.open span {}
.hamSwitch.open span:nth-of-type(1) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
}
.hamSwitch.open span:nth-of-type(2) {
    opacity: 0;
}
.hamSwitch.open span:nth-of-type(3) {
    transform: translateY(50%) rotate(45deg);
    bottom: 50%;
}
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10;
}
.navigation.active {
    transition: opacity 0.5s ease;
    pointer-events:auto;
    opacity:1;
}
.navigation .headerNav {
    display: block;
    padding: 60px;
}
.navigation .headerNav li {
    padding: 0;
    position: relative;
    margin: 0 0 40px;
}
.navigation .headerNav li:after {
    content: none;
}
.navigation .headerNav li a {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--titleFont);
    color: var(--white);
    letter-spacing: 0.1em;
}
.navigation .headerNav li a.blankBtn{
    opacity: 0.3;
    pointer-events: none;
}
.navigation .navTit{
    color: var(--white);
    position: absolute;
    right: 60px;
    bottom: 60px;
    text-align: right;
    font-family: var(--titleFont);
}

@media screen and (min-width: 961px){

    .hamBtn {
        display: none;
    }
    .navigation {
        position: fixed;
        pointer-events: auto;
        top: 25px;
        opacity: 1;
        left: auto;
        width: auto;
        right: 30px;
        height: auto;
        transition: 0.5s ease;
    }
    .navigation .headerNav {
        display: block;
        padding: 0;
        text-align: right;
    }
    .navigation .headerNav li {
        margin: 0 0 20px;
        line-height: 1;
    }
    .navigation .headerNav li:last-child {
        margin-bottom: 0;
    }
    .navigation .headerNav li a {
        font-size: 20px;
    }
    .navigation .headerNav li a:hover {
        color: var(--red);
    }
    .navigation .navTit {
        display: none;
    }

}

@media screen and (max-width: 960px){

    .navigation {
        background: var(--black);
    }
    .navigationBlock{
        position: fixed;
        z-index: 9999;
    }
    .navigation {
        pointer-events: none;
        opacity: 0;
    }
    .navigation .headerNav {
            padding: 70px 20px;
    }
    .navigation .navTit {
        right: 20px;
        bottom: 20px;
        max-width: 120px;
    }
    .navigation .headerNav li{
        margin: 0 0 20px;
    }
    .navigation .headerNav li a{
        font-size: 150%;
    }

}



/*===================================================
	ALL
====================================================*/
html {}

html, body {
    height: auto;
}

.mainWrap {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.5;
    color: var(--white);
    font-family: var(--commonFont);
}

.container {
    position: relative;
}

.container.newsDetail,
.container.fanclubDetail {
    position: relative;
    padding: 120px 0 0;
}

.container section {
    margin: 0 auto 160px;
}

.container section h3 {
font-family: var(--titleFont);
    position: relative;
    font-size: 96px;
    margin: 0 auto 40px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.05em;
    line-height: 1;
    width: 90%;
    max-width: 1200px;
    color: var(--red);
}

.container section .inBox {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container section .inBox .red {
    color: var(--lightRed);
}
.container section .inBox .bold {
    font-weight: bold;
}

@media screen and (min-width:961px) {
    
    .sp {
        display: none;
    }
    a {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

}

@media screen and (max-width:960px) {
    
    .pc {
        display: none;
    }

	.mainWrap {}

	.container {}

    .container.newsDetail,
    .container.fanclubDetail {
        padding: 90px 0 0;
    }

	.container section {
        margin: 0 auto 90px;
    }

	.container section h3 {
        font-size: 56px;
        margin: 0px auto 15px;
    }

	.container section .inBox {}

}



/*===================================================
    heroView
====================================================*/
#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: 1000px;
}
#heroView .heroInner .mainLogo {}

#heroView .scrollBox {
    position: absolute;
    width: 100%;
    height: 100svh;
    top: 0;
    z-index: 1;
    pointer-events: none;
}
#heroView .scrollBox .scrollArrow {
    position: absolute;
    left: 35px;
    bottom: 35px;
}
#heroView .scrollBox .scrollArrow .txt {
    font-weight: bold;
    line-height: 1;
    writing-mode: vertical-rl;
    padding: 0 0 10px 0;
}
#heroView .scrollBox .scrollArrow span {
    display: block;
    z-index: 1;
    width: 1px;
    height: 60px;
    background: var(--white);
    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;
    bottom: 25px;
    right: 30px;
}
#heroView .snsWrap ul {
	display: flex;
}
#heroView .snsWrap ul li {
	margin: 0 20px 0 0;
}
#heroView .snsWrap ul li:last-child {
	margin: 0;
}
#heroView .snsWrap ul li a {
	font-size: 20px;
}
#heroView .sns_wrap ul li a i {}

@media screen and (min-width: 961px) {

    #heroView .snsWrap ul li a i {
		transition: all 0.3s ease-out;
	}
	#heroView .snsWrap ul li a:hover i {
        color: var(--red);
	}

}

@media screen and (max-width: 960px) {

	#heroView {
	    min-height: 400px;
	    margin: 0 0 90px;
	}
			
	#heroView .heroInner {
        width: 75%;
        max-width: 500px;
    }

	#heroView .scrollBox .scrollArrow {
        left: 20px;
        bottom: 20px;
	}

    #heroView .snsWrap {
	    bottom: 15px;
	    right: 20px;
	}

}



/*===================================================
    NEWS
====================================================*/
#news {}
#news h3 {}
#news .inBox {}

#news .inBox .newsList {}
#news .inBox .newsList li {
    position: relative;
    border-bottom: 1px dashed;
    padding: 20px 40px 20px 0;
}
#news .inBox .newsList li :before {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: 1px solid;
    border-right: 1px solid;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}
#news .inBox .newsList li:first-child {
    border-top: 1px dashed;
}
#news .inBox .newsList li:last-child {}
#news .inBox .newsList li a {}
#news .inBox .newsList li a .date {
    font-weight: bold;
    margin: 0 0 10px;
    font-size: 14px;
}
#news .inBox .newsList li a .date .new {
    display: none;
}
#news .inBox .newsList li a p:last-child {
    font-size: 18px;
}

#news .inBox .more {
    display: block;
    width: 125px;
    border: 1px solid;
    text-align: center;
    line-height: 1;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    padding: 10px;
    margin: 40px auto 0;
    transition: 0.3s ease;
    cursor: pointer;
}

/* detail */
#news .inBox .detailBox {
    padding: 40px;
    border: 1px solid;
    background: var(--black);
}
#news .inBox .detailBox .newsHead {
    margin-bottom: 20px;
}
#news .inBox .detailBox .newsHead h4 {
    margin-bottom: 15px;
    font-size: 24px;
}
#news .inBox .detailBox .newsHead .newsBody {}

@media screen and (min-width: 961px) {

    #news .inBox .newsList li a:hover {
        opacity: 0.7;
    }

    #news .inBox .more:hover {
        background: var(--white);
        color: var(--black);
    }

}
        
@media screen and (max-width: 960px) {

    #news {}
    #news h3 {}
    #news .inBox {}
    #news .inBox .newsList {}
    #news .inBox .newsList li {
        padding: 15px 35px 15px 0;
    }
    #news .inBox .newsList li:before {
        right: 15px;
    }
    #news .inBox .newsList li:last-child {}
    #news .inBox .newsList li a  {}
    #news .inBox .newsList li a .date {
        margin: 0 0 5px;
        font-size: 14px;
    }
    #news .inBox .newsList li a p:last-child {
        font-size: 14px;
        line-height: 1.5;
    }

    #news .inBox .more {
        margin: 20px auto 0;
    }

    /* detail */
    #news .inBox .detailBox {
        padding: 20px;
    }
    #news .inBox .detailBox .newsHead {}
    #news .inBox .detailBox .newsHead h4 {
        font-size: 20px;
    }
    #news .inBox .detailBox .newsHead .newsBody {}

}



/*===================================================
    SCHEDULE
====================================================*/
#schedule {}
#schedule h3 {}
#schedule .inBox {}

#schedule .tourDateBox {}
#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 .listHead .scheduleInfo {
    justify-content: center!important;
    font-size: 100%;
}

#schedule .tourDateBox .tourDateList {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid;
    padding: 0 0 15px;
    margin: 0 0 15px;
    position: relative;
}
#schedule .tourDateBox .tourDateList:last-child {
    margin: 0;
}
#schedule .tourDateBox .tourDateList li {
    padding: 0 15px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90%;
    line-height: 1.5em;
}
#schedule .tourDateBox .tourDateList li:after{
    content: "";
    position: absolute;
    background: var(--white);
    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: var(--blue);
}
#schedule .tourDateBox .tourDateList .scheduleDate .week.sun {
    color: var(--lightRed);
}
#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;
}

@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 {}

    #schedule .tourDateBox .tourDateList.listHead {
        padding: 0;
    }
	#schedule .tourDateBox .tourDateList.listHead li {
	    display: none;
	}

	#schedule  .tourDateBox .tourDateList {
	    display: block;
	    padding: 0;
        margin: 0 0 20px;
	}
	#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;
	}

}



/*===================================================
    TICKET
====================================================*/
#ticket {}
#ticket .inBox {}

#ticket .inBox .priceBox  {
    margin: 0 auto 60px;
}
#ticket .inBox .priceBox .priceInBox {
    margin: 0 0 30px;
    padding: 40px;
    border: 1px solid;
    background: var(--black);
}
#ticket .inBox .priceBox .priceInBox .detailBox {
    padding: 0 0 35px;
    margin: 0 0 40px;
    border-bottom: 1px dashed;
}
#ticket .inBox .priceBox .priceInBox .detailBox:last-child {
    padding: 0;
    margin: 0;
    border-bottom: none;
}
#ticket .inBox .priceBox .priceInBox .detailBox .detailTit {
    display: inline-block;
    background: var(--red);
    padding: 5px 20px;
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 15px;
}
#ticket .inBox .priceBox .priceInBox .detailBox .detailTxt {
    margin-bottom: 10px;
}
#ticket .inBox .priceBox .priceInBox .detailBox .detailTxt:last-child {
    margin-bottom: 0;
}
#ticket .inBox .priceBox .priceInBox .detailBox .detailTxt .price {
    font-weight: bold;
    font-size: 24px;
    margin: 0 0 5px;
}
#ticket .inBox .priceBox .priceInBox .detailBox .detailTxt .price:last-child {
    margin-bottom: 0;
}
#ticket .inBox .priceBox .priceInBox .detailBox .detailTxt .price span {
    font-size: 14px;
    padding: 0 5px 0 0;
}
#ticket .inBox .priceBox .priceInBox .detailBox .detailTxt .price span:last-child {
    padding: 0 0 0 5px;
}
#ticket .inBox .priceBox .priceInBox .detailBox .detailTxt .note {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
}
#ticket .inBox .priceBox .priceInBox .detailBox .detailTxt .note:last-child {
    margin-bottom: 0;
}
#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 .op_ticket {
	margin: 0 0 1px;
}
#ticket .inBox .op_ticket:last-child {
	margin: 0;
}
#ticket .inBox .op_ticket .ticketTit {
    background: var(--white);
    color: var(--black);
    padding: 30px 60px 30px 40px;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
}
#ticket .inBox .op_ticket .ticketTit.open {}
#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: 40px;
    border: 1px solid;
    border-top: none;
    background-color: var(--black);
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox {
	display: flex;
    border-bottom: 1px solid;
    padding: 0 0 20px;
    margin: 0 0 20px;
    align-items: center;
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox:first-child {
    border-top: 1px solid;
    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;
    font-family: var(--commonFont);
}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt {
    width: 75%;
    padding: 0 30px;
    border-left: 1px solid;
}
#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 .attList li a {
    text-decoration: underline;
}
#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;
}
#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 {}
#ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList li .infoListTxt a {
    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: var(--red);
    border: 1px solid var(--red);
    color: var(--white);
    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: var(--glay);
    border: 1px solid var(--glay);
}
#ticket .inBox .op_ticket .ticketDetail .btn.grayBtn.fin a {
    pointer-events: auto;
}

@media screen and (min-width: 961px){

    #ticket .inBox .op_ticket .ticketTit:hover,
    #ticket .inBox .op_ticket .ticketDetail .ticketInfoBox .txt .infoList li .infoListTxt a:hover {
        opacity: 0.7;
    }

    #ticket .inBox .op_ticket .ticketDetail .btn a:hover {
        background-color: initial;
        color: var(--red);
    }
    #ticket .inBox .op_ticket .ticketDetail .btn.grayBtn.fin a:hover {
        color: var(--glay);
        background-color: initial;
    }

}

@media screen and (max-width: 960px) {

    #ticket {}
    #ticket .inBox {}

    #ticket .inBox .priceBox  {
        margin: 0 0 25px;
    }
    #ticket .inBox .priceBox .priceInBox {
        padding: 20px;
        margin: 0 0 15px;
    }
    #ticket .inBox .priceBox .priceInBox .detailBox {
        padding: 0px 0 20px;
        margin: 0px 0 25px;
    }
    #ticket .inBox .priceBox .priceInBox .detailBox:last-child {}
    #ticket .inBox .priceBox .priceInBox .detailBox .detailTit {
        padding: 5px 15px;
        font-weight: bold;
        font-size: 16px;
        margin: 0 0 15px;
    }
    #ticket .inBox .priceBox .priceInBox .detailBox .detailTxt {}
    #ticket .inBox .priceBox .priceInBox .detailBox .detailTxt:last-child {}
    #ticket .inBox .priceBox .priceInBox .detailBox .detailTxt .price {
        font-size: 18px;
    }
    #ticket .inBox .priceBox .priceInBox .detailBox .detailTxt .price span {
        font-size: 10px;
        padding: 0 3px 0 0;
    }
    #ticket .inBox .priceBox .priceInBox .detailBox .detailTxt .price span:last-child {
        padding: 0 0 0 3px;
    }
    #ticket .inBox .priceBox .priceInBox .detailBox .detailTxt .note {
        font-size: 12px;
    }
    #ticket .inBox .priceBox .priceInBox .detailBox .detailTxt .note:last-child {}
    #ticket .inBox .priceBox .noteList {}
    #ticket .inBox .priceBox .noteList li {
        font-size: 12px;
    }
    #ticket .inBox .priceBox .noteList li:last-child {}

    #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: 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;
        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;
        line-height: 1;
        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 {}
    #ticket .inBox .op_ticket .ticketDetail .btn.grayBtn a {}

}



/*===================================================
    ATTENTION
====================================================*/
#attention {
    margin: 0 auto 80px;
}
#attention h3 {}
#attention .inBox {
    margin: 0 auto 40px;
    padding: 40px;
    border: 1px solid;
    background-color: var(--black);
}
#attention .inBox:last-child {
    margin: 0 auto;
}

.attBox {
    margin: 0 auto;
}
.attBox .tit {
    font-weight: bold;
    font-size: 18px;
    border-left: 3px solid;
    padding: 0 0 0 10px;
    line-height: 1;
    margin: 0 0 30px;
}

/*============ accordion ===========*/
.op_attList {
	margin: 0 0 1px;
}
.op_attList:last-child {
	margin: 0;
}
.op_attList .listBox {}
.op_attList .listBox:last-child{}
.op_attList .attTit {
    background: var(--white);
    color: var(--black);
    padding: 20px 45px 20px 30px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
}
.op_attList .attTit.open {}
.op_attList .attTit span {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 12px;
    height: 12px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}
.op_attList .attTit.open span {
    transform: translateY(-50%);
}
.op_attList .attTit span:before {
    content: "";
    position: absolute;
    top: 25%;
    width: 100%;
    height: 100%;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
}
.op_attList .attDetail {
    display: none;
    padding: 20px 0 30px;
    border-top: none;
}
.op_attList .attDetail >*{
    margin-bottom: 20px;
}
.op_attList .attDetail >*:last-child{
    margin-bottom: 0;
}
.op_attList .attDetail .attList {}
.op_attList .attDetail .attList .idNote {
    margin: 0 0 20px;
    display: block;
    text-indent: -1em;
    padding: 0 0 0 0.5em;
}
.op_attList .attDetail .attList li {
    padding: 0 0 0 15px;
    margin: 0 0 10px;
    position: relative;
}
.op_attList .attDetail .attList li:last-child {
    margin: 0;
}
.op_attList .attDetail .attList li:before {
    content:"・";
    position: absolute;
    left: 0;
    line-height: 1.4em;
}
.op_attList .attDetail .attList li > *{
    margin-bottom: 10px;
}

.op_attList .attDetail .attList li .txt{
    font-size: 13px;
}
.op_attList .attDetail .attList li .attentionTxt{
    font-size: 11px;
    text-indent: -13px;
    margin-left: 13px;
    margin-bottom: 5px;
}
.op_attList .attDetail .attList li .innerList{
    margin-bottom: 15px;
    border-left: 2px solid;
    padding: 0 0 0 10px;
}
.op_attList .attDetail .attList li .innerList dt{
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 5px;
}
.op_attList .attDetail .attList li .innerList dd{
    font-size: 12px;
    font-weight: 800;
}
.op_attList .attDetail .attList li > *:last-child{
    margin-bottom: 0;
}

.op_attList .attDetail .attList li a {
    text-decoration: underline;
}
.op_attList .attDetail .attList li .note {
    display: block;
    text-indent: -1em;
    padding: 0 0 0 1em;
}
.op_attList .attDetail .attList .idList li {
    font-size: 13px;
    font-weight: 600;
    padding: 0;
}
.op_attList .attDetail .attList .idList li:before {
    content:none;
}

.op_attList .attDetail .attList .listDetail {
    margin: 0 0 20px;
    padding: 20px;
    border: 1px solid;
}
.op_attList .attDetail .attList .listDetail:last-child {
    margin: 0;
}
.op_attList .attDetail .attList .listDetail .tit {
    display: block;
    font-size: 14px;
    margin: 0 0 20px;
    border-left: 2px solid;
    padding: 0 0 0 10px;
    line-height: 1.4em;
}
.op_attList .attDetail .attList .listDetail .txt {
    font-size: 14px;
}
.op_attList .attDetail .attList .listDetail .txt .note {
    display: block;
    text-indent: -1em;
    padding: 0 0 0 1em;
    font-size: 14px;
}
.op_attList .attDetail .attList .listDetail .txt .detailList {}
.op_attList .attDetail .attList .listDetail .txt .detailList:last-child {}
.op_attList .attDetail .attList .listDetail .txt .detailList li {
    text-indent: -1em;
    padding: 0 0 0 1em;
}
.op_attList .attDetail .attList .listDetail .txt .detailList li:last-child {}
.op_attList .attDetail .attList .listDetail .txt .detailList li .detailNote {
    display: block;
    text-indent: -0.5em;
    padding: 0 0 0 0.5em;
    margin: 0 0 5px;
}
.op_attList .attDetail .attList .listDetail .txt .detailList li .detailNote:first-child {
    margin: 5px 0;
}
.op_attList .attDetail .attList .listDetail .txt .detailList li .detailNote:last-child {
    margin: 0;
}
.op_attList .attDetail .attList .idBox {
    margin: 0 0 20px;
}
.op_attList .attDetail .attList .idBox:last-child {
    margin: 0;
}
.op_attList .attDetail .attList .idBox .tit {
    display: block;
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin: 0 0 10px;
    border: none;
}
.op_attList .attDetail .attList .idBox .txt {
    font-size: 14px;
}
.op_attList .attDetail .attList .idBox .idList {
    margin: 0 0 10px;
}
.op_attList .attDetail .attList .idBox .idList li {}
.op_attList .attDetail .attList .idBox .idList li:last-child {}
.op_attList .attDetail .attList .idBox .idList li .num {}
.op_attList .attDetail .attList .idBox .txtList {}
.op_attList .attDetail .attList .idBox .txtList li {}
.op_attList .attDetail .attList .idBox .txtList li:last-child {}
.op_attList .attDetail .attList .idBox .idDetail {
    font-size: 14px;
    margin: 0 0 10px;
}
.op_attList .attDetail .attList .idBox .idDetail:last-child {
    margin: 0;
}
.op_attList .attDetail .attList .idBox .idDetail .detailTit {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 5px;
}
.op_attList .attDetail .attList .idBox .idDetail .detailTxt {}
.op_attList .attDetail .attList .idBox .idDetail .att {
    display: block;
    padding: 0 0 0 1em;
    text-indent: -1em;
    font-size: 12px;
    font-weight: 400;
}

@media screen and (min-width: 961px) {

   .op_attList .attTit:hover,
   .op_attList .attDetail .attList li a:hover {
        opacity: 0.7;
    }

}
        
@media screen and (max-width: 960px) {

    #attention {
        margin: 0 auto 45px;
    }
    #attention .inBox {
        margin: 0 auto 20px;
        padding: 20px;
    }

    .attBox {
        margin: 0 auto 25px;
    }
    .attBox:last-child {
        margin: 0 auto;
    }
    .attBox .tit {
        font-size: 14px;
        margin: 0 0 20px;
        padding: 0 0 0 10px;
    }

    /*============ accordion ===========*/
    .op_attList {}
    .op_attList .attTit {
        padding: 15px 45px 15px 20px;
        font-size: 14px;
    }
    .op_attList .attTit span {
        right: 20px;
        width: 10px;
        height: 10px;
    }
    .op_attList .attDetail {
        padding: 15px 0;
    }
    .op_attList .attDetail .attList {}
    .op_attList .attDetail .attList .idNote {
        margin: 0 0 15px;
    }
    .op_attList .attDetail .attList li {}
    .op_attList .attDetail .attList li:last-child {}
    .op_attList .attDetail .attList li .note {}
    .op_attList .attDetail .attList .listDetail {}
    .op_attList .attDetail .attList .listDetail .tit {}
    .op_attList .attDetail .attList .listDetail .txt {}
    .op_attList .attDetail .attList .listDetail .txt .note {}
    .op_attList .attDetail .attList .listDetail .txt .detailList {}
    .op_attList .attDetail .attList .listDetail .txt .detailList li {}
    .op_attList .attDetail .attList .listDetail .txt .detailList li:last-child {}
    .op_attList .attDetail .attList .listDetail .txt .detailList li .detailNote {}
    .op_attList .attDetail .attList .listDetail .txt .detailList li .detailNote:last-child {}
    .op_attList .attDetail .attList .idBox {
        margin: 0 0 10px;
    }
    .op_attList .attDetail .attList .idBox .tit {
        line-height: 1.5;
        margin: 0 0 5px;
    }
    .op_attList .attDetail .attList .idBox .txt {}
    .op_attList .attDetail .attList .idBox .idList {}
    .op_attList .attDetail .attList .idBox .idList li {}
    .op_attList .attDetail .attList .idBox .idList li:last-child {}
    .op_attList .attDetail .attList .idBox .idList li .num {}
    .op_attList .attDetail .attList .idBox .txtList {}
    .op_attList .attDetail .attList .idBox .txtList li {}
    .op_attList .attDetail .attList .idBox .txtList li:last-child {}
    .op_attList .attDetail .attList .idBox .idDetail {}
    .op_attList .attDetail .attList .idBox .idDetail:last-child {}
    .op_attList .attDetail .attList .idBox .idDetail .detailTit {}
    .op_attList .attDetail .attList .idBox .idDetail .detailTxt {}
    .op_attList .attDetail .attList .idBox .idDetail .att {}

}



/*===================================================
    FOOTER
====================================================*/
#footer {
    padding: 0 60px 60px;
}
#footer .copyright {
    font-size: 10px;
    text-align: center;
}
#footer .footerBtnList{
    display: flex;
    justify-content: center;
    margin-bottom: 240px;
}
#footer .footerBtnList li{
    padding: 0 20px;
}
#footer .footerBtnList li a {
    display: block;
    padding: 20px 20px 22px;
    width: 360px;
    text-align: center;
    color: var(--black);
    background: var(--white);
    font-size: 18px;
}
#footer .footerBtnList li:nth-child(even) a{
    background: var(--red);
    color: var(--white);
}

@media screen and (min-width: 961px) {

    #footer .footerBtnList li a:hover {
        opacity: 0.7;
    }

}
        
@media screen and (max-width: 960px) {

    #footer {
        padding: 0 20px 20px;
    }

    #footer .footerBtnList {
        display: block;
        margin-bottom: 135px;
    }
    #footer .footerBtnList li {
        padding: 0;
        margin: 0 0 10px;
    }
    #footer .footerBtnList li a {
        width: 90%;
        font-size: 14px;
        max-width: 300px;
        margin: 0 auto;
    }
    #footer .copyright {}

}