@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700;900&display=swap');
/*==============
    common
===============*/
:root {
    /* color */
    --font-color: #fff;
    --SubColor: #ff1d2f;

    /* font */
    --en : 
    "Russo One", sans-serif;
    --ja :
    'Noto Sans JP', sans-serif;
    --number : 
    'Roboto', sans-serif;
}
::selection {
    background: var(--SubColor);
    color: white;
}
::-moz-selection {
    background: var(--SubColor);
    color: white;
}
html{
    font-size: 10px;
    scroll-behavior: smooth;
}
img{
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    image-rendering: -webkit-optimize-contrast;
}
/* fade */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
body {
    font-size: 1.6rem;
    font-family: var(--ja);
    font-weight: 500;
    color: var(--font-color);
    animation: fadeIn 4s forwards;
    background: #000;
    font-weight: 700;
}
a{
    text-decoration: none;
    color: initial;
    transition: 0.4s all;
    color: var(--font-color);
}
.pc{
    display: block;
}
.sp{
    display: none;
}
.wrap{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.flex{
    display: flex;
}
.PudlrCenter{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.PudCenter{
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.PlrCenter{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    height: 64.89vh;
    object-fit: contain;
}
article.star-bg{
    position: relative;
}
article.star-bg::after{
    content: "";
    position: absolute;
    background-image: url(../../assets/img/bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    position: fixed;
    z-index: -999;
    background-size:cover;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}
article.star-bg::before {
    content: "";
    position: absolute;
    top: -39px;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgb(0 0 0), transparent);
    filter: blur(20px);
    z-index: -1;
}
@media screen and (max-width: 900px){
    .wrap {
        width: 90%;
    }
}
@media screen and (max-width: 768px){
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    article.star-bg::after{
        background-image: url(../../assets/img/bg-sp.jpg);
    }
    article.star-bg::before {
        content: "";
        position: absolute;
        top: -39px;
        left: 0;
        width: 100%;
        height: 180px;
        background: linear-gradient(to bottom, rgb(0 0 0), transparent);
        filter: blur(20px);
    }
}
/*==============
    common parts
===============*/
/* more */
.btn{
    width: 50.25%;
}

.btn a,
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a{
    position: relative;
    overflow: hidden;
    display: block;
    border: solid 2px #ffffff;
    padding: 12px 0;
    line-height: 1;
    text-align: center;
}
.btn a i,
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a i {
    position: relative;
    z-index: 3;
    color: #ffffff;
    -webkit-transition: all 200ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 200ms cubic-bezier(0.77, 0, 0.175, 1);
    font-family: var(--en);
    font-weight: bold;
    font-size: 1.8rem;
}
.btn a:before,
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--SubColor);
    -webkit-transition: all 200ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 200ms cubic-bezier(0.77, 0, 0.175, 1);
}
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a:before{
    background: var(--SubColor);
    z-index: -1;
}
.btn a:after,
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #ffffff;
    z-index: 2;
    -webkit-transition: all 200ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 200ms cubic-bezier(0.77, 0, 0.175, 1);
}
.btn a:hover,
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a:hover {
    opacity: 1;
    border: solid 2px #ffffff;
    color: #000;
}
.btn a:hover i,
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a:hover {
    color: #fff;
}
.btn a:hover:before,
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a:hover:before {
    right: 0;
}
.btn a:hover:after,
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a:hover:after {
    width: 42px;
    background: var(--SubColor);
}
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a:hover:after{
    background: #fff;
}
h3 span{
    font-size: clamp(4rem, 10.666vw, 4.8rem);
    font-family: var(--en);
    line-height: 0.7;
    position: relative;
    padding: 0 250px;
    text-shadow: 0 0 7px rgba(255, 255, 255, 0.5);
}
h3 span::before,
h3 span::after{
    content: " ";
    background-image: url(../../assets/img/parts01.png);
    background-size: contain;
    width: 227px;
    height: 20px;
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-repeat: no-repeat;
}
h3 span::after{
    right: 0%;
    left: 0%;
    top: 43%;
    transform: scaleX(-1);
}
h3.center{
    text-align: center;
    margin-bottom: 24px;
}
/* left-head */
h3.left{
    text-align: left;
    margin-bottom: 24px;
    overflow: hidden;
}
h3.left span{
    padding-left: 0;
}
h3.left span::after{
    display: none;
}
/* special */
h3.special span::before,
h3.special span::after{
    content: " ";
    background-image: url(../../assets/img/parts02.png);
    background-size: contain;
    width: 176px;
    height: 26px;
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-repeat: no-repeat;
}
h3.special span::after{
    right: 0%;
    left: 0%;
    top: 55%;
}
h3.special span{
    font-size: clamp(4rem, 12.5vw, 4.8rem);
    font-family: var(--en);
    line-height: 1;
    position: relative;
    padding: 0 188px;
}
@media screen and (max-width: 1030px){
    .btn {
        width: 100%;
    }
    h3.special span::before, h3.special span::after {
        display: none;
    }
    h3.special span {
        padding: 0 ;
    }
}
@media screen and (max-width: 768px){
    h3.special span::before, h3.special span::after {
        width: 19.56%;
        background-size: cover;
    }
    h3 span::before,
    h3 span::after{
        background-size: cover;
        background-position: right;
        height: 17px;
    }
}
@media screen and (max-width: 500px){
    h3.special span {
        padding: 0 !important;
        line-height: 0.9;
    }
    h3 span::before,
    h3 span::after{
        height: 20px;
    }
}
/*==============
    header
===============*/
header{
    position: fixed;
    z-index: 100;
}
header .headWrap{
    width: 100%;
    padding-top: 30px;
    position: fixed;
    z-index: 100;
    top: 0;
}
header .headWrap .expg{
    padding-left: 2.5%;
    width: 6.74%;
}
header .headWrap .expg img{
    width: 100%;
}
header .headWrap .navi{
    width: 78.95%;
    justify-content: end;
    padding-top: 20px;
    gap: 4.31%;
    margin-right: 155px;
}
header .headWrap .navi li a{
    font-family: var(--en);
    font-size: 1.8rem;
}
header .headWrap .ticket-LInk{
    position: absolute;
    top: 0;
    right: 0;
}
header .headWrap .ticket-LInk a{
    width: 124px;
    height: 44px;
    display: flex;
    justify-content: center;
    background: -moz-linear-gradient(0deg, #500a0e 0%, #881c21 20%, #c71f23 50%, #881c21 85%, #500a0e 100%);
    background: -webkit-linear-gradient(0deg, #500a0e 0%, #881c21 20%, #c71f23 50%, #881c21 85%, #500a0e 100%);
    background: -ms-linear-gradient(0deg, #500a0e 0%, #881c21 20%, #c71f23 50%, #881c21 85%, #500a0e 100%);
    background: linear-gradient(0deg, #500a0e 0%, #881c21 20%, #c71f23 50%, #881c21 85%, #500a0e 100%);
    font-family: var(--en);
    font-size: 1.8rem;
    padding-top: 80px;
    position: relative;
    pointer-events: none;
}
header .headWrap .ticket-LInk a:hover {
    opacity: 0.8;
}
header .headWrap .ticket-LInk a::before{
    content: " ";
    background-image: url(../../assets/img/ticket.png);
    background-size: contain;
    width: 53px;
    height: 53px;
    position: absolute;
    z-index: 2;
    top: 25px;
}
header .headWrap .ticket-LInk a::after{
    content: "";
    position: absolute;
    width: 124px;
    height: 124px;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
/* hover */
header .headWrap .navi li a:hover{
    color: var(--SubColor);
}
/*==============
    main
===============*/
#main {
    position: relative;
    z-index: 10;
}
#main .main-visual{
    position: relative;
    /* padding-top: 680px;
    margin-top: 130px; */
    height: 100vh;
}
#main h2{
    font-size: clamp(1.4rem, 4.375vw, 2rem);
    line-height: 2;
    text-align: center;
}
@media screen and (max-width: 900px){
#main h2 {
    width: 90%;
    margin: 0 auto;
}
    #main .main-visual {
        height: 70vh;
        margin-top: 10vh;
    }
}
@media screen and (max-width: 768px){

}
@media screen and (max-width: 420px){
    #main .main-visual {
        height: 50vh;
    }
}
/*==============
    lead
===============*/
#lead{}
#lead .mainLead{
    font-size: clamp(2.5rem,6.666vw,4rem);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 7px rgba(255, 255, 255, 0.6);
}
#lead .subLead{
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
    width: 90%;
    margin: 0 auto;
}
/*==============
    point
===============*/
/* slide */
#point{
    overflow: hidden;
    padding: 110px 0 0 0;
}
/* slide-inner */
#point .slideInner{
    align-items: center;
}
#point .slideInner .left{
    width: 37.34%;
}
#point .slideInner .left .whatexpg{
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 1.4rem;
    padding: 8px 16px;
    position: relative;
    margin: 0 0 20px 120px;
    font-weight: 900;
    font-family: var(--en);
}
#point .slideInner .left .whatexpg::before{
    content: "01";
    position: absolute;
    left: -110px;
    font-weight: bold;
    color: #000;
    font-size: 50px;
    -webkit-text-stroke: 1px white;
    bottom: 0;
    font-family: var(--en);
    font-size: 8rem;
    line-height: .7;
}
#point .slideInner .left .head{
    font-size: clamp(1.8rem, 5.625vw, 2.4rem);
    color: var(--SubColor);
    line-height: 1.5;
    margin-bottom: 20px;
}
#point .slideInner .left .head span{
    font-size: clamp(1.4rem, 4.375vw, 1.8rem);
}
#point .slideInner .left .detail{
    margin-bottom: 20px;
}
#point .slideInner .right{
    width: 62.66%;
}
#point .slideInner .right span{
    width: auto;
    height: 460px;
    background-image: url(../../assets/img/slide01.jpg);
    background-size: cover;
    clip-path: polygon(19% 0, 100% 0%, 82% 100%, 0% 100%);
    display: block;
}
@media screen and (max-width: 768px){
    #point{
        overflow: hidden;
        padding: 80px 0 0 0;
    }
}
@media screen and (max-width: 1000px){
    #point .slideInner {
        flex-wrap: wrap;
        width: 90%;
        margin: 0 auto;
    }
    #point .slideInner .left {
        width: 100%;
        order: 2;
        margin-top: -32px;
    }
    #point .slideInner .right {
        width: 100%;
    }
    #point .slideInner .right span {
        clip-path: initial;
        height: 320px;
        background-position: center;
    }
}
/*==============
    schedule
===============*/
#schedule{
    padding-top: 160px;
}
#schedule .coming-soon p {
    font-size: 3rem;
    font-family: var(--en);
    text-align: center;
    margin-top: 40px;
}
/* accordion */
.accordion {
    max-width: 905px;
    margin: 0 auto;
}
.accordion__item {
    border: 1px solid var(--SubColor);
    margin-top: 24px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
}
.accordion__title,
#sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox{
    position: relative;
    padding: 20px 60px 20px 40px;
    font-weight: bold;
    cursor: pointer;
    align-items: center;
}
.accordion__title::before,
.accordion__title::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-color: var(--SubColor);
    width: 20px;
    height: 2px;
    transition: all 0.3s;
}
.accordion__title::after {
    transform: rotate(90deg);
}
.accordion__title .days,
#sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox .days{
    font-family: var(--en);
    font-size: clamp(1.4rem, 3.73vw, 1.8rem);
    line-height: 0.8;
    background: #fff;
    color: #000;
    padding: 10px;
    margin-right: 32px;
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.6);   
}
.accordion__title .days span,
#sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox .days span{
    font-size: clamp(1rem, 2.666vw, 1.2rem);
    padding-left: 5px;
}
.accordion__title .performance,
#sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox .performance{
    font-family: var(--en);
    font-size: clamp(1.8rem, 4.8vw, 3rem);
    color: var(--SubColor);
    margin-right: 24px;
}
.accordion__title .performance{
    color: var(--font-color);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}
.accordion__title .venue,
#sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox .venue{
    font-size: clamp(1.4rem, 4.375vw, 1.8rem);
    color: var(--SubColor);
}
/* innner */
.accordion__content {
    padding: 20px 24px;
    background: #fff;
    display: none;
    cursor: pointer;
    color: #000;
    position: relative;
}
.accordion__content.is-open {
    display: block;
}
.accordion__content .inner .container01{
    width: 10.3%;
    font-family: var(--en);
}
.accordion__content .inner .container01 .days{
    font-family: var(--en);
    font-size: clamp(1.6rem, 2.343vw, 2.5rem);
    display: inline-block;
    text-align: center;
}
.accordion__content .inner .container01 .days span{
    display: block;
    font-size: clamp(1rem, 2.666vw, 1.4rem);
    text-align: center;
}
.accordion__content .inner .container02{
    width: 24.56%;
}
.accordion__content .inner .container02 .time-wrap{
    align-items: end;
}
.accordion__content .inner .container02 .time-wrap:last-child{
    margin-top: 5px;
}
.accordion__content .inner .container02 .time-wrap .open,
.accordion__content .inner .container02 .time-wrap .start{
    font-family: var(--en);
    font-size: 1.8rem;
    display: inline-block;
    text-align: center;
    position: relative;
    padding-left: 47px;
}
.accordion__content .inner .container02 .time-wrap .start{
    margin-left: 10px;
}
.accordion__content .inner .container02 .time-wrap .open::before{
    content: "OPEN";
    font-size: 1rem;
    border: 1px solid;
    padding: 2px 4px;
    position: absolute;
    left: 0;
    bottom: 2px;
}
.accordion__content .inner .container02 .time-wrap .start::before{
    content: "START";
    font-size: 1rem;
    border: 1px solid;
    padding: 2px 4px;
    position: absolute;
    left: 0;
    bottom: 2px;
}
.accordion__content .inner .container03{
    width: 44.32%;
}
.accordion__content .inner .container03 dl dt{
    font-size: 1.3rem;
    width: 100%;
    max-width: 110px;
}
.accordion__content .inner .container03 dl dd{
    font-size: 1.3rem;
    line-height: 1.2;
    display: inline-block;
}
.accordion__content .inner .container03 dl dd a {
    color: var(--SubColor);
}
.accordion__content .inner .container03 dl dd a:hover {
    color: var(--SubColor);
}
.accordion__content .inner .container03 dl dd span{
    font-size: 1.1rem;
}
.accordion__content .inner .container04{
    width: 20.7%;
}
.accordion__content .inner .container04 a{
    background: var(--SubColor);
    padding: 10px;
    font-size: 1.4rem;
    display: block;
    text-shadow: 0px 1px 4.2px rgba(38, 53, 111, 0.3);
}
.accordion__item.is-active .accordion__title::before {
    transform: rotate(180deg);
}
.accordion__item.is-active .accordion__title::after {
    transform: rotate(180deg);
    opacity: 0;
}
.comming::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    border-top: 1px solid var(--SubColor);
    z-index: 1;
    top: 0;
    right: 0;
}
.comming::after{
    content: "COMING SOON...";
    position: absolute;
    color: #fff;
    font-family: var(--en);
    font-size: clamp(2rem,5.333vw,2.4rem);
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;    
}
@media screen and (max-width: 1000px){
    #schedule .center.pc{
        display: none;
    }
    #schedule .left.sp{
        display: block;
    }
    .accordion__content .inner {
        flex-wrap: wrap;
        gap: 2%;
    }
    .accordion__content .inner .container04 {
        width: 70%;
        margin: 0 auto;
    }
    .accordion__content .inner .container04 a {
        text-align: center;
        margin-top: 16px;
    }
    .accordion__content .inner .container02 {
        width: calc(100% - 30%);
    }
    .comming .inner{
        height: 20px !important;
    }
}
@media screen and (max-width: 768px){
    #schedule{
        padding-top: 64px;
        /* padding-bottom: 64px; */
    }
    .accordion__content .inner .container03 {
        width: 100%;
        margin-top: 10px;
    }
    .accordion__content .inner .container04 {
        width: 100%;
    }
    .accordion__content .inner .container01 {
        width: 20%;
    }
    .accordion__title .performance{
        line-height: 1;
    }
    p.venue.sp {
    padding: 0 20px 20px 40px;
    font-size: 2rem;
    color: var(--SubColor);
    margin-top: -10px;
    font-weight: bold;
}
    .accordion__title::before,
    .accordion__title::after {
        top: 40px;
    }
}
@media screen and (max-width: 420px){
    .accordion__title {
        padding: 10px;
    }
    .accordion__item {
        margin-top: 10px;
    }
    .accordion__content .inner .container03 dl,
    .accordion__content .inner .container03 .mb {
        display: block;
        margin-bottom: 6px;
    }
    .accordion__content .inner .container03 dl:last-child{
        margin-bottom: 0;
    }
    p.venue.sp {
    padding: 0 10px 10px;
    font-size: 1.4rem;
        margin-top: -5px;
}
    .accordion__title::before,
    .accordion__title::after {
        top: 25px;
    }
    #schedule h3 span{
        padding: 0 120px 0 0;
    }
    #schedule h3 span::before,
    #schedule h3 span::after{
         width: 110px;
    }
}
/*==============
    news
===============*/
#news{
    padding-top: 120px;
}
#news .newsWrap{
    overflow-y: scroll;
    width: 100%;
    height: 270px;
}
#news .lead{
    font-size: clamp(1.4rem,3.733vw,1.6rem);
    margin: 16px 0 24px;
}
#news .newsWrap::-webkit-scrollbar{
    width: 10px;
}
#news .newsWrap::-webkit-scrollbar-track{
    background-color: #ccc;
}
#news .newsWrap::-webkit-scrollbar-thumb{
    background-color: var(--SubColor);
 }
#news .newsWrap ul{
    width: 96.56%;
}
#news .newsWrap ul li{
    padding: 24px 15px;
    border-bottom: 1px solid;
}
#news .newsWrap ul li a{
    align-items: center;
}
#news .newsWrap ul li a .day{
    width: 17.26%;
    font-family: var(--en);
}
#news .newsWrap ul li a:hover{
    color: var(--SubColor);
}
@media screen and (max-width: 768px){
    #news .newsWrap ul li a {
        display: block;
    }
    #news .newsWrap ul li {
        padding: 15px 10px;
    }
    #news {
        /* padding-bottom: 72px; */
        padding-top: 72px;
    }
}
@media screen and (max-width: 420px){
    #news .newsWrap ul li a .day,
    #news .newsWrap ul li a .detail {
        font-size: 1.4rem;
    }
    #news h3 span{
        padding: 0px 215px 0 0;
    }
    #news h3 span::before,
    #news h3 span::after{
            width: 200px;
    }
}
/*==============
    video
===============*/
#video{
    padding-bottom: 120px;
    padding-top: 160px;
}
#video .videoWrap{
    overflow: hidden;
}
/* youtube */
.swiper-container2 {
    position: relative;
    padding-bottom: 45px;
}
.swiper-pagination-bullet {
    background-color: transparent;
    background-image: url(../../assets/img/pagination-no.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: unset;
    height: 50px;
    opacity: 1;
    width: 36px;
}
  .swiper-pagination-bullet-active {
    background-image: url(../../assets/img/pagination.jpg);
    height: 50px;
    width: 36px;
}
.swiper-container2 .swiper-slide img {
    height: auto;
    width: 100%;
    border: 1px solid #fff;
}
@media screen and (max-width: 768px){
    .swiper-container2 .swiper-slide{
        width: 90% !IMPORTANT;
        margin: 0 auto;
}
#video {
    padding-top: 80px;
    padding-bottom: 64px;
}
}
@media screen and (max-width: 420px){
    #video h3 span{
        padding: 0 203px 0 0;
    }
    #video h3 span::before,
    #video h3 span::after{
            width: 190px;
    }
}
/*==============
    bnr
===============*/
#bnr{
    padding-bottom: 120px;
}
#bnr .image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid;
}
#bnr .image-container img {
    width: 100%;
    transition: transform 0.8s ease;
}
#bnr .image-container:last-child{
    margin-top: 32px;
}
/* #bnr .image-container:hover img {
    transform: scale(1.1);
} */
@media screen and (max-width: 768px){
#bnr {
    padding-bottom: 64px;
}
#bnr .image-container:last-child {
    margin-top: 16px;
}
}
/*==============
    sponsor
===============*/
#sponsor{
    padding: 100px 0;
    position: relative;
    background-color: #fff;
}
#sponsor::before,
#sponsor::after{
    content: "";
    background-image: url(../../assets/img/parts-triangle.png);
    width: 126px;
    height: 126px;
    position: absolute;
    top: -124px;
    background-size: contain;
    right: 0;
}
#sponsor::after{
    bottom: -126px;
    left: 0;
    top: initial;
    transform: scaleX(-1) scaleY(-1);
}
/* h3 */
#sponsor h3 span{
    color: #000;
}
#sponsor h3 span::before,
#sponsor h3 span::after{
    content: " ";
    background-image: url(../../assets/img/parts01-black.png);
    background-size: contain;
    width: 227px;
    height: 20px;
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-repeat: no-repeat;
}
#sponsor h3 span::after{
    right: 0%;
    left: 0%;
    top: 43%;
    transform: scaleX(-1);
}
#sponsor .sponsorWrap ul.main,
#sponsor .sponsorWrap ul.sub{
    gap: 24px;
}
#sponsor .sponsorWrap ul.main{
    margin-bottom: 24px;
}
#sponsor .sponsorWrap ul li img:hover{
    opacity: 0.8;
}
/*==============
    sns
===============*/
#sns {
    padding-bottom: 160px;
    padding-top: 100px;
    text-align: center;
}
#sns h3.special span{
    font-size: clamp(2.4rem, 6.4vw, 4.5rem);
    text-align: center !important;
}
article.star-bg.none::before{
    display: none;
}
#sns .wrap{
    max-width: 1000px;
}
#sns ul{
    justify-content: space-between;
    margin-top: 60px;
}
#sns ul li{
    width: 15.6%;
}
#sns .circle_width,
#sub-page #tab-ticket .circle_width {
    width: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
}
#sns .circle_height,
#sub-page #tab-ticket .circle_height {
    position: relative;
    padding-top: 100%;
    height: 0;
}
#sns .circle_height p,
#sub-page #tab-ticket .circle_height p {
    position: absolute;
   top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#sns .circle_height p i,
#sub-page #tab-ticket .circle_height p i{
    font-size: clamp(3rem, 8vw, 5rem);
    transition: transform 0.8s ease;
}
#sns ul li:hover .circle_width{
    border: 1px solid var(--SubColor);
    color: var(--SubColor);
}
#sns ul li:hover .circle_width .circle_height p i{
    transform: scale(1.1);
}
/* .tabBr{
    display: none;
} */
@media screen and (max-width: 1000px){
    #sns .wrap {
        width: 90%;
    }
    #sns {
        padding-bottom: 80px;
        padding-top: 64px;
    }
    #sns ul {
        margin-top: 40px;
    }
    h3.special span {
        padding: 0;
    }
    .tabBr{
        display: block;
    }
}
@media screen and (max-width: 500px){
    #sns ul {
        flex-wrap: wrap;
        width: 80%;
        margin: 0 auto 0;
        align-items: center;
        justify-content: center;
        gap: 11%;
    }
    #sns ul li {
        width: 25.6%;
    }
    #sns {
        padding-bottom: 50px;
    }
}
/*==============
    footer
===============*/
footer{
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid;
    background: #000;
}
footer .copy{
    font-size: 1rem;
    text-align: center;
}
@media screen and (max-width: 600px){
    footer{
        padding: 20px 0;
    }
}
/*==============
    sub-page
===============*/
/* main */
#sub-page #main .main-visual{
    position: relative;
    padding-top: 430px;
    margin-top: 130px;
}
#sub-page #main .main-visual h1 img{
    width: 100%;
    max-width: 720px;
}
@media screen and (max-width: 1000px){
    /* #main .main-visual {
        padding-top: 69vw;
    } */
}
@media screen and (max-width: 900px){}
@media screen and (max-width: 768px){
    #sub-page #main .main-visual {
        padding-top: 60vw;
        margin-top: 40px;
    }    
}
@media screen and (max-width: 420px){}
/* price */
#sub-page #price{
    padding: 56px 0;
}
#sub-page #price .textWrap .seats-reserved{
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 8px;
}
#sub-page #price .textWrap .priceWrap{
    align-items: center;
    justify-content: center;
    gap: 62px;
}
#sub-page #price .textWrap .priceWrap li{
    align-items: center;
}
#sub-page #price .textWrap .priceWrap li .head{
    background: #fff;
    color: #000;
    width: 111px;
    text-align: center;
    padding: 5px 0;
    margin-right: 10px;
    font-weight: 900;
}
#sub-page #price .textWrap .priceWrap li .price{
    font-size: clamp(3.2rem, 10vw, 4.8rem);
    color: var(--SubColor);
    font-family: var(--number);
}
#sub-page #price .textWrap .priceWrap li .price span{
    font-size: 3.6rem;
    padding-right: 4px;
}
#sub-page #price .textWrap .priceWrap li .price span.tax{
    font-size: clamp(1.4rem, 4.375vw, 1.8rem);
    padding-left: 5px;
    font-family: var(--ja);
}
@media screen and (max-width: 900px){
    #sub-page #price .textWrap .priceWrap {
        display: block;
    }
    #sub-page #price .textWrap .priceWrap li {
        justify-content: center;
    }
}
@media screen and (max-width: 420px){
    #sub-page #price .textWrap .priceWrap li .head {
        width: 70px;
        padding: 2px 0;
        font-size: 1.4rem;
    }
    #sub-page #price {
        padding: 40px 0;
    }
}
/* tab-ticket */
#sub-page #tab-ticket .tabs {
  margin-top: 50px;
  background-color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  margin: 0 auto;
}
#sub-page #tab-ticket .tab_item {
  width: calc(98.89%/3);
  height: 50px;
  background-color: #292929;
  line-height: 50px;
  font-size: clamp(1.4rem, 4.375vw, 1.6rem);
  text-align: center;
  color: #a2a2a2;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
#sub-page #tab-ticket .tab_item.second{
    margin: 0 0.55%;
}
#sub-page #tab-ticket .tab_item:hover {
  opacity: 0.75;
}
#sub-page #tab-ticket input[name="tab_item"] {
  display: none;
}
#sub-page #tab-ticket .tab_content {
  display: none;
  padding: 60px 0;
  clear: both;
  overflow: hidden;
  border-bottom: 1px solid;
  border-top: 3px solid #ffffff;
}
/* schedule */
#sub-page #tab-ticket .tab_content .schedule,
#sub-page #tab-ticket .tab_content .nowOnsaLe{
    margin-bottom: 60px;
}
#sub-page #tab-ticket .tab_content .schedule .detail{
    align-items: center;
    gap: 32px;
    margin-top: 16px;
}
#sub-page #tab-ticket .tab_content .schedule .detail .step{
    width: 105px;
    text-align: center;
    border: 1px solid;
    padding: 5px 0;
    font-size: clamp(1.6rem, 5vw, 1.8rem);
}
#sub-page #tab-ticket .tab_content .schedule .detail .period{
    font-size: clamp(1.6rem, 5vw, 1.8rem);
}
/* nowOnsaLe */
#sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox{
    border: 1px solid #ccc;
    margin-top: 24px;
}
#sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox:nth-child(1){
    margin-top: 15px; 
}
#sub-page #tab-ticket .tab_content .nowOnsaLe .no-ticker {
    text-align: center;
    padding-top: 70px;
    font-size: 2rem;
    color: #a2a2a2;
}
/* link */
#sub-page #tab-ticket .tab_content .link .lead{
    text-align: center;
    font-size: clamp(1.4rem, 4.375vw, 1.8rem);
    line-height: 1.8;
    margin-bottom: 34px;
}
#sub-page #tab-ticket .tab_content .link .linkWrap{
    width: 94.89%;
    margin: 0 auto;
}
#sub-page #tab-ticket .tab_content .link .linkWrap.double{
    display: flex;
    gap: 2.81%;
    align-items: center;
    justify-content: center;
}
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte{
    width: 100%;
    position: relative;
}
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a{
    display: block;
    position: relative;
    text-align: left;
    padding: 24px 0 24px 110px;
    line-height: 1.5;
    z-index: 10;
}
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a{
    font-size: clamp(1.8rem, 5.625vw, 3rem);
    font-weight: 900;
    background: var(--SubColor);
}
#sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a span{
    display: block;
    font-size: clamp(1.3rem, 4.0625vw, 1.4rem);
}
#sub-page #tab-ticket .circle_width {
    width: 14.94%;
    max-width: 62px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 8.19%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 10;
}
#sub-page #tab-ticket .circle_height p i {
    color:var(--SubColor);
    font-size: clamp(2rem, 6.25vw, 3rem);
}
#sub-page #tab-ticket .linkConte:hover .circle_height p i{
    color:var(--SubColor);
}
#sub-page #tab-ticket .circle_height p {
    top: calc((100% - 2em)/2);
}
#sub-page #tab-ticket .tab_content .link .linkWrap.wide .linkConte p a {
    text-align: center;
    padding: 24px 0;
    font-size: clamp(1.6rem, 5vw, 2.4rem);
}
#sub-page #tab-ticket .tab_content .link .linkWrap.wide {
    width: 68.11%;
    margin: 0 auto;
}
#sub-page #tab-ticket #all:checked ~ #all_content,
#sub-page #tab-ticket #programming:checked ~ #programming_content,
#sub-page #tab-ticket #design:checked ~ #design_content {
  display: block;
}
#sub-page #tab-ticket .tabs input:checked + .tab_item {
  background-color: var(--SubColor);
  color: #fff;
}
@media screen and (max-width: 768px){
    #sub-page #tab-ticket .tab_content .link .linkWrap.double {
        display: block;
    }
    #sub-page #tab-ticket .tab_content {
        padding: 32px 0;
    }
    #sub-page #tab-ticket .tab_content .schedule, #sub-page #tab-ticket .tab_content .nowOnsaLe {
        margin-bottom: 32px;
    }
    #sub-page #tab-ticket .tab_content .schedule .detail .step {
        width: 105px;
        padding: 3px 0;
        font-size: 1.6rem;
    }
    #sub-page #tab-ticket .tab_content .schedule .detail {
        gap: 16px;
    }
    .accordion__title .days, #sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox .days {
        margin-right: 16px;
    }
    .accordion__title .performance, #sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox .performance {
        margin-right: 8px;
    }
    #sub-page #tab-ticket .tab_content .link .linkWrap.double {
        display: block;
    }
    #sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte:last-child {
        margin-top: 16px;
    }
    #sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a {
        padding: 24px 0 24px 21.89%;
    }
    #sub-page #tab-ticket .tab_content .link .lead {
        margin-bottom: 16px;
    }
    #sub-page #tab-ticket .tab_content .link .linkWrap.wide .linkConte p a {
        padding: 24px 0;
    }
    #sub-page #tab-ticket .tab_content .link .linkWrap.wide {
        width: 94.89%;
    }
}
@media screen and (max-width: 600px){
    #sub-page #tab-ticket .tab_item {
        width: 100%;
    }
    #sub-page #tab-ticket .tab_item.second {
        margin: 0;
    }
}
@media screen and (max-width: 420px){
    .accordion__title .days, #sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox .days {
        padding: 7px;
        margin-right: 10px;
    }
    #sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox {
        flex-wrap: wrap;
    }
    #sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox {
        padding: 10px;
        margin-top: 10px;
    }
    .accordion__title .performance, #sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox .performance {
        margin-right: 0;
    }
    #sub-page #tab-ticket .tab_content .link .lead {
        text-align: left;
    }
    #sub-page #tab-ticket .tab_content .link .linkWrap.double .linkConte p a {
        padding: 14px 0 14px 21.89%;
    }
    #sub-page #tab-ticket .circle_width {
        left: 5.19%;
        width: 12.94%;
    }
    #sub-page #tab-ticket .circle_height p i {
        font-size: clamp(2rem, 2.083vw, 3rem);
    }
    #sub-page #tab-ticket .circle_height p {
        top: calc((100% - 1.3em)/2);
    }
    #sub-page #tab-ticket .tab_content .link .linkWrap.wide .linkConte p a {
        padding: 14px 0;
    }
}
/* attention */
#sub-page #attention{
    padding: 80px 0;
}
#sub-page #attention .attentionWrap{
    margin-bottom: 40px;
}
#sub-page #attention .attentionWrap.last{
    margin-bottom: 80px;
}
#sub-page #attention .attentionWrap .head,
#sub-page #tab-ticket .tab_content .head{
    font-size: 1.6rem;
    position: relative;
    padding-left: 32px;
    margin-bottom: 5px;
}
#sub-page #attention .attentionWrap .head::before,
#sub-page #tab-ticket .tab_content .head::before{
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-color: #fff;
}
#sub-page #attention .attentionWrap ul li{
    padding-left: 1.5rem;
    text-indent: -1.5rem;
    padding-bottom: 4px;
    font-size: 1.4rem;
}
#sub-page #attention .back{
    width: 200px;
    display: block;
    border: 1px solid;
    text-align: center;
    padding: 10px 0;
    margin: 0 auto;
    font-family: var(--number);
}
#sub-page #attention .back:hover{
    border: 1px solid var(--SubColor);
    color: var(--SubColor);
}
@media screen and (max-width: 768px){
    #sub-page #attention .attentionWrap {
        margin-bottom: 24px;
    }
    #sub-page #attention .attentionWrap.last {
        margin-bottom: 40px;
    }
    #sub-page #attention {
        padding: 50px 0;
    }
}
/*==============
    hamburger
===============*/
.hamburger {
    display : block;
    position: fixed;
    z-index: 101;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    background: #292929;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 2px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
    background: #fff;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .hamburger span:nth-child(1) {
    top: 20px;
  }
  .hamburger span:nth-child(2) {
    top: 30px;
  }
  .hamburger span:nth-child(3) {
    top: 40px;
  }
  .hamburger.active span:nth-child(1) {
    top: 25px;
    left: 21px;
    background: var(--glayEnFontsW);
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
    background: #fff;
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 25px;
    left: 21px;
    background: #000;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
    background: #fff;
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 100;
    top  : 0;
    left : 0;
    color: #fff;
    background: #292929;
    text-align: center;
    width: 100%;
    display: none;
    transition: opacity .6s ease, visibility .6s ease;
    padding-bottom: 50px;
  }
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100% !important;
    margin-bottom: 0;
    flex-wrap: wrap;
    }
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
    padding-left: 0;
    }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  nav.globalMenuSp ul li:hover{
    opacity: 0.5;
}  
  nav.globalMenuSp.active ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration :none;
    font-weight: bold;
    text-align: center;
    font-family: var(--en);
    font-size: 2rem;
  }
  nav.globalMenuSp.active {
    display: block;
  }
  
  nav.globalMenuSp ul li a{
    display: none;
    color: #fff;
    padding: 1em 0;
    text-decoration :none;
  font-size: 18px;
  font-weight: bold;
  }
  nav.globalMenuSp.active ul li a .en {
      display: block;
      text-align: center;
      color: var(--glayEnFonts);
      font-family: var(--en);
  }
  nav.globalMenuSp ul li.min {
      margin-top: 20px;
  }
  nav.globalMenuSp ul li.min a {
      font-size: 1.4rem !important;
      font-weight: 100;
  }
  nav.globalMenuSp.active img {
      max-width: 70px;
      width: 100%;
      display: block;
      padding: 24px 0 0 12px;
  }
  nav.globalMenuSp ul li .contact {
      padding: 20px 0 !important;
      width: 70% !important;
  }
  .spheader h1 {
    max-width: 70px;
    width: 100%;
    display: block;
    padding: 24px 0 0 12px;
    position: fixed;
    top: 0;
    left: 0;
}
nav.globalMenuSp .ticket-LInk a {
    background: -moz-linear-gradient(0deg, #500a0e 0%, #881c21 20%, #c71f23 50%, #881c21 85%, #500a0e 100%);
    background: -webkit-linear-gradient(0deg, #500a0e 0%, #881c21 20%, #c71f23 50%, #881c21 85%, #500a0e 100%);
    background: -ms-linear-gradient(0deg, #500a0e 0%, #881c21 20%, #c71f23 50%, #881c21 85%, #500a0e 100%);
    background: linear-gradient(0deg, #500a0e 0%, #881c21 20%, #c71f23 50%, #881c21 85%, #500a0e 100%);
    font-family: var(--en);
    font-size: 2rem;
    display: block;
    padding: 18px 0;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    margin-top: 30px;
    position: relative;
    pointer-events: none;
}
nav.globalMenuSp .ticket-LInk a::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
/* anime */
@keyframes fadeAnimation {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }
  .element {
    animation-name: fadeAnimation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
  }
/* accordion */
.accordion__content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  transition-property: height, margin, padding;
  transition-duration: 300ms;
  transition-timing-function: ease;
  overflow: hidden;
  display: none;
}
.is-open .accordion__content {
  display: block;
}
.is-open.accordion__content .inner{
      padding: 20px 0;
}
.is-open.accordion__content .inner.p0{
	padding-bottom: 0;
}
/* 0531 */
.bottomM{
    margin-bottom: 50px;
}
@media screen and (max-width: 768px){
.bottomM{
    margin-bottom: 32px;
}
}
#sub-page #tab-ticket .tab_content .nowOnsaLe ul li.contBox {cursor: initial;}
/* 0725 */
.swiper .swiper-slide-prev,
.swiper .swiper-slide-next {
    opacity: 0.3;
}
#point .slideInner.second .left .whatexpg::before{
    content: "02";
    left: -110px;
}
#point .slideInner.second .right span{
    background-image: url(../../assets/img/slide02.jpg);
    background-position: center;
}
/* 0727 */
#sponsor .sponsorWrap ul.main li {
    width: 30%;
}
#sponsor::before {
    z-index: 10;
}
#sponsor .sponsorWrap ul.main, #sponsor .sponsorWrap ul.sub {
    align-items: center;
    justify-content: center;
    gap: 70px;
}
#sponsor::after{
    display: none;
}
@media screen and (max-width: 768px){
#sponsor .wrap {
    overflow: hidden;
}
#sponsor h3 span::after {
    display: none;
}
#sponsor h3 span::before {
    top: 65%;
}
#sponsor h3.center {
    text-align: left;
}
#sponsor .sponsorWrap ul.main li {
    width: 50%;
}
}
@media screen and (max-width: 500px){
#sponsor {
    padding: 30px 0 40px;
}
#sponsor .sponsorWrap ul.main, #sponsor .sponsorWrap ul.sub {
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 0;
}
#sponsor::after {
    width: 40px;
    height: 40px;
    bottom: -40px;
}
#sponsor::before {
    width: 60px;
    height: 60px;
    top: -60px;
}
#sponsor h3 span{
    font-size: 3.5rem;
    padding: 0 163px 0 0;
}
#sponsor h3 span::before{
    width: 150px;
    height: 18px;
    background-size: cover;
    }
}
/* 0728 */
#news .newsWrap ul li a .detail {
    width: 82.74%;
}
@media screen and (max-width: 768px){
#news .newsWrap ul li a .detail {
    width: 100%;
}
}
/* 0731 */
#point .slideInner.third .left .whatexpg::before{
    content: "03";
    left: -110px;
}
#point .slideInner.forth .left .whatexpg::before{
    content: "04";
    left: -110px;
}
#point .slideInner.five .left .whatexpg::before{
    content: "05";
    left: -110px;
}
#point .slideInner.third .right span{
    background-image: url(../../assets/img/slide03.jpg);
    background-position: center;
}
#point .slideInner.forth .right span{
    background-image: url(../../assets/img/slide04.jpg);
    background-position: center;
}
#point .slideInner.five .right span{
    background-image: url(../../assets/img/slide05.jpg);
    background-position: center;
}

/* 0801 */
@media screen and (max-width: 768px){
    h3 span{
    padding: 0 240px 0 0;

}
}
/* 0803 */
#video .youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
#video .youtube iframe {
  width: 100%;
  height: 100%;
}
.swiper-container2 .swiper-slide-prev,
.swiper-container2 .swiper-slide-next {
    opacity: 0.3;
}
@media screen and (max-width: 768px){
    .swiper-container2 .swiper-slide{
        width: 100% !IMPORTANT;
        margin: 0 auto;
}
    .swiper-container2{
        width: 90% !IMPORTANT;
        margin: 0 auto;
        padding-bottom: 0;
}
}
/* 0810 */
.accordion__content .inner .container02 .time-wrap.mt{
    margin-top: 25px;
}
@media screen and (max-width: 768px){
.accordion__content .inner .container02 .time-wrap.mt{
    margin-top: 13px;
}
}
/* 0821 */
dd.sponsor-min img {
    max-width: 140px;
    border: 1px solid #d3d3d3;
}
dl.m10{
    margin: 10px 0px;
}
@media screen and (max-width: 420px){
dl.m10{
    margin: 12px 0px !important;
}
dd.sponsor-min img {
    max-width: initial;
    margin: 0 auto;
    display: block;
    width: 60%;
}
}
/* 0926add */
p.open.soldOut,
p.start.soldOut{
    text-decoration: line-through;
    opacity: 0.2;
}

.time-wrap.flex.soldOut {
    position: relative;
}
.time-wrap.flex.soldOut:after{
    content: "SOLD OUT";
    position: absolute;
    color: red;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
/* 1127 */
dl.sponsor{padding-left: 35%;padding-bottom: 20px;}
dl.sponsor dt{width: 100%;max-width: 110px;font-size: 1.3rem;}
dl.sponsor dd.sponsor-min{margin-right: 2%;}
dl.sponsor dd.sponsor-min img{
    width: 100%;
}
dl.sponsor.sp{
    display: none;
}
@media screen and (max-width: 1000px){
dl.sponsor.pc{
    display: none;
}
dl.sponsor.sp{
    display: block;
}
dl.sponsor{padding-left: 0;}
.accordion__content .inner .container03 {
    width: 100%;
}
.is-open.accordion__content .inner.p0{
	padding-bottom: 20px;
}
dl.sponsor dd.sponsor-min{
    margin: 5px 5px 0 0;
}
}
@media screen and (max-width: 420px){
dd.sponsor-min img {
    max-width: initial;
    margin: 0 auto;
    display: block;
    width: 60% !important;
}
}