:root {
    --color-black:#000;
    --bd-color-lightblack:#323232;
    --color-lightgray:#ebebeb;
    --bd-color-lightgray:#e6e6e6;
    --color-white:#fff;
    --color-red:#C80019;
    --color-link-red:#ff0000;
    
    --font-size-base:15px;
    --font-size-65px:4.3rem;
    --font-size-50px:3.33rem;
    --font-size-30px:2rem;
    --font-size-25px:1.66rem;
    --font-size-23px:1.53rem;
    --font-size-19px:1.26rem;
    --font-size-13px:0.86rem;
    --font-size-10px:0.66rem;

    --color-grade: linear-gradient(45deg,#e50020 0%, #e95504 25%, #fff000 50%, #fff 75%, #00469b 90%);
    --color-grade-reverse: linear-gradient(135deg,#e50020 0%, #e95504 25%, #fff000 50%, #fff 75%, #00469b 90%);
    --color-grade-circle: linear-gradient(45deg,#e50020 5%, #e95504 30%, #fff000 50%, #fff 70%, #00469b 80%);
}

*{
    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-size: var(--font-size-base);
    line-height: 1.7;
    letter-spacing: .1em;
    font-family: "BIZ UDPGothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}
img{
    width: 100%;
    height: auto;
    vertical-align:middle;
}
.white{
    color: var(--color-white);
}
.red{
    color: var(--color-red);
}
.link-red{
    color: var(--color-link-red);
}
.black{
    color: var(--color-black);
}
.bg-white{
    background-color: var(--color-white);
}
.bg-black{
    background-color: var(--color-black);
}
.bg-gray{
    background-color: var(--color-lightgray);
}
.bg-red{
    background-color: var(--color-red);
}

.center{
    text-align: center;
}
.bold{
    font-weight: 700;
}

/* FLEX */
.flex{
    display: flex;
    flex-wrap: unset;
}
.f_column{
    flex-direction: column;
}
.f_wrap{
    flex-wrap: wrap;
}
.f_1{
    flex:1;
}
.f_align_center{
    align-items: center;
}
.f_justify_center{
    justify-content: center;
}
.f_justify_end{
    justify-content: end;
}
.f_justify_between{
    justify-content: space-between;
}

/* POSITION */
.fixed{
    position: fixed;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}

/* CONTENT */
header{
    height: 100%;
}
article.has-padding{
    padding: 6.66rem 0;
}
section{
}
.container{
    max-width: 104rem;
    margin: 0 auto;
    padding: 0 2rem;
    container-type: inline-size;
}
.snswrap{
    max-width: 330px;
    padding: 0 24px;
    margin: 2rem auto;
}
.snswrap li a {
    width: 100%;
    height: 100%;
    display: inline-block;
}
.snswrap li{
    width: 2.4rem;
    aspect-ratio: 1;
}
.snswrap li img{
    /*width: 100%;
    height: 100%;*/
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
}
.copywrap{
    margin: 3rem 0 1rem;
}
.separator{
    /* border-bottom: 2px solid var(--bd-color-lightgray); */
    /* padding: 6.66rem 0 5.2rem; */
    max-width: 104rem;
    margin: 0 auto;
    width: 100%;
    position: relative;
}
.separator::before{
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--bd-color-lightgray);
}
.bg-black .separator::before{
    background-color: var(--color-white);
}
.spacer-l{
    margin-top: 6.66rem;
}
.spacer-m{
    margin-top: 3.33rem;
}
.spacer-s{
    margin-top: 1.53rem;
}

/* Items */
.menu-bar{
    width: 100%;
    border-top: 0px solid var(--bd-color-lightgray);
    border-bottom: 1.9px solid var(--bd-color-lightgray); 
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
}
.menu-bar-head ul{
    max-width: 104rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}
.menu-bar-head li{
    position: relative;
    flex: 1 1 130px;
    border-top: 1.9px solid var(--bd-color-lightgray);
    cursor: pointer;
}
.menu-bar-head li.hide{
    display:none;
}
.menu-bar-head li > div{
    /* max-width: 130px;
    margin: 0 auto; */
}
.menu-bar-head li img{
    width: 130px;
    height: 130px;
    object-fit: contain;
    object-position: center;
}
.menu-bar-head li > div::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    opacity: 0;
    transition: all .3s ease-out;
}
.menu-bar-head li:hover > div::before{
    opacity: .7;
}
.menu-bar-head li::after,
.menu-bar-head li:first-child:before{
    content: "";
    width: 1.9px;
    height: 80%;
    position: absolute;
    top: 10%;
    background-color: var(--bd-color-lightgray);
}
.menu-bar-head li::after{
    right: -0.95px;
}
.menu-bar-head li:first-child:before{
    left: -0.95px;
}
@media screen and (min-width: 1560px) {
    .menu-bar{
        border-top: 1.9px solid var(--bd-color-lightgray);
    }
    .menu-bar-head li{
        border-top: 0px solid var(--bd-color-lightgray);
    }
}

#keyvisual section img{
    width: 100%;
    height: auto;
    line-height: 1;
}

#title-svg-1{
    height: 1.8rem;
    width: auto;
}
#title-svg-2{
    height: 3.98rem;
    width: auto;
}
.taisen{
    gap: min(9.18rem, 12.7cqw);
}
.taisen .sanen-logo,
.taisen .aite-logo{
    width: min(24.53rem,33.8cqw);
    aspect-ratio:336.5 / 267.5;
    display: flex;
    justify-content: center;
    align-items: center;
}
.taisen .sanen-logo img,
.taisen .aite-logo img{
    aspect-ratio: 336.5 / 267.5;
    object-fit: contain;
    object-position: center;
}
.taisen .sanen-logo img{
    width: 90%;
    height: 90%;
}
.taisen .aite-logo img{
    /*width: 91%;
    height:91%;*/
    width: 100%;
    height:100%;
}
.taisen .vsmark{
    width: min(5.03rem, 7cqw);
}
.taisen .vsmark img{
    
}
.game-info-wrap > div{
    width: 12.8rem;
}
.game-info-wrap > div:nth-child(2)::before,
.team30-content-wrap > div.flex > div:nth-child(n + 2)::before,
.streaming-wrap > div.flex > div:nth-child(n + 2)::before{
    content: "";
    width: 3px;
    height: 100%;
    display: block;
    background: var(--color-grade);
    position: absolute;
    top: 0;
    left: calc(50% + 1.5px);
}
.streaming-wrap > div.flex > div:nth-child(n + 2)::before{
    background: var(--color-white);
}
.game-info-wrap h2{
    width: 100%;
    margin: 1rem 0;
}
.game-info-wrap h2 img{
    height: 1.97rem;
    width: auto;
    margin: 0 auto;
}
.game-info-wrap .sponser-img{
    width: 100%;
    height: 7.2rem;
    background-color: var(--color-lightgray);
}
.game-info-wrap .sponser-img img{
    background:var(--color-white);
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
}
.game-info-wrap .sponser img.presents{
    width: auto;
    height: 0.83rem;
    margin: 1rem 0 0;
}
.game-info-wrap .date,
.team30-content-wrap .date,
.streaming-wrap .date{
    font-size: var(--font-size-65px);
    letter-spacing: -0.06em;
    line-height: 1;
    text-align:center;
}
.game-info-wrap .day span,
.team30-content-wrap .week span{
    font-size: var(--font-size-25px);
    background-color: var(--color-white);
}
.streaming-wrap .week span{
    font-size: var(--font-size-25px);
    background-color: var(--color-black);
}
.game-info-wrap .day,
.team30-content-wrap .week,
.streaming-wrap .week{
    position: relative;
    z-index: 1;
    text-align: center;
}
.game-info-wrap .day::before,
.team30-content-wrap .week::before,
.streaming-wrap .week::before{
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--color-black);
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.streaming-wrap .week::before{
    background-color: var(--color-white);
}
.game-info-wrap .day::after,
.team30-content-wrap .week::after,
.streaming-wrap .week::after{
    content: "";
    width: 5em;
    height: 1.1em;
    background-color: var(--color-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.streaming-wrap .week::after{
    background-color: var(--color-black);
}
.game-info-wrap .time-wrap,
.team30-content-wrap .team30-content,
.streaming-wrap .streaming-content{
    text-align: center;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid black;
    padding: 1rem 0;
}
.streaming-wrap .streaming-content{
    border-bottom: 2px solid white;
}
.game-info-wrap .time{
    font-size: var(--font-size-23px);
    letter-spacing: 0em;
    line-height: 1;
}
.game-info-wrap .small{
    font-size: var(--font-size-13px);
    letter-spacing: 0em;
}
.btn-contents-wrap{
    gap: 0 var(--font-size-50px);
    flex-wrap:wrap;
}
.btn-wrap{
    margin-top: 2rem;
}
.btn-wrap a{
    color: var(--color-black);
    font-size: var(--font-size-19px);
    border-radius: 3rem;
    background-color: var(--color-white);
    padding: .3em 1.5em;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 1rem transparent;
    transition: all .3s ease;
}
.btn-wrap.bg-black a{
    color: var(--color-white);
    background-color: var(--color-black);
}
.btn-wrap a:hover{
    box-shadow: 0 0 1rem rgba(0,0,0,.3);
}
.btn-wrap.bg-black a:hover{
    box-shadow: 0 0 1rem rgba(255,255,255,.5);
}
.btn-wrap a::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 3rem;
    background: var(--color-grade);
    z-index: -1;
    transition: filter .3s;
}
.btn-wrap a.black-btn{
    background-color: var(--color-black);
    color: var(--color-white);
}
.place-wrap{
    margin-top: 4.66rem;
    padding-bottom: 6.66rem;
}
.place-wrap img{
    height: 4.28rem;
    width: auto;
    margin-bottom: 1.7rem;
}
.page-header{
    margin-bottom: 2rem;
}
.page-header img{
    height: 2.02rem;
    width: auto;
}
.page-header span{
    font-size: 1rem;
    letter-spacing:0.03em;
}
.preview-text{
    text-align: center;
    margin-top: 2rem;
}
.preview-text h3{
    font-size: var(--font-size-23px);
    font-weight: 700;
    margin-bottom: .5rem;
}
.preview-text p{
    line-height: 2;
    font-weight: 700;
}
article .preview-text:first-of-type{
    margin-top: 0rem;
}
.mascot{
    margin-top: 2rem;
}
.mascot img{
    max-width: 11.9rem;
}
.btn-image img{
    max-width: 500px;
    width: 90%;
}
article .accordion-wrap{
    margin-top: 2rem;
    max-width: 75.33rem;
    margin: 0 auto;
    position: relative;
    /*background: var(--color-lightgray);
    border-radius: 2.5rem;*/
}
article .accordion-wrap:first-of-type{
    margin-top: 0;
}
.accordion-title{
    /*border-radius: 5rem;
    background-color: var(--color-black);*/
    background-color: transparent;
    position: relative;
    cursor: pointer;
    z-index: 3;
}
/* .accordion-title::after{ */
.accordion-wrap::after{
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 2.5rem;
    background: var(--color-grade);
    z-index: 1;
}
.accordion-wrap.open::after{
    background: var(--color-grade-reverse);
}
.accordion-wrap::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 2.3rem;
    z-index: 2;
    background-color: var(--color-lightgray);
}
#ticket .accordion-wrap::before{
    background-color: var(--color-white);
}
#ticket .accordion-content::before{
    content:"";
    position: absolute;
    top:0;
    left:2.5rem;
    width:calc(100% - 5rem);
    height:2px;
    background: var(--bd-color-lightgray);
}
.accordion-title > h3{
    font-size: var(--font-size-30px);
    font-weight: normal;
    padding: 1.3rem calc(2rem + 1em + 60px) 1.3rem 2rem;
    border-radius: 2.3rem;
    background-color: var(--color-black);
    line-height: 1;
    transition: border-radius .3s;
}
.accordion-title.open > h3{
    border-radius: 2.3rem 2.3rem 0 0;
}
.accordion-title.bg-white > h3{
    background-color: var(--color-white);
    color: var(--color-black);
}
.accordion-title > h3 span.toggle-btn{
    position: absolute;
    right: 2rem;
    width: 60px;
    height: 60px;
    top: calc(50% - 30px);
    background-color: transparent;
    transition: all .3s ease;
    border-radius: 50%;
}
.accordion-title > h3:hover span.toggle-btn{
    background-color: rgba(255,255,255,.13);
}
.accordion-title > h3 span.toggle-btn::before,
.accordion-title > h3 span.toggle-btn::after{
    content: "";
    background: white;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all .3s ease;
}
.accordion-title.bg-white > h3 span.toggle-btn::before,
.accordion-title.bg-white > h3 span.toggle-btn::after{
    background: var(--color-black);
}
.accordion-title.bg-white > h3:hover span.toggle-btn{
    background-color: rgba(0,0,0,.05);
}
.accordion-title > h3 span.toggle-btn::before{
    width: 3px;
    height: 30px;
}
.accordion-title > h3 span.toggle-btn::after{
    width: 30px;
    height: 3px;
}
.accordion-title.open > h3 span.toggle-btn::before{
    transform: translate(-50%, -50%) rotate(-90deg);
}
.accordion-title.open > h3 span.toggle-btn::after{
    transform: translate(-50%, -50%) rotate(180deg);
}
.accordion-content{
    position: relative;
    top:-2.5rem;
    background-color: var(--color-lightgray);
    font-size: var(--font-size-25px);
    border-radius: 0 0 2.3rem 2.3rem;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 6rem;
    padding-right: 6rem;
    height: 0;
    line-height: 0;
    overflow: hidden;
    transition: all .3s;
    z-index:2;
}
#ticket .accordion-content{
    background-color:var(--color-white);
}
.accordion-content.open{
    height: auto;
    padding-top: 5rem;
    padding-bottom:5rem;
    line-height: 1.7;
    top:0;
}
.accordion-content li{
    /* padding: 2.3rem 0; */
}
.accordion-content li .schedule-time{
    position: relative;
}
.accordion-content li .schedule-time.endofgame{
    margin-top: 3rem;
}
.accordion-content li .schedule-time p{
    letter-spacing: 0em;
    display: inline-block;
    background-color: var(--color-lightgray);
    position: relative;
    z-index: 10;
    padding-right: 2rem;
}
.accordion-content li .schedule-time::after{
    content: "";
    position: absolute;
    background: var(--color-black);
    height: 2.7px;
    top: calc(50% - (2.7px / 2));
    left: 0;
    width: 100%;
}
.accordion-content li .schedule-time.tipoff::after{
    background: var(--color-grade);
}

.schedule-content{
    padding: 2.3rem 0;
    margin-left: 7.3rem;
}
.card-list-wrap{
    max-width: 90rem;
    margin: 0 auto;
    position: relative;
}
.card-list{
    gap: var(--font-size-25px);
}
.card-list li{
    width: calc(var(--font-size-25px) * 10);
    transition: all .3s;
    display:flex;
    flex-direction:column;
    overflow-wrap: break-word;
}
.card-img{
    width: 100%;
    aspect-ratio: 16 / 9;
}
.card-img img{
    aspect-ratio: 16 / 9;
    /*width: 100%;
    height: 100%;*/
    object-fit: contain;
    object-position: center;
}
.card-list .card-content{
    padding: 1.5rem 1rem 1rem;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}
.card-list .corp-name{
    font-size: var(--font-size-13px);
    margin-bottom: 1rem;
}
.card-list .card-title{
    font-size: 1rem;
    /* height: 3.5rem; */
    padding: 0rem 0 .5rem;
}
.card-list .card-text{
    font-size: var(--font-size-10px);
}
.card-list .link-btn{
    cursor: pointer;
    padding: 1rem 0 1rem;
    margin: .5rem -1rem -1rem;
    transition: all .3s;
    margin-top:auto;
}
.card-list .link-btn:hover{
    background-color: rgba(10,10,10,.1);
}
.card-list .link-btn > *{
    color: var(--color-red);
    font-size: var(--font-size-13px);
    font-weight: bold;
    
}
.card-list .bg-red .link-btn > *{
    color:white;
}
.splide .card-list{
    gap: unset;
}
.splide__arrows button{
    position: absolute;
    top: 43%;
    width: var(--font-size-50px);
    height: var(--font-size-50px);
    transform: translate(-50% , 0);
    z-index: 2;
    border: 0;
    border-radius: 50%;
    background: url('/files/user/LP/2025-26/GameLp/arrow.svg') no-repeat;
    transition: all .3s;
    cursor: pointer;
}
.splide__arrows button:hover{
    box-shadow: 0 0 8px rgba(0,0,0,.3);
}
.splide__arrows button svg{
    display: none;
}
.splide__arrows button.splide__arrow--prev{
    left: 0;
}
.splide__arrows button.splide__arrow--next{
    right: -25px;
    transform: rotate(-180deg);
}
.splide__pagination{
    gap: var(--font-size-10px);
    margin-top: var(--font-size-50px);
}
.splide__pagination li{
    max-width: var(--font-size-30px);
    width: 100%;
    aspect-ratio: 3 / 1;
    line-height: 0;
}
.splide__pagination button{
    background-color: var(--color-lightgray);
    width: 100%;
    height: 100%;
    border: none;
}
.splide__pagination button.is-active{
    background-color: var(--color-red);
}
.splide:not( .is-overflow ) .splide__list {
  justify-content: center;
}
.splide:not( .is-overflow ) .splide__slide:last-child {
  margin: 0 !important;
}
.team30-content-wrap{
    margin-top: calc(var(--font-size-50px) * 2);
}
.team30-content-wrap:first-of-type{
    margin-top: 0;
}
.team30-content-wrap h3{
    font-size: var(--font-size-23px);
}
.team30-content div > p{
    font-weight: bold;
}
.team30-content div > p:nth-child(1),
.streaming-content div > p:nth-child(1){
    font-size: var(--font-size-13px);
}
.team30-content div > p:nth-child(2),
.streaming-content div > p:nth-child(2){
    font-size: var(--font-size-23px);
}
.team30-content div:nth-child(n+2),
.streaming-content div:nth-child(n+2){
    margin-top: 1rem;
}
.game-info-wrap,
.team30-content-wrap > div.flex,
.streaming-wrap > div.flex{
    gap: clamp(6%,30vw,20rem);
    position: relative;
}
.game-info-wrap > div, .team30-content-wrap > div.flex > div, .streaming-wrap > div.flex > div {
    display:flex;
    flex-direction:column;
}
.team30-content-wrap .small{
    font-size: var(--font-size-10px);
    margin-top: 2rem;
}
.team30-content-wrap .team30-content,
.streaming-wrap .streaming-content{
    flex-grow:1;
}
.googlemap-wrap{
    width: 100%;
    aspect-ratio: 16 / 9;
}
.googlemap-wrap iframe{
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}
.access-title h3{
    font-size: var(--font-size-23px);
}
.access-image-wrap{
    width:100%;
    max-width: 52rem;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
    position: relative;
    border: 1px solid white;
}
.access-image-wrap img{
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}
.access-way .access-way-title{
    height: var(--font-size-23px);
    width: auto;
    margin: var(--font-size-19px) 0 var(--font-size-30px);
}
.access-way h4 > div{
    border-bottom: 1px solid var(--color-white);
    height: 4.66rem;
    display: flex;
    justify-content: center;
    align-items: end;
}
.access-way.train .access-icon{
    width: 5.53rem;
    height: auto;
}
.access-way.bus .access-icon{
    width: 5.33rem;
    height: auto;
}
.access-way.parking .access-icon{
    width: 3.98rem;
    height: auto;
}
.access-way{
    width: min(30vw, 420px);
    letter-spacing: .05em;
    display: flex;
    flex-direction: column;
}
.access-way-wrap{
    align-items: stretch;
    gap: min(50px, 4vw);
}
.access-way-wrap .small{
    font-size: var(--font-size-10px);
    margin-top: 1rem;
}
.bg-black .link-red{
    color: var(--color-link-red);
}
.access-way .grid{
    /* display: grid;
    grid-template-rows: minmax(1rem, 5rem) 1fr; */
    display: flex;
    flex-direction: column;
}
.kv-wrap{
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}
.kv-wrap::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    background: var(--color-grade);
}
.ticket-img-wrap{
    width: 100%;
    max-width: 66.66rem;
    margin: 0 auto;
}

footer .footer_logo{
    width: 8.8rem;
    margin: 0 auto;
}
footer .snshead{
    width: 6.86rem;
    margin: 2rem auto 0;
}
.gototop{
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 4.86rem;
    aspect-ratio: 1;
    cursor: pointer;
    z-index: 101;
}
.ticketLinkWrap{
    position: fixed;
    bottom: 24px;
    right: calc(24px + 4.86rem + min(2.3rem, 10vw));
    width: 13.33rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #000;
    z-index: 101;
}
.ticketLinkWrap::before{
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: var(--color-grade-circle);
    z-index: -1;
}
.ticketLinkWrap::after{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 50%;
    background: black;
    z-index: -1;
}
.ticketLinkWrap .icon-wrap{
    width: 4.66rem;
    margin: 2rem auto 0;
}
.ticketLinkWrap > p{
    font-size: var(--font-size-13px);
    line-height: 1.3;
    margin: .8rem 0 .5rem;
}
.ticketLinkWrap .ticket-link{
    width: calc(6.66rem - 0rem);
    border-radius: 5rem;
    background-color: var(--color-white);
    text-align: center;
    margin: 0 auto;
    line-height: 1.3;
}
.ticketLinkWrap .ticket-link a{
    color: var(--color-black);
    font-weight: 700;
    font-size: var(--font-size-13px);
    letter-spacing: 0;
    vertical-align: unset;
    line-height: 1;
    padding: 0rem .5rem;
    /* display: inline-block; */
}
.ticketLinkWrap .ticket-link:nth-child(2){
    margin-top: 8px;
}
.sp-menu-toggle-btn{
    display: none;
    position: absolute;
    top: 0;
    right: 1rem;
    width: 50px;
    height: 50px;
    z-index:111;
}
.sp-menu-toggle-btn::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background-image: var(--color-grade-circle);
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: border-box;

    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
    transition: transform .3s ease-in-out;
}
.menu-bar.open .sp-menu-toggle-btn::before{
    transform: translate(-50%, -50%) rotate(180deg);
}
.sp-menu-toggle-btn span{
    display: inline-block;
    position: absolute;
    width: 50%;
    height: 2px;
    background: black;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    left: 50%;
    transition: all .3s;
}
.sp-menu-toggle-btn span:nth-child(1){
    top: calc(50% - 3px);
}
.sp-menu-toggle-btn span:nth-child(2){
    top: calc(50% + 3px);
}
.menu-bar.open .sp-menu-toggle-btn span:nth-child(1){
    transform: rotate(30deg);
    top: 48%;
    left: 26%;
}
.menu-bar.open .sp-menu-toggle-btn span:nth-child(2){
    transform: rotate(-30deg);
    top: 48%;
    left: 26%;
}
.sp-menu-bk{
    position: absolute;
    margin: 0px;
    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;
}
.sp-menu-bk.sp_menu_open{
    opacity: 1;
    margin: -20px;
    z-index: 99;
}
#modal{
    position: fixed;
    top: 0;
    left: 0;
    right:0;
    bottom:0;
    z-index: -1;
    opacity:0;
    overscroll-behavior: contain;
    overflow-y: scroll;
}
#modal.open{
    opacity:1;
    z-index: 200;
}
#modal .modalWrap{
    width: 100%;
    height: 100%;
    position: relative;
    display:flex;
    justify-content:center;
    align-items:center;
}
#modal .modal-bk{
    width: 100%;
    height: 100%;
    position: absolute;
    top: -100vh;
    left: 0;
    background: var(--color-white);
    z-index: 1;
    opacity: .95;
    top .3s cubic-bezier(1, 0, 0, 1);
}
#modal .modal-bk.open{
    top:0;
}
#modal .modal_content-wrap{
    width:100%;
    max-height:calc(100% - 0px);
    max-width: 1200px;
    margin: 0 auto;
    overflow: auto;
    position:relative;
    z-index:2;
    opacity:0;
    transition: opacity .3s;
}
#modal .modal_content-wrap.open{
    opacity:1;
}
#modal .closeBtn{
    position:absolute;
    width:40px;
    height:40px;
    border-radius:50%;
    border:2px solid var(--color-black);
    color:black;
    font-size: 1.7rem;
    right:0;
}
#modal .closeBtn span{
}
#modal .closeBtn span::before,
#modal .closeBtn span::after{
    content:'';
    width:60%;
    height:2px;
    display:block;
    top:50%;
    left:50%;
    position:absolute;
    background:#000;
}
#modal .closeBtn span::before{
    transform:translate(-50%, -50%) rotate(30deg);
}
#modal .closeBtn span::after{
    transform:translate(-50%, -50%) rotate(-30deg);
}
#modal .modal_content{
    width:min(1200px,100%);
    min-height:100px;
    margin: 0 auto;
    overflow-wrap: break-word;
}
#modal .modal_content > div{
    padding:1.5rem;
    font-size:1.2rem;
}
#modal .modal_image{
    width:min(1200px,100%);
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    background:#000;
    margin-top:52px;
}
#modal .modal_image img{
    /*width:100%;
    height:100%;*/
    aspect-ratio: 16 / 9;
    object-fit:contain;
    object-position:center;
}
#modal .modal_title{
    font-size:1.5rem;
    padding-top:1rem;
    padding-bottom:2rem;
}
.youtube-wrap{
    width:100%;
    aspect-ratio:16 / 9;
}
.youtube-wrap > iframe{
    width:100%;
    height:100%;
    vertical-align: middle;
}
@media screen and (max-width: 1200px) {
    #modal .modal_image {
        margin-top:48px;
    }
    #modal .closeBtn {
        position: fixed;
        width: 100%;
        height: 48px;
        top: 0;
        left: 0;
        border: 0;
        background:var(--color-lightgray);
        border-radius:0;
    }
    #modal .closeBtn span {
       position: absolute;
        right: 4px;
        width: 36px;
        height: 35px;
        top: 4px;
        border-radius: 50%;
        border: 2px solid;
    }
    #modal .modalWrap {
        display:block;
    }
    
}
@media screen and (max-width: 768px) {
    html,body{
        font-size:13px;
    }
    #top_main{
        position: relative;
        overflow: hidden;
    }
    .container{
        padding: 0 1.5rem;
    }
    .menu-bar{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 200;
        width: 100%;
        height: 50px;
    }
    .menu-bar::before{
        /*content: "";
        width: auto;
        height: 50px;
        background: url('/files/user/LP/2025-26/logo-black.svg') no-repeat;
        background-size: auto 80%;
        background-position: center left;
        margin-left: 1rem;
        display: block;
        position:relative;
        z-index:110;*/
    }
    .menu-bar::after{
        content: "";
        width: 100%;
        height: 50px;
        position: absolute;
        top: 0;
        left: 0;
        background-color: var(--color-white);
        z-index: 109;
    }
    .menu-bar header{
        position: absolute;
        top: -600px;
        left: 0;
        width: 100%;
        height: auto;
        max-height:calc(100vh - 50px);
        overflow-y:auto;
        background-color: var(--color-white);
        padding-bottom: 1rem;
        opacity: 0;
        transition: top .3s ease-in-out, opacity .3s;
        transition-delay: .1s;
        z-index: -1;
    }
    .menu-bar.open header{
        top: 50px;
        opacity: 1;
        z-index: 50;
    }
    .sp-menu-toggle-btn{
        display: inline-block;
    }
    #keyvisual{
        margin-top: 50px;
    }
    .taisen{
        gap:2cqw;
    }
    .taisen .sanen-logo, .taisen .aite-logo {
        width:43cqw;
    }
    .taisen .vsmark {
        width:10cqw;
    }
    .game-info-wrap, .team30-content-wrap > div.flex, .streaming-wrap > div.flex {
        gap:10vw;
    }
    .game-info-wrap > div,
    .team30-content-wrap > div.flex > div, .streaming-wrap > div.flex > div{
        width:47%;
        max-width: 12.8rem;
        container-type: inline-size;
    }
    .game-info-wrap > div:nth-child(2)::before{

    }
    .date-wrap{
        container-type: inline-size;
    }
    .game-info-wrap .date, .team30-content-wrap .date, .streaming-wrap .date {
        font-size: 30cqw;
    }
    .game-info-wrap .day span, .team30-content-wrap .week span {
        font-size: 12cqw;
    }
    .accordion-title > h3 {
        font-size: min(4.6cqw, 1.3rem) !important;
        line-height: 1.7;
        padding: .5em 2em .5em 1em;
        letter-spacing: .01em;
    }
    .accordion-title > h3 span.toggle-btn {
        right:0em;
    }
    .accordion-title > h3 span.toggle-btn {
        width: 40px;
        height: 40px;
        top: calc(50% - 20px);
    }
    .accordion-title > h3 span.h-bar {
        margin-right:-.3em;
    }
    .accordion-title > h3 span.toggle-btn::before {
        width: 2px;
        height: 20px;
    }
    .accordion-title > h3 span.toggle-btn::after {
        width: 20px;
        height: 2px;
    }
    .accordion-content {
        padding-top: 0em;
        padding-bottom: 0em;
        padding-left: 1em;
        padding-right: 1em;
        font-size: min(4.6cqw, 1.3rem) !important;
    }
    .accordion-content.open {
        padding-top: 2em;
        padding-bottom: 2em;
    }
    .card-list {
        gap: 2cqw 1cqw;
    }
    .card-list li {
        width: min(48cqw, calc(var(--font-size-25px) * 10));
    }
    .access-way-wrap {
        flex-direction: column;
        align-items: center;
    }
    .access-way {
        width: 100%;
    }
    .schedule-content {
        padding: 1rem 0 2.5rem;
        margin-left: 0;
    }
    .ticketLinkWrap{
        bottom: 0;
        width: calc(100% - 50px);
        height: 50px;
        border-radius: 0;
        left: 0;
        display: flex;
        z-index:90;
    }
    .ticketLinkWrap .icon-wrap {
        width: 20%;
        height: 100%;
        margin: 0;
    }
    .ticketLinkWrap .icon-wrap img{
        width:100%;
        height:80%;
        object-fit:contain;
        object-position:center;
        margin-top: 5px;
    }
    .ticketLinkWrap > p {
        margin: auto 0;
        padding-left:1rem;
    }
    .ticket-linkbox{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin-left: 1rem;
        margin-right: 1.7rem;
        flex-grow: 1;
    }
    .ticketLinkWrap .ticket-link {
        width:100%;
    }
    .gototop {
        z-index:90;
        bottom:0;
        right:0;
        width:40px;
        height:40px;
        padding:5px;
        background:var(--color-black);
    }
    .ticketLinkWrap::before,
    .ticketLinkWrap::after {
        content:unset;
    }
    .ticketLinkWrap .ticket-link:nth-child(2) {
        margin-top:0;
    }
    .footer_wrap{
        padding-bottom:70px;
    }
    .game-info-wrap h2 img {
        height:1.65rem;
    }
    .game-info-wrap .time,
    .team30-content div > p:nth-child(2), .streaming-content div > p:nth-child(2) {
        font-size:10.5cqw;
    }
    .game-info-wrap .small,
    .team30-content div > p:nth-child(1), .streaming-content div > p:nth-child(1) {
        font-size:6cqw;
    }
    .btn-wrap a {
        font-size:14px;
    }
    .menu-bar-head li {
        width:min(30cqw,130px);
        height:min(30cqw,130px);
        flex:1 1 min(30cqw,130px);
    }
    .menu-bar-head li img{
        width:min(30cqw,130px);
        height:min(30cqw,130px);
    }
}

.players-wrap{
    position:relative;
}
.players-wrap svg{
    display: block;
    position: absolute;
    top: 12.5%;
    width: 87%;
    left: 6%;
    opacity: 0;
}
.players-wrap .player{
    cursor:pointer;
}
.roster-list{ 
}
.player-img{
    position:absolute;
    opacity:0;
    transition:all .2s;
}
.player-img.show{
    opacity:1;
}
.player-img img{
    
}
#player-1{
    top: 13.6%;
    right: 33.34%;
    width: 10.92%;
}
#player-2{
    top: 16.03%;
    left: 13.3%;
    width: 12.36%;
}
#player-4{
    top: 14.6%;
    width: 13.65%;
    right: 18.1%;
}
#player-5{
    top: 19.2%;
    left: 32.94%;
    width: 10.54%;
}
#player-10{
    width: 14.97%;
    right: 23.09%;
    top: 16.06%;
}
#player-11{
    top: 15.3%;
    left: 5.64%;
    width: 10.17%;
}
#player-14{
    width: 9.71%;
    left: 38.26%;
    top: 15.4%;
}
#player-15{
    top: 13.3%;
    left: 20.92%;
    width: 10.63%;
}
#player-20{
    top: 18.9%;
    right: 13.8%;
    width: 10.99%;
}
#player-21{
    width: 10.91%;
    top: 15.28%;
    right: 7.46%;
}
#player-24{
    top: 19.41%;
    left: 51.7%;
    width: 13.97%;
}
#player-28{
    top: 15.9%;
    left: 26.5%;
    width: 9.11%;
}
#player-hc{
    top: 14.9%;
    left: 44.6%;
    width: 11.33%;
}