:root {
    --color-black:#000;
    --color-white:#fff;
    --color-red:#C80019;
    --color-exciting:#1919FF;
    --color-bench1:#008200;
    --color-bench2:#05FF05;
    --color-court1:#6800D0;
    --color-court2:#9933FF;
    --color-arena1:#FF0582;
    --color-arena2:#FF47A3;
    --color-arena3:#FF89E3;
    --color-1fstand1:#988316;
    --color-1fstand2:#00CCCC;
    --color-shitei:#FF6600;
    --font-size-base: calc(14px * 0.789);
    --font-size-60px:4.2857rem;/* 50px */
    --font-size-50px:3.5714rem;/* 50px */
    --font-size-40px:2.857rem;/* 40px */
    --font-size-30px:2.1428rem;/* 30px */
    --font-size-25px:1.785rem;/* 25px */
    --font-size-20px:1.4285rem;/* 20px */
}
*{
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: unset;
    vertical-align: top;
}
html,body{
    width:100%;
    min-width: unset;
    height: 100%;
    background-color: var(--color-white);
    color: var(--color-black);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0;
    font-size: calc(14px * 0.789);
}
h1,h2,h3,h4{
    margin: 0;
    padding: 0;
    font-weight: 700;
}
img{
    vertical-align: top;
    width: 100%;
    height: auto;
}
ul,ol,li{
    list-style: none;
    margin: 0;
    padding: 0;
}
p{
    line-height: 1.35em;
    margin: 0;
}
a{
    text-decoration: none;
}
a:visited{
    text-decoration: none;
    color: initial;
}
section{
    padding-bottom: 10rem;
}
section#hero{
    padding-bottom: 0;
}
.bk-black{
    background-color: var(--color-black);
    color: var(--color-white);
}
.bk-white{
    background-color: var(--color-white);
    color: var(--color-black);
}
.bk-grade{
    background: #C80019;
    background: linear-gradient(0deg, var(--color-black) 0%, var(--color-red) 100%);
}
.bk-grade-reverse{
    background: #C80019;
    background: linear-gradient(0deg, var(--color-red) 0%, var(--color-black) 100%);
}
.bk-grade-btn{
    background: #C80019;
    background: linear-gradient(0deg, var(--color-red) 0%, #320000 100%);
}
.bk-red{
    background-color: var(--color-red);
}
.bk-exciting{
    background-color: var(--color-exciting);
    color: var(--color-white);
}
.bk-bench1{
    background-color: var(--color-bench1);
    color: var(--color-white);
}
.bk-bench2{
    background-color: var(--color-bench2);
    color: var(--color-black);
}
.bk-court1{
    background-color: var(--color-court1);
    color: var(--color-white);
}
.bk-court2{
    background-color: var(--color-court2);
    color: var(--color-white);
}
.bk-arena1{
    background-color: var(--color-arena1);
    color: var(--color-white);
}
.bk-arena2{
    background-color: var(--color-arena2);
    color: var(--color-white);
}
.bk-arena3{
    background-color: var(--color-arena3);
    color: var(--color-white);
}
.bk-1fstand1{
    background-color: var(--color-1fstand1);
    color: var(--color-white);
}
.bk-1fstand2{
    background-color: var(--color-1fstand2);
    color: var(--color-white);
}
.bk-shitei{
    background-color: var(--color-shitei);
    color: var(--color-white);
}
.bd-top{
    border-top: 3px solid;
    padding-top: 8.8rem;
}
.fontsize-50px{
    font-size: var(--font-size-50px);
}
.fontsize-40px{
    font-size: var(--font-size-40px);
}
.fontsize-30px{
    font-size: var(--font-size-30px);
}
.fontsize-20px,
.tokutenBox_contentwrap h2,
.tokutenBox_btnwrap p{
    font-size: var(--font-size-20px);
}
.black{
    color: var(--color-black);
}
.red,
a.red:visited{
    color: var(--color-red);
}
.white{
    color: var(--color-white);
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing:unset;
}

.flex{
    display: flex;
    flex-wrap: wrap;
}
.f-justify-center{
    justify-content: center;
}
.f-justify-between{
    justify-content: space-between;
}
.f-justify-around{
    justify-content: space-around;
}
.f-align-center{
    align-items: center;
}
.f-align-baseline{
    align-items:baseline;
}
.f-column{
    flex-direction: column;
}
.f-grow{
    flex-grow: 1;
}
.center{
    text-align: center;
}
.medium{
    font-weight: 500;
}
.bold{
    font-weight: 700;
}

h1 img{
    width: auto;
    height: var(--font-size-40px);
    margin: 0 auto;
    padding-bottom: 1rem;
}
h1{
    padding: 6.2rem 0 4.7rem;
    margin-bottom: 7.14rem;
    border-bottom: 3px solid;
}
.nav-logo{
    width: min(30vw, 240px);
    padding: var(--font-size-50px) 0;
}
#__heder{
    position: relative;
}
#menu li{
    cursor: pointer;
    padding: var(--font-size-40px) min(2vw, 2em);
}
#menu li:hover{
    background-color: rgba(255,255,255,0.2);
}
#_menuBtn{
    display: none;
    position: absolute;
    top: calc(50% - 20px);
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid;
    z-index: 1;
}
.forBiz #_menuBtn{
    border-color: white;
}
#_menuBtn::after{
    content: "";
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
}
._moreBtn{
    font-size: 10px;
    padding-right: 2.5em;
    padding-left: 1em;
    padding-bottom: 0.1em;
    border: 2px solid;
    border-radius: 10em;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 2.2em;
    cursor: pointer;
}   
._moreBtn:hover{
    box-shadow: 0 0 8px rgba(0,0,0,.5);
}
._moreBtn p::after,
._moreBtn p::before{
    content: "";
    display: inline-block;
    background-color: var(--color-white);
    width: .6em;
    height: 1px;
    position: absolute;
    right: 1em;
    top: 50%;
}
._moreBtn p::before{
    transform: rotate(60deg);
    top:calc(50% - 0.25em);
}
._moreBtn p::after{
    transform: rotate(-60deg);
    top:calc(50% + 0.25em);
}
._moreBtn.no-link{
    border: 0;
    padding-right: 1em;
    cursor: initial;
}
._moreBtn.no-link:hover{
    box-shadow: unset;
}
._moreBtn.no-link p::before,
._moreBtn.no-link p::after{
    content: unset;
}
.linkBtn{
    margin-top: 4rem;
}
.linkBtn a{
    color: var(--color-white);
    border-radius: 10rem;
    padding: .5em 1em;
    display: inline-block;
}
.bd-square{
    display: inline-block;
    border: 1px solid var(--color-white);
    padding: .8em 1em;
    margin-bottom: 4em;
}
.redBtnWrap{
    background-color: var(--color-red);
    border-radius: 10rem;
    text-align: center;
    width: min(416px, 100%);
    margin: 0 auto;
    margin-top: 5rem;
}
.redBtnWrap a{
    color: var(--color-white);
    width: 100%;
    display: inline-block;
    padding: 1em 0;
    font-size: calc(var(--font-size-30px) * 0.789);
}
.faqList li {
    font-size: 1.3rem;
    flex-basis: calc(50% - 1rem);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
}
.faqList li.open {
    position: relative;
    z-index: 1;
}
#faq h2{
    padding: 3rem .5rem 1rem;
}
#faq .container > div > p{
    margin-top: 2rem;
    padding-left: .5rem;
}
#faq .container > div > p:first-child{
    margin-top: 0;
}
.faq_header {
    background-color: #B3B3B3;
    padding: .5em 2.3em .5em 2em;
    position: relative;
    align-items: center;
    cursor: pointer;
    height: 5rem;
}
.faq_content {
    padding: 0 2rem;
    height: 0;
    opacity: 0;
    transition: all .2s cubic-bezier(0.075, 0.82, 0.165, 1);
    border: 1px solid;
    word-break: break-all;
}
.faqList li.open .faq_content {
    height: auto;
    opacity: 1;
    padding: 1rem 2rem;
    flex-grow: 1;
}
.faq_header::before {
    content: "Q";
    font-weight: bold;
    font-size: 1.1rem;
    position: absolute;
    left: 1rem;
}
.faq_header::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 1rem;
    top: calc(50% - 8px);
    border-left: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(-45deg);
    transition: all .3s ease;
}
.open .faq_header::after {
    transform: rotate(-225deg);
    top: calc(50% - 4px);
}
#attention ul{
    padding-left: 1rem;
}
.attentionwrap li {
    list-style: disc;
    font-size: 95%;
    margin-top: .5em;
}
.attentionwrap li.noliststyle{
    list-style: none;
    margin-left: -1rem;
    margin-top: 1.3em;
}
.attentionwrap p{
    margin: 2em 0 1em;
    font-size: 1.2rem;
    font-weight: 700;
}
.attentionwrap > div{
    flex-basis: calc(50% - 1rem);
    padding: 0.5rem;
}
.snswrap{
    max-width: 500px;
    margin: 3rem auto;
}
.snswrap img{
    width: auto;
    height: 50px;
}
.copy{
    padding: 3rem 0;
}
.comingsoon{
    height: min(20vw, 180px);
    display: flex;
    justify-content: center;
    align-items: center;
}
#modalwindow {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 200;
    transition: top .3s cubic-bezier(0.86,0,0.07,1);
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}
#modalwindow.open {
    top: 0;
}
.modal-bk{
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}
#modalwindow > div:first-child {
    max-width: 90vw;
    height: calc(100vh - 120px);
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
#modalwindow.open > div:last-child {
    opacity: 1;
}
#modalwindow .modalwrap {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 101;
    padding-top: 5rem;
    opacity: 0;
    transition: opacity .3s;
    overflow: auto;
}
#modalwindow .modalwrap.open{
    opacity: 1;
}
 .grade_content{
    width: 100%;
    height: 100%;
 }
.colsebtn{
    position: absolute;
    top: 0rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: #000;
}
.colsebtn::before,
.colsebtn::after{
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 1.5px);
    content: "";
    width: 3px;
    height: 20px;
    background-color: #fff;
    display: block;
}
.colsebtn::before{
    transform: rotate(45deg);
}
.colsebtn::after{
    transform: rotate(-45deg);
}


.herowrap .container{
    position: relative;
}
.herowrap .btn_white{
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.herowrap .btn_white a{
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 10rem;
    background-color: white;
    font-size: var(--font-size-20px);
}
.herowrap .circlebtn{
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    z-index: 10;
}
.herowrap .circlebtn a,
.herowrap .circlebtn p{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    aspect-ratio: 1;
    border-radius:50%;
    font-size: var(--font-size-20px);
    color: var(--color-white);
    border: 5px solid;
    cursor: pointer;
}
.meritlist li{
    margin-top: 10rem;
}
.meritlist li:first-child{
    margin-top: 0;
}
.meritlist li p:first-child{
    margin-bottom: .5em;
}
.seatmap{
    width: min(calc(1180px),100%);
    margin: 0 auto;
}
.seatmap > .flex{
    gap: min(4.5rem, 4%);
    justify-content: center;
}
.mapImgWrap{
    flex-basis: min(560px,calc(50% - 4.5rem / 2));
}
.mapImgWrap > div{
    display: none;
}
.mapImgWrap > div.show{
    display: block;
}
.seatmap > .flex > div:last-child{
    /* flex: 1; */
    width: min(500px, calc(50% - 4.5rem / 2));
}
.seatmap li{
    cursor: pointer;
    transition: all .3s;
}
.seatmap li:hover{
    background-color: rgba(255,255,255,0.2);
}
.seatlist li{
    margin-top: 2rem;
    border-bottom: 3px solid white;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 3.5rem;
    justify-content: space-between;
}
.seatlist li:first-child{
    margin-top: 0;
}
.seatlist li p.seattitle{
    flex-basis: 15em;
}
.seatlist li > div{
    flex: 1;
    position: relative;
    width: 100%;
}
.seatlist li p.seatprice{
    display: flex;
    justify-content: end;
    padding-right: min(30%,5em);

}
.seatlist li p.morebtn{
    position: absolute;
    right: 0;
    top: 0;
}
.seatlist li p.morebtn::before{
    content: "";
    display: inline-block;
    background-color: var(--color-white);
    width: 10px;
    height: 2px;
    position: absolute;
    right: -1.5em;
    top: 7px;
    transform: rotate(57deg);
}
.seatlist li p.morebtn::after{
    content: "";
    display: inline-block;
    background-color: var(--color-white);
    width: 10px;
    height: 2px;
    position: absolute;
    right: -1.5em;
    top: 14px;
    transform: rotate(-57deg);
}
.seatInfo{
    display: none;
}
@media screen and (max-width:840px) {
    .seatlist li p.morebtn{
        display: none;
    }
    .seatlist li p.seatprice {
        padding-right: 1em;
    }
    .seatlist li {
        position: relative;
        padding-right: 2.5rem;
    }
    .seatlist li p.seatprice::before {
        content: "";
        position: absolute;
        top: -0.3em;
        right: -1.5em;
        width: 1.3em;
        height: 1.3em;
        border: 2px solid white;
        border-radius: 50%;
    }
    .seatlist li p.seatprice::after {
        content: "+";
        position: absolute;
        top: -0.23em;
        right: -1em;
        font-size: 1em;
        color: white;
    }
}

.benefitlist{
    width:min(1100px, 100%);
    margin: 0 auto;
}
.benefitlist > ul > li{
    margin-top: calc(var(--font-size-50px) * 1.2);
    flex-wrap: nowrap;
}
.benefitlist > ul > li > .flex{
    
}
.benefitlist li:first-child{
    margin-top: 0;
}
.benefitlist .iconwrap{
    flex-basis: min(30%,200px);
    width: min(30%,200px);
    margin-right: var(--font-size-50px);
    flex-shrink: 0;
}
.benefitlist .subcaption{
    font-size: var(--font-size-25px);
    margin-top: 1em;
    line-height: 1.65em;
}
.benefitlist .sublist{
    margin-top: 1.4rem;
    font-size: var(--font-size-20px);
}
.benefitlist .sublist li{
    position: relative;
    padding-left: 1.1em;
}
.benefitlist .sublist li::before{
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
    width: 1.3em;
}
input.hideInput{
    display: none;
}
.tab_content {
    display: none;
    padding: 40px 0px 0;
    clear: both;
    overflow: hidden;
    transition: all .3s;
    opacity: 0;
}
#merit .tab_content{
    margin-top: 6rem;
}
#merit .tab_content .fontsize-30px{
    font-size: calc(var(--font-size-30px) * 0.94);
}
.meritlist li p{
    line-height: 1.75em;
}
.switchwrap{
    gap: min(20vw, 110px);
}
.switchwrap > label{
    display: block;
    padding: 1.5em 3em;
    border-radius: 10em;
    min-width: 16rem;
    text-align: center;
    cursor: pointer;
    background-color: rgba(255,255,255,.8);
    transition: all .3s;
}
#merit .switchwrap > label{
    background-color: #c8c8c8;
}
#merit .switchwrap input:checked + .tabTitle {
    background-color: var(--color-black);
}
#howtobuy .switchwrap input:checked + .tabTitle {
    background-color: var(--color-white);
}
.tab_content.active {
  opacity: 1;
}
#howtobuy .caption{
    font-size: var(--font-size-25px);
    margin-bottom: 1rem;
}
#howtobuy .wrap{
    position: relative;
    transition: all .3s;
}
.howtoList{
    margin-top: 4rem;
    gap: 2.75rem;
}
.howtoList li{
    padding: 2rem 1rem;
    width: calc(245px * 0.789);
    display: flex;
    flex-direction: column;
    position: relative;
}
.howtoList li::before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--color-white);
    border-right: 0;
    position: absolute;
    top: calc(50% - 6px);
    left: -2rem;
}
.howtoList li:first-child::before{
    content: unset;
}
.howtoList li .titleIcon img{
    height: 1.3rem;
    width: auto;
}
.howtoList li h3{
    margin-top: .5rem;
    font-size: calc(15px * 0.8);
}
.howtoList li p{
    font-size: 1.15rem;
    line-height: 1.7em;
    letter-spacing: .05em;
}
.stepIcon{
    margin-left: -1rem;
    margin-right: -1rem;
}
.cautionList li{
    position: relative;
    margin-top: 1rem;
    padding-left: 1.5em;
    font-size: var(--font-size-25px);
}
.cautionList li:first-child{
    margin-top: 0;
}
.cautionList li::before{
    content: "";
    width: .9em;
    height: .9em;
    background-color: var(--color-black);
    position: absolute;
    top: .35em;
    left: 0;
}
@media screen and (max-width:1248px) {
    .howtoList{
        width: min(760px, 100%);
        margin: 4rem auto 0;
    }
    .howtoList li{
        /* flex-basis: calc(100% / 3 - 4rem); */
    }
    .howtoList li > div{
        /* width: calc(270px * 0.789 - 1.97rem); */
    }
}

/* SPLIDE */
#sheatSpride .splide__arrows{
    padding: 5rem 0;
    display: flex;
    justify-content: center;
    gap: 50px;
}
#sheatSpride .splide__arrow{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border-width: 0;
    position: relative;
    cursor: pointer;
}
#sheatSpride .splide__arrow::before,
#sheatSpride .splide__arrow::after{
    content: "";
    display: inline-block;
    background-color: var(--color-black);
    width: 20px;
    height: 3px;
    position: absolute;
    right: calc(50% - 13px);
    top: 50%;
}
#sheatSpride .splide__arrow::before {
    transform: rotate(35deg);
    top: calc(50% - 7px);
}
#sheatSpride .splide__arrow::after {
    transform: rotate(-35deg);
    top: calc(50% + 3px);
}
#sheatSpride .splide__arrow--prev{
    transform: rotate(-180deg);
}
#sheatSpride .splide__slide > div{
    aspect-ratio: 1;
    border: 8px solid white;
}
#sheatSpride .slide_title,
#sheatSpride .slide_info{
    height: calc((100% - (200% / 3)) / 2);
    display: flex;
    justify-content: center;
    align-items: center;
}
#sheatSpride .slide_title h2,
#sheatSpride .slide_title img{
    width: 100%;
    height: 100%;
}
#sheatSpride .slide_info{
    font-size: var(--font-size-60px);
}
/* Modal Splide */
#moda_imgView{
    color: var(--color-white);
}
#moda_imgView li.splide__slide > .flex > div{
    width: 50%;
}
#moda_imgView li.splide__slide > .flex > div:last-child{

}
#moda_imgView li.splide__slide > .flex > div:first-child > div{
    padding-left: var(--font-size-50px);
    align-items: baseline;
}
#moda_imgView li.splide__slide > .flex > div:last-child,
#moda_imgView .seattitle{
    padding-top: var(--font-size-50px);
}
#moda_imgView li > p{
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
}
#moda_imgView .seatMap{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
#moda_imgView .seatMap img{
    aspect-ratio: 25 / 18;
}
#moda_imgView .seatPrice{
    align-items: baseline;
}
#moda_imgView .seatMap,
#moda_imgView .seatBlock,
#moda_imgView .seattitle div{
    margin-right: var(--font-size-50px);
}
#moda_imgView .seattitle div{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
#moda_imgView .seatImg{
    /* flex-grow: 1; */
    max-height: 100%;
    position: relative;
}
#moda_imgView .seatImg img{
    width: 100%;
    height: calc(100% - var(--font-size-50px));
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity .3s;
    position: absolute;
    bottom: 0;
    left: 0;
}
#moda_imgView .seatImg img.active{
    opacity: 1;
}
#moda_imgView .seatImg .seatSwitch{
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    gap: 1rem;
}
#moda_imgView .seatImg .seatSwitch div{
    padding: 1em 0;
    border-radius: 10rem;
    width: 10rem;
    text-align: center;
    font-weight: bold;
    letter-spacing: .3em;
}
#moda_imgView .seatImg .seatSwitch div:not(.active){
    background-color: white;
    color: #000;
    cursor: pointer;
}
#moda_imgView .splide__arrows{
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 2rem;
}
#moda_imgView .splide__arrows button{
    width: 2em;
    height: 2em;
    border-radius: 50%;
    border-width: 0;
    position: relative;
}
#moda_imgView .splide__arrow--prev {
    transform: rotate(-180deg);
}
#moda_imgView .splide__arrow::before, 
#moda_imgView .splide__arrow::after {
    content: "";
    display: inline-block;
    background-color: var(--color-black);
    width: 1em;
    height: 2px;
    position: absolute;
    right: calc(50% - 0.5em);
    top: 50%;
}
#moda_imgView .fontsize-20px{
    font-size: calc(var(--font-size-20px) * 0.83);
}
#moda_imgView .splide__arrow::before {
    transform: rotate(35deg);
    top: calc(50% - 5px);
}
#moda_imgView .splide__arrow::after {
    transform: rotate(-35deg);
    top: calc(50% + 2px);
}
@media screen and (max-width:700px) {
    #sheatSpride .splide__arrow{
        width: 60px;
        height: 60px;
    }
    #sheatSpride .slide_info{
        font-size: min(7vw,var(--font-size-60px));
    }
    #sheatSpride .splide__slide > div {
        border-width: min(1.35vw, 8px);
    }
}
@media screen and (max-width:768px) {
    h1{
        padding: calc(5rem * 0.6) 0 calc(3rem * 0.6);
        margin-bottom: calc(5rem * 0.6);
    }
    h1 img {
        height: calc(var(--font-size-40px) * 0.66);
    }
    .fontsize-50px{
        font-size: calc(var(--font-size-50px) * 0.6);
    }
    .fontsize-40px{
        font-size: calc(var(--font-size-40px) * 0.6);
    }
    .fontsize-30px,
    #merit .tab_content .fontsize-30px{
        font-size: calc(var(--font-size-30px) * 0.7);
    }
    #howtobuy .caption {
        font-size: calc(var(--font-size-25px) * 0.7);
    }
    .fontsize-20px,
    .benefitlist .sublist,
    .herowrap .circlebtn a,
    .herowrap .btn_white a,
    .herowrap .circlebtn a, .herowrap .circlebtn p {
        font-size: calc(var(--font-size-20px) * 0.8);
    }
    .meritlist li {
        margin-top: 5rem;
    }
    section{
        padding-bottom: calc(10rem * 0.6);
    }
    .faqList li {
        font-size: 1rem;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    .faqList li p{
        letter-spacing: .1em;
        line-height: 1.7em;
    }
    #menuwrap{
        position: fixed;
        top: -30%;
        right: 0;
        left: 0;
        transition: top .3s cubic-bezier(0.86,0,0.07,1);
        z-index: -1;
    }
    #menuwrap.open{
        top: calc(max(60px, 10vw) + 1rem);
    }
    #menu li {
        flex-basis: calc(100% / 3);
        padding: 2rem 0;
        text-align: center;
    }
    .main{
        overflow: hidden;
        position: relative;
    }
    .menuBk{
        position: absolute;
        margin: -20px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.7);
        backdrop-filter: blur(10px);
        opacity: 0;
        transition: opacity .3s, z-index .2s;
        z-index: -1;
    }
    .main.menuOpen .menuBk{
        opacity: 1;
        z-index: 11;
    }
    #_menuBtn{
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    #_menuBtn span{
        position: absolute;
        width: 4px;
        height: 4px;
        background-color: #000;
        transition: all .3s ease-in-out;
    }
    #_menuBtn span:nth-child(1){
        top: 13px;
        left: 13px;
    }
    #_menuBtn span:nth-child(2){
        top: 13px;
        right: 13px;
        transition-delay: .3s;
    }
    #_menuBtn span:nth-child(3){
        bottom: 13px;
        left: 13px;
        transition-delay: .3s;
        opacity: 1;
    }
    #_menuBtn span:nth-child(4){
        bottom: 13px;
        right: 13px;
        opacity: 1;
    }
    .open #_menuBtn{
        background-color: #000;
    }
    .forBiz #_menuBtn span {
        background-color: #fff;
    }
    .open #_menuBtn span:nth-child(1),
    .open #_menuBtn span:nth-child(2){
        width: 20px;
        height: 3px;
        background-color: #fff;
        top: 18px;
    }
    .open #_menuBtn span:nth-child(1){
        left: 10px;
        transform: rotate(45deg);
    }
    .open #_menuBtn span:nth-child(2){
        right: 10px;
        transform: rotate(-45deg);
    }
    .open #_menuBtn span:nth-child(3),
    .open #_menuBtn span:nth-child(4){
        opacity: 0;
    }
    .faqList li,
    .attentionwrap > div {
        flex-basis: 100%;
    }
    .faqList,
    .attentionwrap,
    .seatmap > .flex {
        flex-direction: column;
    }
    .faqList{
        margin-top: .5rem;
    }
    #faq .container > div > p {
        padding-left: 0;
    }
    #hero{
        padding-top: calc(1rem + max(60px, 10vw));
    }
    #__heder{
        height: max(60px, 10vw);
        padding-bottom: 1rem;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 200;
    }
    #__heder.open{
        position: fixed;
        top: 0;
    }
    #__heder > div{
        position: relative;
        height: calc(100% + 1rem);
        background-color: rgba(255,255,255,0.7);
        transition: all .2s;
    }
    #__heder.forBiz{
        /* position: relative; */
    }
    #__heder.forBiz::before{
        /* content: ""; */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: max(60px, 10vw);
        background-color: #000;
    }
    #__heder.forBiz.open{
        background-color: unset;
    }
    #__heder.forBiz > div{
        background-color: rgba(0,0,0,0.7);
    }
    #__heder.open > div{
        background-color: var(--color-white);
    }
    #__heder.forBiz.open > div{
        background-color: var(--color-black);
    }
    #__heder > div > div:first-child{
        height: calc(100% - 1rem);
    }
    header .nav-logo {
        padding-top: 0;
        padding-bottom: 0;
    }
    header .nav-logo,
    header .nav-logo img{
        width: auto;
        height: 100%;
    }
    footer .nav-logo {
        width: 50%;
    }
    .imgWrap {
        padding-top: 3rem;
    }
    .comingsoon {
        height: 35vw;
    }
    .faq_header {
        height: auto;
        padding: 1.3em 2.5em;
    }
    .faq_header::after {
        width: 6px;
        height: 6px;
        top: calc(50% - 6px);
        border-left: 2px solid #000;
        border-bottom: 2px solid #000;
    }
    #modalwindow .imgver .modalwrap {
        height: unset;
    }
    .seatmap {
        padding-top: 5rem;
        position: relative;
    }
    .seatmap > .flex,
    .benefitlist li {
        display: block;
    }
    .mapImgWrap{
        position: sticky;
        top: 0;
        margin-bottom: 3rem;
    }
    #merit .tab_content {
        margin-top: 2rem;
    }
    .seatmap > .flex > div:last-child {
        flex: unset;
        width: 100%;
    }
    .benefitlist > ul > li{
        text-align: center;
        position: relative;
    }
    .benefitlist .iconwrap {
        width: 60px;
        height: 60px;
        position: absolute;
        top: 0;
        left: 0;
    }
    .benefitInfo h2{
        padding-left: calc(60px + 1rem);
        min-height: 60px;
        text-align: left;
        display: flex;
        align-items: center;
    }
    .benefitInfo p{
        margin-top: calc(60px + 1rem);
    }
    .benefitlist .subcaption,
    .cautionList li {
        font-size: calc(var(--font-size-25px) * 0.7);
        text-align: left;
    }
    .sublist li{
        text-align: left;
    }
    .switchwrap{
        gap: 3rem;
    }
    .switchwrap > label {
        width: calc(50% - 1.5rem);
        min-width: unset;
        padding: 1.5rem 0;
        text-align: center;
    }
    .howtoList {
        width: 100%;
    }
    .howtoList li {
        flex-basis: 100%;
        display: block;
    }
    .howtoList li::before {
        top: -2rem;
        left: calc(50% - 5px);
        transform: rotate(90deg);
    }
    .snswrap{
        justify-content: center;
        gap: 1.5rem;
        margin-top: 0;
    }
    .snswrap img {
        width: 30px;
    }
    .herowrap .circlebtn a, .herowrap .circlebtn p {
        padding: 1rem;
        border-width: 2.5px;
    }
    #menu ul.flex{
        align-items: center;
    }
    #moda_imgView .splide__slide > div.flex{
        position: relative;
        display: block;
    }
    #moda_imgView .splide__slide > div.flex > div:first-child{
        width: 100%;
    }
    #moda_imgView .splide__slide > div.flex > div:first-child .seattitle{
        padding-top: 24px;
        
    }
    #moda_imgView .splide__slide > div.flex > div:first-child .seattitle,
    #moda_imgView .splide__slide > div.flex > div:first-child .seatText,
    #moda_imgView .splide__slide > div.flex > div:first-child .seatMap,
    #moda_imgView li.splide__slide > .flex > div:first-child > div{
        padding-left: 24px;
        padding-right: 24px;
    }
    #moda_imgView .splide__slide > div.flex > div:first-child .seatText{
        margin-top: calc(100% * 1067 / 1600 + 24px);
    }
    #moda_imgView .splide__slide > div.flex > div:first-child .seatMap,
    #moda_imgView .seattitle div {
        margin-right: 0;
    }
    #moda_imgView .splide__slide > div.flex > .seatImg{
        position: absolute;
        width: 100%;
        left: 0;
        top: calc(24px + 15vw);
        aspect-ratio: 1600 / 1067;
    }
    #moda_imgView .seatImg .seatSwitch div {
        width: 6rem;
        padding: 0.5em 0;
    }
    .forBiz .logowrap{
        background: unset;
    }
}