@charset "UTF-8";


html {
    background: #000;
    font-size: clamp(13px, 1.1vw, 2.2vh);
}

@media screen and (max-width: 960px) {
    html {
        font-size: clamp(10px, 3.5vw, 2.5vh);
    }
}

@media screen and (min-width:560px) and (max-width:960px ) {
html {
    font-size: clamp(10px, 2.6vw, 2.5vh);
}
}


/*===================================================
  OP:LOADER
====================================================*/
.loader{
    position:fixed;
    height:100%;
    width:100%;
    background:#000;
    z-index:99999;
}

body:not(.topPage) .loader {
    display: none;
}

/*===================================================
  OP:ACCORDION
====================================================*/
.op_accord .accordionList{

}
.op_accord .accordionList .accordionTit{
    background: #DDD;
    padding: 20px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
}
.op_accord .accordionList .accordionTit span {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 12px;
    height: 12px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}
.op_accord .accordionList .accordionTit.open span {
    transform: translateY(-50%);
}
.op_accord .accordionList .accordionTit span:before {
    content: "";
    position: absolute;
    top: 25%;
    width: 100%;
    height: 100%;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
}
.op_accord .accordionList .accordionDetail{
    display: none;
    padding: 40px;
    background: #EFEFEF;
}

/* OP:ACCORD:PC-min-770 */
@media screen and (min-width: 960px){
.accordionList .accordionTit:hover{
    background: #ccc;
}
}

/* OP:ACCORD:SP-max-769 */
@media screen and (max-width: 960px){
.accordionList .accordionDetail {
    padding: 20px;
}
}

/*===================================================
  OP:MODAL
====================================================*/
.op_modal{

}
.op_modal .modPop {
    display:none;
    width: 100%;
    height: 100%;
    color: #fff;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.op_modal .modPop.popActive {
  display:block;
}
.op_modal .modPop .popupShade{
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 0;
}

.op_modal .modPop .close {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: -60px;
    cursor: pointer;
    transition: 0.3s ease;
    transform: rotate(45deg);
    background: #000;
    border-radius: 100px;
}
.op_modal .modPop .close::before,
.op_modal .modPop .close::after {
    content: '';
    display: inline-block;
    width: 60%;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 50%;
    top: 50%;
}
.op_modal .modPop .close::before {
  transform: translate(-50%,-50%);
}
.op_modal .modPop .close::after {
    transform: translate(-50%,-50%) rotate(90deg);
}
.op_modal .modPop .popInBox {
    width: 90%;
    max-width: 1200px;
    margin: 100px auto;
    position: relative;
    background: #f7f7f7;
    color: #000;
    border-radius: 20px;
    max-height: calc(100vh - 200px);
}
.op_modal .modPop .popInContent{
    width: 100%;
    max-height: calc(100vh - 200px);
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 40px;
    box-sizing: border-box;
}
.op_modal .modPop .popInContent::-webkit-scrollbar{
    display: none;
}

/* OP:MODAL:PC-min-770 */
@media screen and (min-width: 960px){

}

/* OP:MODALSP-max-769 */
@media screen and (max-width: 960px){
.op_modal .modPop .close {
    width: 30px;
    height: 30px;
    right: 0;
    top: -40px;
}
.op_modal .modPop .popInBox {
    max-height: calc(100vh - 120px);
    margin: 60px auto;
}
.op_modal .modPop .popInContent{
    max-height: calc(100vh - 120px);
    padding: 20px;
}
}

/*===================================================
  NAVIGATION
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 20px;
    top: 20px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9999;
    box-sizing: border-box;
    transition-delay: 3.5s;
}
.hamSwitch {
    background: #FFF;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
}
.hamBtn .hamMenu{
    position: relative;
    width: 20px;
    height: 20px;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: #333;
    transition: all .3s ease;
}
.hamBtn .hamMenu span:nth-of-type(1) {
    top: 2px;
}
.hamBtn .hamMenu span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn .hamMenu span:nth-of-type(3) {
    bottom: 2px;
}
.hamSwitch.open{

}
.hamSwitch.open span {

}
.hamSwitch.open span:nth-of-type(1) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
}
.hamSwitch.open span:nth-of-type(2) {
    opacity: 0;
}
.hamSwitch.open span:nth-of-type(3) {
    transform: translateY(50%) rotate(45deg);
    bottom: 50%;
}
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #022e68;
    z-index: 11;
}
.navigation.active {
    transition: opacity 0.5s ease;
    pointer-events:auto;
    opacity:1;
}
.navigation .headerNav {
    display: block;
    padding: 60px;
}
.navigation .headerNav li {
    padding: 0;
    position: relative;
    margin: 0 0 40px;
}
.navigation .headerNav li:after {
    content: none;
}
.navigation .headerNav li a {
    font-size: 250%;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-family: urw-din-condensed, sans-serif;
}
.navigation .headerNav li a.blankBtn{
    opacity: 0.3;
    pointer-events: none;
}
.navigation .navTit{
    color: #FFF;
    position: absolute;
    right: 60px;
    bottom: 60px;
    text-align: right;
    font-family: "Roboto", sans-serif;
}
.navigation .snsList{
    display: flex;
    justify-content: end;
    align-items: baseline;
    padding: 0 40px 0 0;
}
.navigation .snsList li {
    width: 20px;
    margin: 0 20px 0 0;
}
.navigation .snsList li.official {
    width: 100px;
}
.navigation .snsList li a {
    display: block;
}
.navigation .snsList li a img{
    transition:0.3s ease;
}

.headLogo{
    display: none;
}
body:not(.topPage) .headLogo {
    display: block;
    position: fixed;
    top: 2.4rem;
    left: 2.4rem;
    width: 8rem;
    z-index: 20;
}

/* NAVIGATION:PC-min-770 */
@media screen and (min-width: 1080px){
.hamBtn {
    display: none;
}
.navigation {
    position: fixed;
    pointer-events: auto;
    top: 0;
    opacity: 1;
    left: auto;
    right:0;
    height: auto;
    background: transparent;
    transition: 0.5s ease;
    z-index: 11;
}
.navigation .navTit {
    display: none;
}
.navigation .headerNav {
    display: flex;
    padding: 2.5rem 2.5rem 0;
    text-align: right;
    width: 100%;
    justify-content: flex-end;
    gap: 3%;
}
.topPage .navigation .headerNav {
    justify-content: center;
    gap: 4%;
}
.navigation .headerNav li {
    margin: 0;
    line-height: 1em;
}
.navigation .headerNav li a {
    font-size: 1.2rem;
    color: #FFF;
}
.navigation .headerNav li a:hover {
    color: #fb003e;
}
.navigation .navigationTit {
    display: none;
}
}

/* NAVIGATION:SP-max-769 */
@media screen and (max-width: 1080px){
body:not(.topPage) .headLogo {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    width: 110px;
}
.navigationBlock{
    position: fixed;
    z-index: 9999;
}
.navigation {
    pointer-events: none;
    opacity: 0;
}
.navigation .headerNav {
    padding: 80px 40px 40px;
}
.navigation .navigationTit {
    position: absolute;
    bottom: 40px;
    right: 0;
    padding: 0 40px;
    width: 80%;
    max-width: 500px;
}
.navigation .headerNav li{
    margin: 0 0 20px;
}
.navigation .headerNav li a {
    font-size: 1.5rem;
    color: #FFF;
}
.navigation .snsList {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0 40px 0;
}
.navigation .snsList li.official {
    width: 100%;
    margin: 0 auto 20px;
}
.navigation .snsList li.official a {
    width: 50%;
}
}



/*===================================================
  visual
====================================================*/
.visual{
    position: relative;
    color: #FFF;
    height: 100svh;
}
.visual .heroView{

}
.visual .action{

}

/* item1 */
.visual .item1{
    position: absolute;
    bottom: 40px;
    left: 40px;
}


/* item2 */
.visual .item2{
    position: absolute;
    left: 40px;
    bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.visual .scroll {
    display: block;
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    width: 1px;
    height: 6rem;
    z-index: 1;
}

.visual .scroll::after {
    content: 'SCROLL';
    position: absolute;
    bottom: 0;
    left: 0.6em;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    font-family: urw-din-condensed, sans-serif;
}

.visual .scroll::before {
    content: "";
    width: 1px;
    height: 6rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: #ffffff;
    animation: scrollarrow 2s cubic-bezier(0.19, 1, 0.22, 1) 0s infinite;
}

@keyframes scrollarrow {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  25% {
    clip-path: inset(0 0 0 0);
  }
  75% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(100% 0 0 0);
  }
}



/* item3 */
.visual .item3{
    position: absolute;
    left: 0;
    top: 0;
    max-width: 600px;
}

.visual .kvLead {
    display: block;
    padding: 0 5% 2.5rem;
    letter-spacing: 0.1em;
    line-height: 1.7;
    font-size: 1.1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 600;
    opacity: 1;
}

/* PC-min-770 */
@media screen and (min-width: 960px){
.heroView .item1 .snsList li a:hover img {
    filter: invert(0.7);
}
}


/* SP-max-769 */
@media screen and (max-width: 960px){

.visual .kvLead {
    padding: 0 0 20px 20px;
}
.visual .item2 {
    left: 20px;
}

.visual .scroll {
    left: 1.5rem;
    bottom: 0;
}

.visual .scroll::after {
    font-size: 1rem;
    bottom: 0.8rem;
}

.visual {
    height: 140vw;
}

}



/*===================================================
  visual animation
====================================================*/


/* act1 */
.act1{
    opacity: 0;
    transition: 1s ease 2s;
}
.loaded .act1{
    opacity: 1;
}
.headerFix .act1{
    opacity: 0;
}


/* act5 */
.act5{

}
.loaded .act5{

}


/*===================================================
  OP:NEWS
====================================================*/
.op_news {
    width: 80%;
    margin: 0 auto;
}
.op_news .newsList{
    position: relative;
}
.op_news .newsList li:last-child {
    margin: 0;
}
.op_news .newsList:after{
}
.op_news .newsList a {
    display: flex;
    position: relative;
    flex-wrap: wrap;
}

.op_news .newsList a .tit {
    width: calc(100% - 8rem);
}

.op_news .newsList a .date {
    margin: 0;
    line-height: 1.6;
    width: 8rem;
}

.op_news .newsDetail{
    display: flex;
    border-bottom: 1px solid #aaa;
}
.op_news .newsDetail dt{
    width: 15%;
    display: flex;
    align-items: center;
    padding: 0 0 20px;
}
.op_news .newsDetail dt .txt{
    font-size: 150%;
    font-weight: 600;
}
.op_news .newsDetail dd{
    width: 85%;
    display: flex;
    align-items: center;
    padding: 0 0 20px 45px;
}
.op_news .viewmore{

}
.op_news .viewmore a{
    font-weight: 800;
    font-size: 90%;
    position: relative;
    color: unset;
}
.op_news .viewmore a:after{
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: translate(0,-50%) rotate(45deg);
    transition:0.5s ease;
}

/* OP:NEWS:PC-min-770 */
@media screen and (min-width: 960px){
.op_news .newsList a:hover:before{
    width: 100%;
}
.op_news .viewmore a:hover:after{
    left: calc(100% + 20px);
}
}


/* OP:NEWS:SP-max-769 */
@media screen and (max-width: 960px){

.op_news {
    width: 100%;
}

.op_news .newsList a {
    flex-wrap: wrap;
}

.op_news .newsList a .tit {
    width: 100%;
}

.op_news .newsDetail {
    display: block;
    border-bottom: 1px solid #000;
    padding: 0 0 20px;
}
.op_news .newsDetail dt {
    width: 100%;
    display: block;
    padding: 0 0 10px;
}
.op_news .newsDetail dt .txt {
    font-size: 110%;
    line-height: 1em;
}
.op_news .newsDetail dd {
    width: 100%;
    display: block;
    padding: 0;
}
.op_news .newsList a:before {
    content: none;
}
.op_news .newsList a .date {
    width: 100%;
    margin: 0;
}
}


/*===================================================
  OP:SCHEDULE
====================================================*/
.op_schedule{

}

.topSchedule .schedule_tit {
    font-weight: 700;
    letter-spacing: 0;
    font-family: urw-din-condensed, sans-serif;
    text-align: center;
    margin-bottom: 4rem;
    font-size: 5rem;
    line-height: 1;
}

.topSchedule .schedule_tit .schedule_tit_sub {
    font-size: 0.7em;
}


.op_schedule .scheduleCellList{
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid;
    padding: 0 0 15px;
    margin: 0 0 15px;
}
.op_schedule .scheduleCellList:last-child{
    margin: 0;
}
.op_schedule .scheduleCellList li{
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 90%;
    line-height: 1.5em;
    font-weight: 500;
}
.op_schedule .scheduleCellList li:after{
    content: "";
    position: absolute;
    top: 5%;
    right: 0;
    width: 1px;
    height: 90%;
    background: #000;;
}
.op_schedule .scheduleCellList li:last-child:after{
    content:none;
}
.op_schedule .scheduleCellList .scheduleDate{
    width: 220px;
    font-weight: 600;
    font-size: 120%;
}
.op_schedule .scheduleCellList .scheduleDate .scheduleInner{
    display: flex;
    align-items: flex-end;
}
.op_schedule .scheduleCellList .scheduleDate .scheduleInner .txt{
    line-height: 1em;
}
.op_schedule .scheduleCellList .scheduleDate .year{
    display: block;
    font-size: 70%;
    margin: 0;
    font-weight: 800;
}
.op_schedule .scheduleCellList .scheduleDate .day{
    letter-spacing: 0.03em;
    font-size: 110%;
    font-weight: 800;
}
.op_schedule .scheduleCellList .scheduleDate .week{
    writing-mode: vertical-rl;
    font-size: 45%;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1em;
    margin: 0;
    vertical-align: -2px;
}
.op_schedule .scheduleCellList .scheduleDate .area{
    line-height: 1.3em;
    font-size: 90%;
    margin: 0 0 0 5px;
    vertical-align: 1px;
}
.op_schedule .scheduleCellList .scheduleVenue{
    width: calc((100% - 360px)* 0.5);
    justify-content: left;
}
.op_schedule .scheduleCellList .scheduleVenue .txt{
    font-size: 90%;
}

.op_schedule .scheduleCellList .scheduleTime{
    width: 18%;
}
.op_schedule .scheduleCellList .scheduleTime .txt{
    font-size: 90%;
}
.op_schedule .scheduleCellList .scheduleTime{
    width: 140px;
}
.op_schedule .scheduleCellList .scheduleTime .cap{
    display:none;
}
.op_schedule .scheduleCellList .scheduleInfo{
    width: calc((100% - 360px)* 0.5);
    justify-content: left;
}
.op_schedule .scheduleCellList .scheduleInfo .txt{
    line-height: 1em;
}
.op_schedule .scheduleCellList .scheduleInfo .playguide{
    font-size: 75%;
}
.op_schedule .scheduleCellList .scheduleInfo .playguideLink{
    font-size: 75%;
    margin: 0 0 5px;
    display: block;
}
.op_schedule .scheduleCellList .scheduleInfo .playguideCap{
    font-size: 60%;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: block;
    line-height: 1.5em;
}
.op_schedule .scheduleCellList .scheduleInfo a{
    font-size: 90%;
    font-weight: 600;
    display: block;
}
.op_schedule .scheduleCellList .scheduleInfo .fa-info-circle{
    display:none;
}
.op_schedule .scheduleCellList.cellHead{
    font-size: 70%;
}
.op_schedule .scheduleCellList.cellHead li{
    justify-content: center;
    font-size: 70%;
    font-weight: 400;
}
.op_schedule .scheduleCellList.cellHead li:after{
    content:none;
}
.op_schedule .scheduleCellList.cellHead .txt{
    font-size: 100%;
}

/* OP:SCHEDULE:PC-770-960 */
@media screen and (min-width:960px) and ( max-width:960px) {
.op_schedule .scheduleCellList .scheduleDate {
    font-size: 110%;
}
.op_schedule .scheduleCellList li {
    font-size: 70%;
    font-weight: 600;
}
.op_schedule .scheduleCellList .scheduleDate {
    width: 130px;
}
.op_schedule .scheduleCellList .scheduleTime {
    width: 120px;
}
.op_schedule .scheduleCellList .scheduleVenue {
    width: calc((100% - 250px)* 0.5);
}
.op_schedule .scheduleCellList .scheduleInfo {
    width: calc((100% - 250px)* 0.5);
}
.op_schedule .scheduleCellList .scheduleDate .year {
    margin: 0 0 2px;
}
.op_schedule .scheduleCellList .scheduleDate .day {
    display: block;
    margin: 0 0 5px;
}
.op_schedule .scheduleCellList .scheduleDate .week {
    writing-mode: unset;
    margin: 0 0 10px;
    vertical-align: 0;
    display: block;
}
.op_schedule .scheduleCellList .scheduleDate .area {
    display: block;
    line-height: 1.3em;
    font-size: 70%;
    vertical-align: 0;
    margin: 0;
}
}


/* OP:SCHEDULE:SP-max-769 */
@media screen and (max-width: 960px){
.op_schedule {
    border-top: 1px solid;
    padding: 10px 0 0;
}
.op_schedule .scheduleCellList.cellHead {
    display: none;
}
.op_schedule .scheduleCellList {
    display: block;
}
.op_schedule .scheduleCellList li {
    padding: 0;
    display: block;
    margin: 0 0 10px;
}
.op_schedule .scheduleCellList li:after {
    content:none;
}
.op_schedule .scheduleCellList .scheduleDate {
    width: 100%;
    display: inline-block;
    font-size: 140%;
    margin: 0 0 5px;
}
.op_schedule .scheduleCellList .scheduleDate .scheduleInner .txt{
    display: block;
    width: 100%;
}
.op_schedule .scheduleCellList .scheduleDate .week {
    font-size: 40%;
    vertical-align: 0;
}
.op_schedule .scheduleCellList .scheduleDate .area {
    margin: 0 0 0 2px;
}
.op_schedule .scheduleCellList .scheduleVenue {
    width: 100%;
    font-size: 120%;
    font-weight: 600;
}
.op_schedule .scheduleCellList .scheduleTime {
    width: 100%;
    font-size: 100%;
}
.op_schedule .scheduleCellList .scheduleTime span {
    display: block;
    font-size: 70%;
    line-height: 1em;
    margin: 0 0 3px;
}
.op_schedule .scheduleCellList .scheduleInfo {
    width: 100%;
    font-size: 100%;
    margin: 0;
}
.op_schedule .scheduleCellList .scheduleInfo .fa-info-circle{
    display:inline-block;
}
}


/*===================================================
  OP:DETAIL
====================================================*/
.op_detail{

}
.op_detail .detailList {
    display: flex;
    padding: 1.75rem 0;
    align-items: stretch;
    border-bottom: 1px solid;
    font-size: 1rem;
}
.op_detail .detailList:first-child{
    border-top: 1px solid;
}
.op_detail .detailList:last-child{
    margin: 0;
}
.op_detail .detailList dt {
    width: 20%;
    padding: 0 1rem 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.6em;
    font-size: 0.95rem;
}
.op_detail .detailList dt:before{
}
.op_detail .detailList dt .txt{
    font-size: 100%;
    line-height: 1.5em;
}
.op_detail .detailList dd{
    width: 80%;
    position: relative;
    padding: 0 0 0 40px;
    display: flex;
    align-items: center;
}
.op_detail .detailList dd:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #FFF;
}
.op_detail .detailList dd > *{
    margin-bottom:20px;
}
.op_detail .detailList dd > *:last-child{
    margin-bottom:0;
}
.op_detail .detailList dd .detailInner{
    width:100%;
}
.op_detail .detailList dd .detailInner > *{
    margin-bottom:10px;
}
.op_detail .detailList dd .detailInner  > *:last-child{
    margin-bottom:0;
}


/* OP:DETAIL:SP-max-769 */
@media screen and (max-width: 960px){
.op_detail .detailList {
    display: block;
    padding: 1.5rem 0;
}
.op_detail .detailList dt {
    width: 100%;
    padding: 0 0 0 8px;
    margin: 0 0 10px;
    font-size: 0.98rem;
    font-weight: 600;
    border-left: 3px solid;
}
.op_detail .detailList dd {
    width: 100%;
    position: relative;
    padding: 0;
}
.op_detail .detailList dd:before {
    content: none
}
}
/*===================================================
  OP:TICKET
====================================================*/
.op_ticket{

}
.op_ticket .ticketList{
    margin-bottom: 20px;
    color: #000;
}
.op_ticket .ticketList:last-child{
    margin-bottom: 0;
}
.op_ticket .tikcetTit {
    background: #ffffff;
    padding: 3rem 3.5rem;
    font-size: 100%;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: 2rem;
    transition: 0.3s ease;
    background: linear-gradient(180deg, #ffffff40, #ffffff17);
    border-top: 1px solid #ffffff63;
    border-bottom: 1px solid #ffffff29;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    color: #fff;
}
.op_ticket .tikcetTit.open{
    border-radius: 2rem 2rem 0 0;
    border: none;
}
.op_ticket .end .tikcetTit:after{
    content: "受付終了";
    font-size: 70%;
    background: #ff8888;
    color: #FFF;
    line-height: 1em;
    padding: 3px 7px;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    margin: 0 0 0 10px;
}
.op_ticket .tikcetTit .arrow {
    position: absolute;
    top: 50%;
    right: 50px;
    width: 12px;
    height: 12px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}
.op_ticket .tikcetTit.open .arrow{
    transform: translateY(-50%);
}
.op_ticket .tikcetTit .arrow:before {
    content: "";
    position: absolute;
    top: 25%;
    width: 100%;
    height: 100%;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
}
.op_ticket .tikcetTit .txt {
    display: flex;
    position: relative;
    font-size: 140%;
    margin: 0 0 10px;
    align-items: center;
}
.op_ticket .tikcetTit .txt .blueTicket {
    font-size: 65%;
    background: #225aa5;
    color: #FFF;
    line-height: 1em;
    padding: 5px 10px 3px;
    border-radius: 100px;
    margin: 0 0 0 10px;
}
.op_ticket .tikcetTit .date {
    font-size: 110%;
}
.op_ticket .tikcetTit .date span {
    padding: 0 20px 0 0;
    border-right: 1px dashed;
    margin: 0 20px 0 0;
}
.op_ticket .tikcetDetail {
    display: none;
    padding: 3rem 3.5rem;
    background: #ffffff;
    border-radius: 0 0 2rem 2rem;
}
.op_ticket .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 1.5rem 0;
    align-items: stretch;
    font-size: 1.1rem;
}
.op_ticket .detailList:first-child{
    border-top: 1px solid;
}
.op_ticket .detailList:last-child{
    margin: 0;
}
.op_ticket .detailList dt{
    width: 20%;
    padding: 0 40px 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.6em;
}
.op_ticket .detailList dt:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #000;;
}
.op_ticket .detailList dd{
    width: 80%;
    position: relative;
    padding: 0 0 0 40px;
    display: flex;
    align-items: center;
}
.op_ticket .detailList dd:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #000;
}

.op_ticket .detailList dd > *{
    margin-bottom:20px;
}
.op_ticket .detailList dd > *:last-child{
    margin-bottom:0;
}
.op_ticket .detailList dd .detailInner{
    width:100%;
}
.op_ticket .detailList dd .detailInner > *{
    margin-bottom:10px;
}
.op_ticket .detailList dd .detailInner  > *:last-child{
    margin-bottom:0;
}

/* OP:TICKET:PC-min-770 */
@media screen and (min-width: 960px){
.op_ticket .tikcetTit:hover{
    background: #fb003e;
    color: #fff;
}
}

/* OP:TICKET:SP-max-769 */
@media screen and (max-width: 960px){
.op_ticket .tikcetDetail {
    padding: 1.5rem 1.5rem;
}
.op_ticket .tikcetTit {
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    border-radius: 1.5rem;
}
.op_ticket .tikcetTit .arrow {
    right: 1rem;
    width: 10px;
    height: 10px;
}
.op_ticket .detailList {
    display: block;
    padding: 1.2rem 0;
    font-size: 0.92rem;
}
.op_ticket .detailList dt {
    width: 100%;
    padding: 0;
    margin: 0 0 0.5em;
    font-size: 0.9rem;
    color: #fb003e;
    letter-spacing: 0.1em;
}
.op_ticket .detailList dd {
    width: 100%;
    position: relative;
    padding: 0;
}
.op_ticket .detailList dd:before {
    content: none
}
.op_ticket .tikcetTit .date {
    line-height: 1.5;
    font-size: 0.92rem;
}
.op_ticket .tikcetTit .date span {
    display: block;
    border-right: none;
    margin: 0 0 0.5rem;
    border: 1px solid;
    width: fit-content;
    padding: 0.25rem 0.5rem;
    font-size: 0.92rem;
}

.op_ticket .tikcetTit .txt {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    border-bottom: 1px dashed;
    padding-bottom: 1rem;
}


}


/*===================================================
  OP:GOODS
====================================================*/
.op_goods{

}
.op_goods .goodsList{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.op_goods .goodsList:after{
    content:"";
    width: calc(33% - 20px);
}
.op_goods .goodsList li{
    width: calc(33% - 20px);
    margin: 0 0 40px;
}
.op_goods .goodsList li a{
    color: unset;
}
.op_goods .goodsList .goodsImage{
    line-height: 0;
    margin: 0 0 10px;
    overflow: hidden;
}
.op_goods .goodsList .goodsImage img{
    transition: 0.5s ease;
}
.op_goods .goodsList .goodsName{

}
.op_goods .goodsList .goodsPrice{
    font-size: 90%;
}
.op_goods .goodsPop {
  display:none;
    width: 100%;
    height: 100%;
    color: #fff;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.op_goods .goodsPop.popActive {
  display:block;
}
.op_goods .goodsPop .popupShade{
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 0;
}
.op_goods .goodsPop .popTit{
    text-align: center;
    font-size: 30px;
    line-height: 1em;
    margin: 0 0 60px;
    color: #000;
    letter-spacing: 0.1em;
}
.op_goods .goodsPop .close {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 50px;
    top: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    transform: rotate(45deg);
    background: #000;
    border-radius: 100px;
}
.op_goods .goodsPop .close::before,
.op_goods .goodsPop .close::after {
    content: '';
    display: inline-block;
    width: 60%;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 50%;
    top: 50%;
}
.op_goods .goodsPop .close::before {
  transform: translate(-50%,-50%);
}
.op_goods .goodsPop .close::after {
    transform: translate(-50%,-50%) rotate(90deg);
}
.op_goods .goodsPop .popInBox {
    width: 90%;
    max-width: 1200px;
    margin: 100px auto;
    background: #f7f7f7;
    padding: 40px;
    color: #000;
    border-radius: 20px;
}
.op_goods .goodsPop .name {
    font-size: 180%;
    margin: 0 0 10px;
    text-align: center;
    font-weight: 500;
}
.op_goods .goodsPop .price {
    font-size: 100%;
    font-weight: 500;
    margin: 0 0 40px;
    text-align: center;
}
.op_goods .goodsPop .popInBox .columnBox {
    margin: 0;
    box-sizing: border-box;
    display: flex;
}
.op_goods .goodsPop .thumb {
    width: 45%;
}
.op_goods .goodsPop .column {
    width: 55%;
    padding: 0 0 0 40px;
}
.op_goods .goodsPop .detailList dt {
    width: 25%;
}
.op_goods .goodsPop .detailList dd {
    width: 75%;
}
.op_goods .goodsPop .detailList dt {
    width: 30%;
}
.op_goods .goodsPop .goodsImage{
    line-height: 0;
    margin: 0 0 10px;
}
.op_goods .goodsPop .sizeChart {
    display: flex;
}
.op_goods .goodsPop .sizeChart li {
    width: 20%;
    text-align: center;
    font-size: 14px;
}
.op_goods .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 0 0 15px;
    margin: 0 0 15px;
    align-items: stretch;
}
.op_goods .detailList:first-child{
    border-top: 1px solid;
    padding: 15px 0 15px;
}
.op_goods .detailList:last-child{
    margin: 0;
}
.op_goods .detailList dt{
    width: 20%;
    padding: 0 40px 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.6em;
}
.op_goods .detailList dt:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #000;;
}
.op_goods .detailList dd{
    width: 80%;
    position: relative;
    padding: 0 0 0 40px;
    display: flex;
    align-items: center;
}
.op_goods .detailList dd:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #000;
}
.op_goods .detailList dd > *{
    margin-bottom:20px;
}
.op_goods .detailList dd > *:last-child{
    margin-bottom:0;
}
.op_goods .detailList dd .detailInner{
    width:100%;
}
.op_goods .detailList dd .detailInner > *{
    margin-bottom:10px;
}
.op_goods .detailList dd .detailInner  > *:last-child{
    margin-bottom:0;
}


/* OP:GOODS:PC-min-770 */
@media screen and (min-width: 960px){
.op_goods .goodsList li a:hover .goodsImage img{
    transform:scale(1.2);
}

}

/* OP:GOODS:SP-max-769 */
@media screen and (max-width: 960px){

.op_goods .goodsList li {
    width: calc(50% - 10px);
    margin: 0 0 20px;
}
.op_goods .goodsList .goodsName {
    line-height: 1.3em;
    font-size: 90%;
}
.op_goods .goodsList .goodsPrice {
    font-size: 80%;
}
.op_goods .goodsPop .close {
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
}
.op_goods .goodsPop .popInBox {
    padding: 20px;
    margin: 60px auto;
}
.op_goods .goodsPop .name {
    font-size: 140%;
}
.op_goods .goodsPop .price {
    margin: 0 0 20px;
}
.op_goods .goodsPop .comment{
    margin: 0 0 20px;
}
.op_goods .goodsPop .popInBox .columnBox {
    display: block;
}
.op_goods .goodsPop .thumb {
    width: 100%;
}
.op_goods .goodsPop .column {
    width: 100%;
    padding: 0;
}
.op_goods .goodsPop .detailList dt {
    width: 100%;
}
.op_goods .goodsPop .detailList dd {
    width: 100%;
}
.op_goods .detailList {
    display: block;
}
.op_goods .detailList dt {
    width: 100%;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
    font-size: 80%;
    border-left: 5px solid;
}
.op_goods .detailList dd {
    width: 100%;
    position: relative;
    padding: 0;
}
.op_goods .detailList dd:before {
    content: none
}
}


/*===================================================
  OP:RELEASE
====================================================*/
.op_release{

}
.op_release .releaseBlock{
    display: flex;
    margin: 0 0 60px;
    position: relative;
    flex-wrap: wrap;
}

.op_release .releaseBlock .releaseDetail{
    width: 55%;
    margin: 0 0 0 45%;
}
.op_release .releaseBlock:last-child{
    margin-bottom:0;
}
.op_release .releaseBlock:nth-child(even) .releaseDetail{
    margin: 0 45% 0 0;
}
.op_release .releaseBlock .releaseDetail > *{
    margin: 0 0 20px;
}
.op_release .releaseBlock .releaseDetail > *:last-child{
    margin: 0;
}
.op_release .releaseBlock .tnumb{
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
}
.op_release .releaseBlock:nth-child(even) .tnumb{
    left: auto;
    right:0;
}
.op_release .releaseBlock .type{
    font-size: 200%;
    letter-spacing: 0.1em;
}
.op_release .releaseBlock .credit{
    display: flex;
    align-items: center;
}
.op_release .releaseBlock .credit span{
    border: 1px solid;
    display: inline-block;
    line-height: 1em;
    font-size: 90%;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 600;
    margin: 0 10px 0 0;
}
.op_release .releaseBlock .price{
    font-size: 140%;
    font-weight: 600;
}
.op_release .releaseBlock .price span{
    font-size: 60%;
}

.op_release .releaseBlock .trackBlock{

}
.op_release .releaseBlock .trackBlock dt{
    border-bottom: 1px solid;
    padding: 0 0 10px;
    margin: 0 0 15px;
    line-height: 1em;
    font-weight: 800;
}
.op_release .releaseBlock .trackBlock dd{
    display: flex;
}
.op_release .releaseBlock .trackList{
    margin: 0 40px 0 0;
}
.op_release .releaseBlock .trackList li{
    font-size: 80%;
    font-weight: 500;
    margin: 0 0 5px;
    line-height: 1.4em;
    text-indent: -2em;
    padding: 0 0 0 2em;
}
.op_release .releaseBlock .trackList li:last-child{
    margin: 0;
}
.op_release .releaseBlock .trackList li span{
    font-weight: 800;
    margin: 0 10px 0 0;
    letter-spacing: 0.02em;
}

/* OP:RELEASE:SP-max-769 */
@media screen and (max-width: 960px){
.op_release .releaseBlock .type{
    font-size: 180%;
}
.op_release .releaseBlock .tnumb {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    width: 100%;
}
.op_release .releaseBlock .releaseDetail {
    width: 100%;
    margin: 0;
}
.op_release .releaseBlock:nth-child(even) .releaseDetail {
    margin: 0;
}
}


/*===================================================
  footer
====================================================*/

footer{
    position: relative;
    padding: 60px;
}
footer .contentBox{
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: rgba(2, 38, 71, 0.667);
    border-radius: 40px;
    padding: 100px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

footer .contentInner h4{
    line-height: 0;
    max-width: 400px;
    margin-bottom: 40px;
}
footer .footerNav{
    margin-bottom: 40px;
}
footer .footerNav li {
    margin-bottom: 0.5rem;
}
footer .footerNav li:last-child{
    margin-bottom: 0rem;
}
footer .footerNav li a{
    color: #FFF;
    font-size: 90%;
}
footer .contentInner .credit{
    display: inline-block;
    font-size: 60%;
    font-weight: 500;
    color: #FFF;
}
footer .contentInner .credit span{
    display: inline-block;
    margin: 0 20px 0 0;
}

/* PC */
@media screen and (min-width: 960px){
footer .footerNav li a:hover{
    color: #fb003e;
}
}


/* SP-max-769 */
@media screen and (max-width: 960px){
footer {
    padding: 1.8rem;
}
footer .contentBox {
    padding: 3rem;
    border-radius: 1.5rem;
}
footer h2.footerLogo{
    line-height: 0;
    max-width: 200px;
    margin-bottom: 20px;
}
footer .contentInner h4 {
    margin-bottom: 20px;
}
footer .footerNav {
    margin-bottom: 20px;
}

footer .footerNav li a {
    font-size: 0.9rem;
    line-height: 1.5;
}
}





/*========================================

==========================================*/
.allContain:before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 150px;
    z-index: 2;
    background: linear-gradient(0deg, rgba(3, 10, 19, 0) 0%, rgba(3, 10, 19, 1) 100%);
    pointer-events: none;
}
body:not(.topPage) .allContain:before{
    opacity: 1;
    z-index: 2;
}



.bgBox{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
.bgBox .bg01 {
    width: 85%;
    height: 100%;
    background-image: url(/static/kobukuro/official/feature/speciallive2026/images/kv_main_tW9hUbXK.jpg);
    background-size: contain;
    background-position: 50% 20%;
    transition: 1s ease;
    margin: 0 auto;
    background-repeat: no-repeat;
}

body:not(.topPage) .bgBox {
    opacity: 0.4;
}

.logo_scrl {
    height: 80vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: url(/static/kobukuro/official/feature/speciallive2026/images/bg_scrl_kobukuro_tW9hUbXK.png);
    background-size: 200vh;
    background-repeat: repeat-x;
    background-position: 0 6rem;
    mix-blend-mode: overlay;
    animation: bgscroll 30s linear infinite;
}

@keyframes bgscroll {
 0%   { background-position: 0 6rem; }
 100% { background-position: -200vh 6rem; }
}


/* SP */
@media screen and (max-width: 960px){
.allContain:before{
    display: none;
}

.bgBox .bg01 {
    background-image: url(/static/kobukuro/official/feature/speciallive2026/images/kv_main_sp_tW9hUbXK.jpg);
    background-position: center top;
    width: 100%;
    background-size: 100%;
}

.topPage.headerFix .bgBox .bg01 {
    opacity: 0.4;
}

.logo_scrl {
    background-size: 150vh;
}
@keyframes bgscroll {
 0%   { background-position: 0 3rem; }
 100% { background-position: -150vh 3rem; }
}

}


@media screen and (min-width:560px) and (max-width:960px ) {

}
/*========================================
    loader
==========================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.loader .loadingBg{
    position: absolute;
    left: 0%;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    transition: 0.5s ease;
}



/* SP */
@media screen and (max-width: 960px){
.loader .loadingBg {
    width: 300%;
}
}

/*========================================
    navigation
==========================================*/


body:not(.topPage) .headLogo a img{

}
@media screen and (max-width: 1279px) {

}

/*========================================
    topvisual
==========================================*/
.visual{
    z-index: 2;
}
.visual .kvVenue li a{
    color: #FFF;
}


/* act3 */
.visual .act3 {
    opacity: 1;
}
.act3 h1, .kvLead {
}




/* item3 */
.visual .item3 {
    width: 100%;
    max-width: 100%;
}
.visual .item3 h1 {
    padding: 8rem 0 0;
    width: 45%;
    max-width: 90vh;
    margin: 0 auto;
    opacity: 1;
}


/* PC */
@media screen and (min-width: 960px){

}

/* SP */
@media screen and (max-width: 960px){

.visual .item3 h1 {
    padding: 6rem 0 0;
    width: 75%;
}
.lodingEnd .visual .act9 {
    transform: translate(50%, 0);
}

.headerFix .act6 {
    transform: translate(-100%, 0);
}
.headerFix .visual .act7{
    transform: translate(100%, 0);
}
.visual .kvLead {
    padding: 0 5% 5.5rem;
    font-size: 0.9rem;
}

}


@media screen and (min-width:560px) and (max-width:960px ) {

}

/*========================================
    topNews
==========================================*/
.topNews{
}
.topNews .stickyBlock{
    width: 100%;
}
.topNews .contentBox{
    display: flex;
    align-items: flex-start;
    width: 100%;
}
.topNews .titBox {
    padding: 0 40px 0 0;
    width: 25%;
}
.topNews .titBox h2 {
    font-family: urw-din-condensed, sans-serif;
    font-size: 420%;
    margin: 0 0 10px;
    line-height: 1em;
    text-align: left;
}
.topNews .more{

}
.topNews .more a {
    font-family: urw-din-condensed, sans-serif;
    color: #fb003e;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.topNews .contentInner{
    padding: 0 0 0 40px;
    width: 75%;
}
.topNews .newsList{
    margin-bottom: 0;
}
.newsList li a {
    background: linear-gradient(180deg, #ffffff40, #ffffff17);
    padding: 2rem 3rem;
    border-radius: 1rem;
    width: 100%;
    margin: 0 auto 0.8rem;
    border-top: 1px solid #ffffff63;
    border-bottom: 1px solid #ffffff29;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    display: block;
}
.newsList li:last-child a {
    margin: 0;
}
.newsList li a{
    color: #FFF;
}
.newsList li .date {
    font-family: urw-din-condensed, sans-serif;
    font-size: 100%;
    font-weight: 600;
    color: #fb003e;
    line-height: 1em;
    margin: 0 0 0.5em;
    letter-spacing: 0.02em;
}
.newsList li .tit{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden; 
}
.newsList li .detail{
    font-size: 110%;
    letter-spacing: 0.1em;
    font-weight: 300;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
/* PC */
@media screen and (min-width: 960px){
.topNews .titBox .more a:hover{

}

}

@media screen and (max-width: 960px){


.topNews .contentBox {
    display: block;
}
.topNews .titBox {
    margin-right: 0;
    border-right: none;
    padding: 0;
    width: 100%;
    text-align: center;
}
.topNews .titBox h2 {
    font-size: 380%;
    margin: 0;
}
.topNews .contentInner {
    border-left: none;
    padding: 0;
    width: 100%;
}
.topNews .newsList {
}
.topNews .more {
    font-size: 90%;
    margin: 20px 0 0;
    text-align: right;
}

.newsList li a {
    font-size: 0.95rem;
    padding: 1.4rem 1.8rem;
    border-radius: 0.5rem;
}

}
/*========================================
    topSchedule
==========================================*/
.topSchedule {
    background: #022e68;
}

.topSchedule .contentBox {
    margin: 0 auto;
    box-sizing: border-box;
    background: transparent;
}
.topSchedule .titBox{

}
.topSchedule .titBox h2{
    text-align: center;
    font-family: urw-din-condensed, sans-serif;
}
.topSchedule .titBox h2 .lv1{
    display: block;
    font-size: 110%;
    letter-spacing: 0.1em;
    line-height: 1em;
    margin-bottom: 10px;
}
.topSchedule .titBox h2 .lv2{
    display: block;
    font-size: 75%;
    line-height: 1em;
    margin-bottom: 10px;
}
.topSchedule .titBox h2 .lv3{
    display: block;
    font-size: 220%;
    line-height: 1em;
    letter-spacing: 0.1em;
}




.topSchedule .overview{
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.topSchedule .overview .schWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.topSchedule .overview .schWrap .overviewInner {
    width: 48.5%;
    margin: 0;
    padding: 3rem;
    text-align: center;
}



.topSchedule .overview .anc{
    position: relative;
}
.topSchedule .overview .ancPoint{
    position: absolute;
    top:-100px;
}
.topSchedule .overview .overviewInner {
    background: linear-gradient(180deg, #ffffff40, #ffffff17);
    padding: 4rem;
    border-radius: 2rem;
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #ffffff63;
    border-bottom: 1px solid #ffffff29;
}
.topSchedule .overview .city {
    font-size: 2.3rem;
    font-family: urw-din-condensed, sans-serif;
    font-weight: 600;
    line-height: 1em;
    text-align: center;
    color: #f81c52;
    border-bottom: 1px solid;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    letter-spacing: 0.02em;
}
.topSchedule .overview .liveTitle{
    margin: 0 0 30px;
    border-bottom: 1px solid #000;
    padding: 0 0 30px;
    font-size: clamp(130%, 2.7vw, 180%);
    font-weight: 900;
    text-align: center;
    line-height: 1.4em;
    color: #fb003e;
}
.topSchedule .overview .liveTitle .lv3{
    display: block;
    font-size: 110%;
    line-height: 1.5em;
    margin-bottom: 10px;
}
.topSchedule .overview .liveTitle .lv1{
    display: block;
    font-size: 180%;
    padding: 15px 0 0;
}
.topSchedule .overview .date {
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1;
    margin: 0 0 0.8rem;
}
.topSchedule .overview .venue {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1em;
    margin: 0 0 1.2rem;
}
.topSchedule .overview .time {
    font-family: urw-din-condensed, sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-size: 1.2rem;
    border: 1px solid;
    width: fit-content;
    margin: 0 auto;
    padding: 0.2em 1em;
    border-radius: 5rem;
}

.topSchedule .overview .time span {
    font-size: 0.8em;
}


.topSchedule .overview .ticketPriceList {
    display: flex;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.topSchedule .overview .ticketPriceList:last-of-type{
    margin-bottom: 0px;
}
.topSchedule .overview .ticketPriceList dt {
    width: 40%;
}
.topSchedule .overview .ticketPriceList dd {
    width: 60%;
    position: relative;
    font-weight: 700;
    text-align: right;
}

.topSchedule .overview .ticketPriceList dd .priceTxt {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.2em;
}

.topSchedule .overview .ticketPriceList dt .ticketKind {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}


.topSchedule .overview .op_detail .detailList {
    border-bottom: 1px dotted #ffffff45;
}
.topSchedule .overview .op_detail .detailList:last-child {
    border-bottom: 1px solid;
}
.topSchedule .overview .op_detail .detailList dt{

}
.topSchedule .overview .op_detail .detailList dd{

}
.topSchedule .overview .op_detail .detailList dd:before {
    content: none;
}
.topSchedule .overview .op_detail .detailList dd .creditlogo {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.topSchedule .overview .op_detail .detailList dd .creditlogo a {
    display: block;
    width: 50%;
    max-width: 150px;
    line-height: 0;
}
.topSchedule .overview + .btn {
    margin-bottom: 0;
}


.topSchedule .scheduleList{
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
.topSchedule .scheduleList li{
    width: 400px;
    background: #FFF;
    color: #000;
    padding: 40px;
    border-radius: 40px;
    margin: 0 20px;
    text-align: center;
    text-align: center;
}
.topSchedule .scheduleList li .city{
    font-size: 380%;
    font-family: urw-din-condensed, sans-serif;
    font-weight: 600;
    line-height: 1em;
    margin: 0 0 40px;
    border-bottom: 1px solid;
    padding: 0 0 30px;
}
.topSchedule .scheduleList li .date{
    font-weight: 600;
    font-size: 120%;
    line-height: 1em;
    margin: 0 0 10px;
}
.topSchedule .scheduleList li .venue{
    font-weight: 600;
    font-size: 120%;
    line-height: 1em;
    margin: 0 0 10px;
}
.topSchedule .scheduleList li .time{
    font-weight: 600;
    font-size: 90%;
}

.topSchedule .price{
    display: flex;
    justify-content: center;
    font-size: 180%;
    font-weight: 700;
    margin: 0 0 40px;
}
.topSchedule .price dt{
    font-size: 60%;
    padding: 0 40px 0 0;
    margin: 0 20px 0 0;
    position: relative;
}
.topSchedule .price dt:before{
    content: "";
    width: 20px;
    height: 1px;
    background: #FFF;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
}
.topSchedule .price dd{

}
.topSchedule .price dd span{

}
.topSchedule .attention{
    text-align: center;
    margin-bottom: 60px;
}
.topSchedule .attention span{
    display: inline-block;
    border: 1px solid;
    line-height: 1em;
    padding: 10px 15px 8px;
    border-radius: 100px;
    font-size: 75%;
    font-weight: 500;
}
.topSchedule .btn{
    text-align: center;
    margin-bottom: 60px;
}
.topSchedule .btn a{
  display: inline-block;
}
.topSchedule .op_detail {

}
.topSchedule .op_detail dt{
}
.topSchedule .op_detail dd {
    font-size: 0.95rem;
}


/* SP */
@media screen and (max-width: 960px){

.topSchedule .overview .ancPoint{
    position: absolute;
    top:-30px;
}

.topSchedule .schedule_tit {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.topSchedule .overview {
    gap: 2rem;
    margin-bottom: 3rem;
}

.topSchedule .overview .overviewInner {
    padding: 1.5rem;
    border-radius: 1rem;
}

.topSchedule .overview .schWrap .overviewInner {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 1.2rem;
}
.topSchedule .overview .schWrap .overviewInner:last-child {
    margin-bottom: 0;
}


.topSchedule .overview .city {
    font-size: 1.8rem;
    margin-bottom: 1.7rem;
}
.topSchedule .overview .liveTitle {
    font-size: clamp(80%, 4vw, 260%);
    margin: 0 0 20px;
    border-bottom: 1px solid;
    padding: 0 0 20px;
}
.topSchedule .overview .liveTitle .lv3 {
        font-size: 70%;
        margin-bottom: 5px;
}
.topSchedule .overview .liveTitle .lv1 {
        font-size: 128%;
        letter-spacing: 0.03em;
        padding: 5px 0 0;
}

.topSchedule .overview .ticketPriceList {
    display: block;
}
.topSchedule .overview .ticketPriceList dt {
    width: 100%;
    font-size: 85%;
    font-weight: 600;
    margin-bottom: 1rem;
}

.topSchedule .overview .ticketPriceList dd .priceTxt {
    font-size: 2.3rem;
}

.topSchedule .overview .ticketPriceList dd .tax {
    font-size: 1rem;
}


.topSchedule .overview .ticketPriceList dd {
    width: 100%;
    font-size: 110%;
}
.topSchedule .overview .ticketPriceList dd:before {
    content:none;
}

.topSchedule .overview .ticketPriceList dt .ticketKind {
    font-size: 1.5rem;
}


.topSchedule .scheduleList{
    display: block;
    margin-bottom: 40px;
}
.topSchedule .scheduleList li {
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 20px;
    padding: 20px;
}
.topSchedule .scheduleList li .city {
    font-size: 320%;
    font-family: urw-din-condensed, sans-serif;
    font-weight: 600;
    line-height: 1em;
    margin: 0 0 20px;
    border-bottom: 1px solid;
    padding: 0 0 20px;
}
.topSchedule .price dd{
    font-size: 80%;
}
.topSchedule .price {
    margin: 0 0 20px;
}
.topSchedule .attention {
    margin-bottom: 40px;
}

}

/*========================================
    topInformation
==========================================*/
.topInformation{
    background: #FFF;
    padding: 100px 60px;
}
.topInformation .contentBox {
    padding: 0;
    background: transparent;
}
.topInformation .noticeList{
    display: flex
;
    justify-content: center;
}
.topInformation .noticeList li{
    position: relative;
}
.topInformation .noticeList li:nth-child(odd){

}
.topInformation .noticeList li:nth-child(odd):before {

}

.topInformation .noticeList li a{
    text-align: center;
    display: block;
    color: #000;
    padding: 0 40px 0 0;
}
.topInformation .noticeList li .noticeTit{
    position: relative;
    font-size: 130%;
    font-weight: 600;
    margin: 0 0 5px;
    padding: 0 20px 0 0;
}
.topInformation .noticeList li .noticeTxt{
    font-size: 80%;
}
.topInformation .noticeList li a span{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid;
    border-right: 1px solid;
    width: 10px;
    height: 10px;
}

/* SP */
@media screen and (max-width: 960px){

.topInformation,
body:not(.topPage) section.topInformation {
    background: #FFF;
    padding: 40px 20px;
}
.topInformation .noticeList {
    display: block;
}
.topInformation .noticeList {
    display: block;
}
.topInformation .noticeList li {
    margin: 0 0 20px;
}
.topInformation .noticeList li:last-child{
    margin: 0;
}
.topInformation .noticeList li:nth-child(odd) {
    padding-right: 0;
}
.topInformation .noticeList li:nth-child(odd):before{
    content: none;
}
.topInformation .noticeList li .noticeTit {
    font-size: 90%;
    margin: 0;
    padding: 0;
}
.topInformation .noticeList li a {
    text-align: left;
    position:relative;
}
.topInformation .noticeList li a span{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid;
    border-right: 1px solid;
    width: 6px;
    height: 6px;
}
.topInformation .noticeList li .noticeTxt {
    font-size: 70%;
}
.topInformation .noticeList li:before{

    bottom: -9px;
}

}
/*========================================
    pageNews
==========================================*/

.newsBox .contentBox{
}

.newsBox .titBox{
}
.titBox h2{
    font-family: urw-din-condensed, sans-serif;
    text-align: center;
    font-size: 600%;
    line-height: 1em;
    letter-spacing: 0.01em;
}
.titBox .cap{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}


/* SP */
@media screen and (max-width: 960px){
.newsBox .contentBox {
}
.newsBox .titBox {
}
.titBox h2 {
    font-size: 4.5rem;
}
.titBox .cap {
    font-size: 0.95rem;
    line-height: 1;
}
}

/*========================================
    pageNewsDetail
==========================================*/
.pageNewsDetail{

}

.pageNewsDetail .newsBox .contentInner {
    background: linear-gradient(180deg, #ffffff40, #ffffff17);
    padding: 4rem 4rem;
    border-radius: 1rem;
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #ffffff63;
    border-bottom: 1px solid #ffffff29;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}

.pageNewsDetail .newsBox .contentInner .date {
    font-family: urw-din-condensed, sans-serif;
    font-weight: 600;
    color: #fb003e;
    line-height: 1em;
    margin: 0 0 0.5em;
    letter-spacing: 0.02em;
    font-size: 1.3rem;
}

.pageNewsDetail .newsBox .contentInner .tit {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}



.pageNewsDetail .contentInner{

}
.pageNewsDetail .contentInner .date{

}
.pageNewsDetail .contentInner .tit{
    font-size: 200%;
}
.pageNewsDetail .contentInner .txtBox {
    font-size: 1rem;
    margin-bottom: 2rem;
    background: #FFF;
    color: #333333;
    padding: 2rem 2.5rem;
    border-radius: 1.5rem;
}
.pageNewsDetail .detail__btn{

}
.pageNewsDetail .detail__btn a{
    display: block;
    font-size: 90%;
    font-weight: 600;
    position: relative;
    padding: 0 0 0 40px;
    color: #FFF;
}
.pageNewsDetail .detail__btn a .arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 0;
    border: 1px solid;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    transform: translate(0, -50%);
}
.pageNewsDetail .detail__btn a .arrow:before{
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid;
    border-right: 1px solid;
    position: absolute;
    left: 43%;
    transform: rotate(-135deg);
}


/* SP */
@media screen and (max-width: 960px){

.pageNewsDetail .newsBox .contentInner {
    padding: 2rem 1.6rem;
}

.pageNewsDetail .newsBox .contentInner .date {
    font-size: 1.1rem;
}

.pageNewsDetail .newsBox .contentInner .tit {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.pageNewsDetail .contentInner .txtBox {
    margin-bottom: 1.5rem;
    padding: 1.5rem 1.2rem;
    border-radius: 1rem;
    font-size: 0.92rem;
    line-height: 1.8;
}

.pageNewsDetail .detail__btn a {
    font-size: 1rem;
}

}


/*========================================
    pageTicket
==========================================*/



.ticketBox .btnList{

}
.ticketBox .btnList li{

}
.ticketBox .btnList li a {
    display: block;
    background: #fb003e;
    text-align: center;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFF;
    width: 22rem;
    border-radius: 1.2rem;
}
.ticketBox .tradeBtnList {
    width: 25rem;
    margin: 0 auto 6rem;
    text-align: center;
}
.ticketBox .tradeBtnList dt{
    line-height: 1.4em;
    font-size: 90%;
    margin: 0 0 10px;
}
.ticketBox .tradeBtnList dd{

}
.ticketBox .tradeBtnList dd a {
    display: block;
    background: #2c73d2;
    text-align: center;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFF;
    width: 100%;
    border-radius: 1.2rem;
}

.ticketBox  .detailBlock{
    margin-bottom: 40px;
}
.ticketBox  .detailBlock:last-child{
    margin-bottom:0;
}
.ticketBox .detailList .type .inner {
    display: flex;
    margin: 0 0 20px;
    align-items: stretch;
}
.ticketBox .detailList .type .inner:last-child {
    display: flex;
    margin: 0 0 0px;
    align-items: stretch;
}
.ticketBox .detailList .type .typeTit {
    border: 1px solid;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 85px;
    text-align: center;
}
.ticketBox .detailList .type .typeDetail {
    padding: 0 0 0 20px;
}
.ticketBox .detailList .type .typeDetail .memberStatus {
    display: flex;
    flex-wrap: wrap;
}
.ticketBox .detailList .type .typeDetail .memberStatus li {
    background: #393939;
    margin: 0 10px 0 0;
    padding: 5px 10px 5px;
    border-radius: 5px;
    line-height: 1em;
    font-size: 90%;
    font-weight: 500;
    color: #FFF;
}
.ticketBox .detailList .type .typeDetail .memberStatus li.stTce {
    background: #FB7119;
}
.ticketBox .detailList .type .typeDetail .memberStatus li.stTe {
    background: #0088B1;
}
.ticketBox .detailList .type .typeDetail .memberStatus li.stCe {
    background: #3AA9F0;
}
.op_ticket .tikcetTit.open {
    background: #fb003e;
    color: #fff;
}



/* SP */
@media screen and (max-width: 960px){


.ticketBox .titBox h2 {
    font-size: 400%;
}
.ticketBox .btnList li a{
    width: 100%;
}
.ticketBox .tradeBtnList {
    width: 100%;
    margin: 0 auto 40px;
}

.ticketBox .detailBlock {
    margin-bottom: 20px;
}
.ticketBox .detailList .type .typeDetail .memberStatus li {
    margin: 5px 5px 0 0;
}
.ticketBox .tradeBtnList dt {
    text-align: left;
}
}
/*========================================
    pageTrade
==========================================*/


.tradeBox .intro .txt{
    font-size: 140%;
    text-align: center;
    font-weight: 500;
    margin: 0 0 20px;
}
.tradeBox .intro .thumb{
    line-height: 0;
    width: 500px;
    margin: 0 auto 20px;
}
.tradeBox .intro .thumb img{

}
.tradeBox .intro .cap{
    text-align: center;
    font-weight: 600;
    font-size: 90%;
}

.tradeBox .inBox{
    background: transparent;
    color: #FFF;
    padding: 0;
}
.tradeBox .inBox h3 {
    font-size: 2rem;
    margin: 0 0 40px;
    border-left: 7px solid;
    padding: 0 0 0 10px;
    font-weight: bold;
}
.tradeBox .captionList{
    border: 2px solid;
    text-align: center;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 20px;
}
.tradeBox .captionList dt{
    font-size: 160%;
    font-weight: 600;
    margin: 0 0 15px;
}
.tradeBox .captionList dd{

}
.tradeBox .meritList {
    padding: 4rem;
    margin: 0 0 2.5rem;
    position: relative;
    border-radius: 40px;
    background: linear-gradient(180deg, #ffffff40, #ffffff17);
    border-top: 1px solid #ffffff63;
    border-bottom: 1px solid #ffffff29;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}
.tradeBox .meritList:last-child{
    margin: 0;
}
.tradeBox .meritList dt{
    font-size: 140%;
    font-weight: 600;
    margin: 0 0 20px;
}
.tradeBox .meritList dt span {
    position: absolute;
    top: -10px;
    left: -10px;
    color: #FFF;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    z-index: 1;
    background: #fb003e;
    border-radius: 100px;
}
.tradeBox .meritList dt span:before{
}
.tradeBox .meritList dt .txt{

}
.tradeBox .meritList dt .txt span{
    font-weight: 600;
    color: #ff9222;
    padding: 0 3px 0 0;
}
.tradeBox .meritList dd{

}
.tradeBox .meritList dd > *{
    margin: 0 0 20px;
}
.tradeBox .meritList dd > *:last-child{
    margin: 0;
}
.tradeBox .meritList dd .txt{

}
.tradeBox .meritList .innerLink{

}
.innerLink a {
    text-decoration: underline;
}
.tradeBox .meritList .innerLink a span{

}

.tradeBox .tradeDetail{

}
.tradeBox .tradeDetail .ticketType{
    color: #000;
    border-radius: 20px;
    overflow: hidden;
}
.tradeBox .tradeDetail .ticketType.negType{
    margin: 0 0 100px;
}
.tradeBox .tradeDetail .ticketCellList{
    display: flex;
}
.tradeBox .tradeDetail .ticketCellList:not(:last-child){
    border-bottom: 2px solid;
}
.tradeBox .tradeDetail .ticketCellList li{
    width: 34%;
    padding: 20px;
    display: flex;
    align-items: center;
}
.tradeBox .tradeDetail .ticketCellList li:not(:last-child){
    border-right: 2px solid;
}
.tradeBox .tradeDetail .ticketCellList.cellHead li{
    justify-content: center;
    font-size: 90%;
    font-weight: 600;
    background: #efefef;
}
.tradeBox .tradeDetail .ticketCellList.cellBlue li{
    background: #dff2ff;
}
.tradeBox .tradeDetail .ticketCellList.cellYellow li{
    background: #fff4dc;
}
.tradeBox .tradeDetail .ticketCellList .ticketName{
    justify-content: center;
    font-size: 90%;
    font-weight: 600;
    width: 36%;
}
.tradeBox .tradeDetail .ticketCellList .ticketCaption{
    width: 64%;
}
.tradeBox .tradeDetail .ticketCellList .ticketCaption .txtInfo{
    font-size: 80%;
    line-height: 1.4em;
    margin: 10px 0 0;
    font-weight: 500;
}
.tradeBox .tradeDetail .ticketCellList .ticketSall{
    width: 32%;
    font-size: 90%;
}
.tradeBox .tradeDetail .ticketCellList .ticketBuy{
    width: 32%;
    font-size: 90%;
}
.tradeBox .tradeDetail .ticketCellList .cellInner{

}
.tradeBox .tradeDetail .ticketCellList .cellInner .txt{

}
.tradeBox .tradeDetail .ticketCellList .cellInner .ticketName .txt{
    justify-content: center;
}
.tradeBox .tradeDetail .ticketCellList .cellInner .txt .blueTicket{
    display: block;
    width: 100px;
    font-size: 75%;
    background: #3AA9F0;
    color: #FFF;
    line-height: 1em;
    padding: 10px 10px 8px;
    border-radius: 100px;
    margin: 0 auto 10px;
    text-align: center;
}
.tradeBox .tradeDetail .ticketCellList .cellInner .txt .yellowTicket{
    display: block;
    width: 100px;
    font-size: 75%;
    background: #FFBE31;
    color: #FFF;
    line-height: 1em;
    padding: 10px 10px 8px;
    border-radius: 100px;
    margin: 0 auto 10px;
    text-align: center;
}
.tradeBox .tradeDetail .ticketCellList .cellInner .txt .senko{
    display: block;
    margin: 0 0 5px;
    padding: 0 0 0 20px;
    position: relative;
    line-height: 1.3em;
}
.tradeBox .tradeDetail .ticketCellList .cellInner .txt .senko:before{
    content: "・";
    position: absolute;
    left: 0;
}
.tradeBox .tradeDetail .ticketCellList .cellInner .txt .senko:last-child{
    margin: 0;
}
.tradeBox .ticketChange{
    background: #efefef;
    padding: 40px;
    margin: 0 0 100px;
}
.tradeBox .ticketChange h3{

}
.tradeBox .changeType{
    background: #FFF;
    color: #000;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 0 40px;
}
.tradeBox .changeType:last-child{
    margin: 0;
}
.tradeBox .changeTypeTit{
    font-size: 120%;
    font-weight: 500;
    display: block;
    text-align: left;
    padding: 15px 20px;
}
.tradeBox .changeTypeTit.dTicket{
    color: #e9537d;
}
.tradeBox .changeTypeTit.pTicket{
    color: #009688;
}
.tradeBox .changeDetail{
    border-top: 4px solid #d8d8d8;
    display: flex;
}
.tradeBox .changeDetail dt{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 4px solid #d8d8d8;
    font-size: 120%;
    font-weight: 500;
    background: #fcfcfc;
    padding: 20px;
}
.tradeBox .changeDetail dd{
    width: 70%;
}
.tradeBox .changeDetail .changeFlow{

}
.tradeBox .changeDetail .changeFlow li{
    border-bottom: 4px solid #d8d8d8;
    display: flex;
    padding: 20px;
    justify-content: space-between;
    font-size: 120%;
    font-weight: 500;
}
.tradeBox .changeDetail .changeFlow li:last-child{
    border-bottom: none;
}
.tradeBox .changeDetail .changeFlow li .changeBefore{
    width: 43%;
    text-align: center;
}
.tradeBox .changeDetail .changeFlow li .changeBefore span{
    background: #d8d8d8;
    padding: 20px;
    display: block;
    border-radius: 10px;
}
.tradeBox .changeDetail .changeFlow li .changeArrow{
    width: 20%;
    text-align: center;
    position: relative;
}
.tradeBox .changeDetail .changeFlow li .changeArrow:before{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50%;
    height: 2px;
    background: #000;
    transform: translate(-50%,-50%);
}
.tradeBox .changeDetail .changeFlow li .changeArrow:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 25%;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: translate(0,-50%) rotate(45deg);
}
.tradeBox .changeDetail .changeFlow li .changeAfter{
    width: 43%;
    text-align: center;
}

.tradeBox .changeDetail .changeFlow li .changeAfter span{
    background: #FFF;
    padding: 20px;
    display: block;
    border-radius: 10px;
}
.tradeBox .changeDetail .changeFlow li .changeAfter span.afterD{
    background: #E9537D;
    color: #FFF;
}
.tradeBox .changeDetail .changeFlow li .changeAfter span.afterP{
    background: #009688;
    color: #FFF;
}
.tradeBox .serviceDetail {
    padding: 4rem;
    margin: 0 0 80px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff40, #ffffff17);
    border-top: 1px solid #ffffff63;
    border-bottom: 1px solid #ffffff29;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}
.tradeBox .serviceDetail h3{

}
.tradeBox .serviceDetail .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 10px;
    line-height: 1.6;
}
.tradeBox .serviceDetail .cautionList{
    margin: 0 0 40px;
}
.tradeBox .serviceDetail .op_detail{
    margin: 0 0 40px;
}
.tradeBox .serviceDetail .op_detail .inList{

}
.tradeBox .serviceDetail .op_detail .inList li{
    padding: 0 0 0 15px;
    margin: 0 0 10px;
}
.tradeBox .serviceDetail .op_detail .inList li:first-child{
    border-left: 5px solid;
    padding: 0 0 0 10px;
    line-height: 1em;
    font-weight: 500;
}
.tradeBox .serviceDetail .op_detail .inList li:last-child{
    margin: 0;
}
.tradeBox .serviceDetail .op_detail .inList li span{
    font-size: 80%;
    background: #848484;
    border-radius: 2px;
    padding: 2px 10px;
    color: #FFF;
    margin: 0 10px 0 0;
    vertical-align: 1px;
}
.tradeBox .serviceDetail h4{
    font-size: 160%;
    margin: 0 0 20px;
}

.tradeBox .serviceDetail .serviceCaution{

}
.tradeBox .serviceDetail .serviceCaution li{
    font-size: 100%;
    margin: 0 0 20px;
    font-weight: 500;
    border-bottom: 1px dashed;
    padding: 0 0 20px;
}
.tradeBox .serviceDetail .serviceCaution li:first-child{
    border-top: 1px dashed;
    padding: 20px 0 20px;
}
.tradeBox .serviceDetail .btnQuest{

}
.tradeBox .serviceDetail .btnQuest a{
    position:relative;
    color: #FFF;
}
.tradeBox .serviceDetail .btnQuest a span{
    display: inline-block;
    width: 40px;
    position: absolute;
    bottom: 7px;
    left: calc(100% + 20px);
    transition: 0.5s ease;
    line-height: 0;
}
.tradeBox .serviceDetail .btnQuest a span svg .st0{
    fill: none;
    stroke: #FFF;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    transition: 0.5s ease;
}
.tradeBox .soon{
    text-align: center;
    font-size: 140%;
    font-weight: 500;
}
.tradeBox .floatBtn{
    position: fixed;
    bottom: 60px;
    right: 60px;
    color: #FFF;
    transition: 0.5s ease;
}
.tradeBox .floatBtn .btnInner{

}
.headerFix.tradeBox .floatBtn{
    transform: translateY(0);
}
.bottomFix.tradeBox .floatBtn{
    transform: translateY(200%);
}
.tradeBox .floatBtn a{
    font-size: 140%;
    text-align: center;
    font-weight: 600;
    line-height: 1.3em;
    background: #000;
    border-radius: 100px;
    width: 150px;
    height: 150px;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tradeBox .floatBtn a span{
    display: block;
    font-size: 80%;
    line-height: 1.4em;
}
.tradeBox .btnTrade a{
    margin: 0 auto 0;
    width: 420px;
    font-size: 140%;
    padding: 25px;
    border-radius: 10px;
    background: #ba670f;
    color: #FFF;
}
/*PC */
@media screen and (min-width: 960px){
    .tradeBox .tradeDetail .ticketCellList .cellInner .capSale, 
    .tradeBox .tradeDetail .ticketCellList .cellInner .capBuy {
        display: none;
    }
}
/* SP */
@media screen and (max-width: 960px){


.tradeBox .intro .thumb {
    line-height: 0;
    width: 100%;
}
.tradeBox .titBox h2 {
    font-size: 400%;
}
.tradeBox .intro .txt {
    font-size: 100%;
    text-align: left;
}
.tradeBox .captionList {
    text-align: left;
    padding: 20px;
}


.tradeBox .meritList {
    border-radius: 1.5rem;
    padding: 2.5rem 1.6rem;
}
.tradeBox .meritList dd .txt {
    margin-bottom: 1rem;
}

.tradeBox .meritList dt {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.tradeBox .meritList dd {
    font-size: 1rem;
}
.tradeBox .meritList dd .txt:last-child {
    margin: 0;
}
.tradeBox .meritList dt span {
    top: -1.5rem;
}
.tradeBox .captionList dt {
    font-size: 1.2rem;
    line-height: 1.6;
}
.tradeBox .captionList dd {
    font-size: 1rem;
    line-height: 1.7;
}

.tradeBox .meritList dt .txt {
    font-size: 100%;
    line-height: 1.4em;
}
.tradeBox .inBox h3 {
    font-size: 1.2rem;
    margin: 0 0 20px;
}
.tradeBox .tradeDetail .ticketType {
    border-radius: 30px;
}
.tradeBox .tradeDetail .ticketCellList {
    display: block;
}
.tradeBox .tradeDetail .ticketCellList.cellHead{
    display: none;
}
.tradeBox .tradeDetail .ticketCellList .cellInner .capSale,
.tradeBox .tradeDetail .ticketCellList .cellInner .capBuy {
    display: block;
    margin: 0 0 10px;
    font-weight: 600;
    font-size: 120%;
    border-left: 5px solid;
    padding: 0 0 0 10px;
}
.tradeBox .tradeDetail .ticketCellList .ticketName {
    width: 100%;
}
.tradeBox .tradeDetail .ticketCellList .ticketSall {
    width: 100%;
}
.tradeBox .tradeDetail .ticketCellList .ticketBuy {
    width: 100%;
}
.tradeBox .tradeDetail .ticketCellList li:not(:last-child) {
    border-right: none;
    border-bottom: 2px solid;
}
.tradeBox .changeType {
    border-radius: 30px;
}
.tradeBox .changeDetail {
    border-top: 4px solid #d8d8d8;
    display: block;
}
.tradeBox .changeDetail dt {
    width: 100%;
    border-right: none;
    border-bottom: 4px solid #d8d8d8;
}
.tradeBox .changeDetail dd {
    width: 100%;
}
.tradeBox .changeDetail .changeFlow li .changeBefore span {
    background: #d8d8d8;
    padding: 10px;
    font-size: 1rem;
    line-height: 1.5;
}
.tradeBox .changeDetail .changeFlow li .changeAfter span {
    background: #FFF;
    padding: 10px;
    font-size: 1rem;
    line-height: 1.5;
}
.tradeBox .changeDetail .changeFlow li .changeArrow {
    width: 10%;
}
.tradeBox .serviceDetail {
    padding: 20px;
    margin: 0 0 40px;
    border-radius: 30px;
}
.tradeBox .serviceDetail .lead {
    font-size: 1rem;
}
.tradeBox .serviceDetail .op_detail{
    margin: 0 0 20px;
}

.tradeBox .changeTypeTit {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.tradeBox .serviceDetail .cautionList {
    margin-bottom: 1.2rem;
}


}


/*========================================
    pageCancelpolicy
==========================================*/


.cancelpolicyBox .contentInner{
    background: #FFF;
    color: #000;
    padding: 60px;
    border-radius: 40px;
}
.cancelpolicyBox .contentInner h3 {
    font-size: 1.4rem;
    margin: 0 0 1.8rem;
    border-left: 7px solid;
    padding: 0 0 0 10px;
    color: #000;
    font-weight: bold;
}
.cancelpolicyBox .contentInner .lead {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 1.5rem;
    line-height: 1.6;
}
.cancelpolicyBox .contentInner .downGrade{
    margin-bottom: 60px;
}
.cancelpolicyBox .contentInner .cancelAttention{

}
.cancelpolicyBox .contentInner .cancelAttention dt {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px dashed;
    padding: 0 0 20px;
    margin: 0 0 20px;
    font-weight: bold;
}
.cancelpolicyBox .contentInner .cancelAttention dd{
    border-bottom: 1px dashed;
    padding: 0 0 20px;
    margin: 0 0 20px;
    font-size: 90%;
    font-weight: 500;
}
.cancelpolicyBox .contentInner .cancelAttention dd:last-child{
    border-bottom: none;
    padding: 0;
    margin: 0;
}
.cancelpolicyBox .contentInner .QaBlock h3 {
    text-align: center;
    border: none;
    padding: 0;
    line-height: 1.4em;
    font-size: 1.5rem;
}
.cancelpolicyBox .contentInner .btnList{
    margin-bottom: 40px;
}
.cancelpolicyBox .contentInner .btnList li{

}
.cancelpolicyBox .contentInner .btnList li a {
    text-align: center;
    display: block;
    background: #DDD;
    line-height: 1.3em;
    padding: 1.5rem;
    color: #FFF;
    font-size: 1.1rem;
    border-radius: 1rem;
}
.cancelpolicyBox .contentInner .btnList li.btnT a{
    background: #0088B1;
}
.cancelpolicyBox .contentInner .btnList li.btnC a{
    background: #3AA9F0;

}


/* SP */
@media screen and (max-width: 960px){
.cancelpolicyBox .contentInner {
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
}

.cancelpolicyBox .contentInner h3 {
    font-size: 1.2rem;
    margin: 0 0 1.2rem;
    border-left: 5px solid;
    line-height: 1.5;
}
.cancelpolicyBox .contentInner .lead {
    font-size: 1rem;
    margin-bottom: 1.2rem;
}
.cancelpolicyBox .contentInner .downGrade {
    margin-bottom: 20px;
}

.cancelpolicyBox .contentInner .QaBlock h3 {
    font-size: 1.3rem;
}

.cancelpolicyBox .contentInner .btnList {
    margin-bottom: 1rem;
}

.cancelpolicyBox .contentInner .cancelAttention dd {
    font-size: 0.92rem;
}

}

/*========================================
    pageDticket
==========================================*/


.dticketBox .titBox h2 {
    font-family: "tot-shizukago-stdn", sans-serif;
    font-size: 3.2rem;
}

.dticketBox .contentInner{
    background: #FFF;
    color: #000;
    padding: 60px;
    border-radius: 40px;
}
.dticketBox .inner > *{
    margin-bottom: 20px;
}
.dticketBox .inner > *:last-child{
    margin-bottom: 0;
}
.dticketBox .inner.clmBox {
    display: flex;
}
.dticketBox .inner.clmBox .clm{
    width: calc(100% - 340px);
    padding: 0 40px 0 0;
    margin: 0;
}
.dticketBox .inner.clmBox .clm:last-child{
    width: 340px;
    padding: 0;
}
.dticketBox .contentInner h3 {
    font-size: 1.5rem;
    margin: 0 0 40px;
    border-left: 6px solid;
    padding: 0 0 0 10px;
    color: #000;
    font-weight: bold;
}
.dticketBox .contentInner h3 .red {
    color: #CA0000;
}
.dticketBox .contentInner .lead {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
}
.dticketBox .inBox {
    background: transparent;
    color: #FFF;
    padding: 0;
}
.dticketBox .inBox h3 {
    font-size: 2rem;
    margin: 0 0 40px;
    border-left: 8px solid;
    padding: 0 0 0 10px;
    font-weight: bold;
}
.dticketBox .meritList {
    padding: 4rem;
    margin: 0 0 40px;
    position: relative;
    border-radius: 40px;
    background: linear-gradient(180deg, #ffffff40, #ffffff17);
    border-top: 1px solid #ffffff63;
    border-bottom: 1px solid #ffffff29;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}
.dticketBox .meritList dt {
    font-size: 140%;
    font-weight: 600;
    margin: 0 0 20px;
}
.dticketBox .meritList dt span {
    position: absolute;
    top: -10px;
    left: -10px;
    color: #FFF;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    z-index: 1;
    background: #fb003e;
    border-radius: 100px;
}
.dticketBox .meritList dd > * {
    margin: 0 0 20px;
}
.dticketBox .meritList dd > *:last-child {
    margin: 0;
}

.dticketBox .goodDealBlock{
    border-top: 1px solid;
    margin: 0 0 40px;
}
.dticketBox .goodDealBlock .goodDeal {
    display: flex;
    width: 100%;
    border-bottom: 1px solid;
}
.dticketBox .goodDealBlock .goodDeal dt {
    width: 30%;
    display: flex;
    align-items: center;
    padding: 20px;
    border-right: 1px solid;
    border-left: 1px solid;
}
.dticketBox .goodDealBlock .goodDeal:first-child dt {
    text-align: center;
    justify-content: center;
    background: #000;
    color: #FFF;
    border: none;
}
.dticketBox .goodDealBlock .goodDeal dt .icatch {
    width: 100px;
}
.dticketBox .goodDealBlock .goodDeal dt .txt {
    width: calc(100% - 100px);
    font-size: 100%;
    margin: 0;
    text-align: center;
    font-weight: 500;
}
.dticketBox .goodDealBlock .goodDeal dd {
    width: 70%;
    display: flex;
    align-items: center;
    padding: 20px;
    border-right: 1px solid;
    font-size: 1rem;
}
.dticketBox .goodDealBlock .goodDeal:first-child dd {
    text-align: center;
    justify-content: center;
    background: #000;
    color: #FFF;
    border: none;
}
.dticketBox .goodDealBlock .goodDeal dd .bear span {
    font-size: 160%;
    padding: 0 5px;
    font-weight: 600;
}
.dticketBox .pticket {
    display: flex;
    width: 100%;
    border-bottom: 1px solid;
    border-top: 1px solid;
}
.dticketBox .pticket dt {
    width: 30%;
    display: flex;
    align-items: center;
    padding: 20px;
    border-right: 1px solid;
    border-left: 1px solid;
}
.dticketBox .pticket dt .icatch {
    width: 75px;
    padding: 0 5px 0 0;
}
.dticketBox .pticket dt .txt {
    width: calc(100% - 80px);
    font-size: 100%;
    margin: 0;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
}
.dticketBox .pticket dd {
    width: 70%;
    display: flex;
    align-items: center;
    padding: 20px;
    border-right: 1px solid;
}

.dticketBox .ticketAttention{
    border: 2px solid;
    padding: 40px;
    margin: 0 0 40px;
    border-radius: 20px;
}
.dticketBox .ticketAttention dt {
    font-size: 1.6rem;
    margin: 0 0 40px;
    border-left: 6px solid;
    padding: 0 0 0 10px;
    font-weight: 600;
    font-weight: bold;
}
.dticketBox .ticketAttention dd {
    margin: 0 0 40px;
    border-bottom: 1px dashed;
    padding: 0 0 40px;
    color: #FFF;
}
.dticketBox .ticketAttention dd:first-of-type{
    border-top: 1px dashed;
    padding: 40px 0 40px;
}
.dticketBox .ticketAttention dd:last-child{
    border-bottom: none;
    padding: 0;
    margin: 0;
}
.dticketBox .deviceAttention {
    background: #D7DFE7;
    color: #000;
    padding: 40px;
    margin: 0 0 40px;
    position: relative;
    border-radius: 40px;
}
.dticketBox .deviceAttention dt {
    text-align: center;
    font-size: 160%;
    font-weight: 500;
    margin: 0 0 40px;
    border-bottom: 1px dashed;
    padding: 0 0 40px;
}
.dticketBox .deviceAttention dd {
    margin: 0 0 20px;
    padding: 0 0 0 25px;
    position: relative;
}
.dticketBox .ticketAttention dd:last-child {
    margin: 0;
}
.dticketBox .deviceAttention dd:before {
    content: "●";
    position: absolute;
    left: 0;
}
.dticketBox .appList {
    display: flex;
}
.dticketBox .appList li {
    width: 170px;
    margin: 0 20px 0 0;
}
.dticketBox .appList li a .badge {
    line-height: 0;
    margin: 0 0 10px;
}
.dticketBox .appList li a span {
    display: block;
    text-align: center;
    font-weight: 500;
    font-size: 80%;
    line-height: 1em;
    color: #ffffff;
}




/* PC */
@media screen and (min-width: 960px){
.dticketBox .appList li.iphone, 
.dticketBox .appList li.android {
    display: none;
}
}

/* PC */
@media screen and (min-width:1px) and (max-width:1140px ) {
.dticketBox .inner.clmBox {
    display: block;
}
.dticketBox .inner.clmBox .clm {
    width: 100%;
    padding: 0;
    margin: 0 0 40px;
}
.dticketBox .inner.clmBox .clm:last-child {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
}

/* SP */
@media screen and (max-width: 960px){

.dticketBox .titBox h2 {
    font-size: 1.7rem;
}

.dticketBox .contentInner .lead {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.dticketBox .contentInner {
    padding: 20px;
    border-radius: 30px;
}
.dticketBox .contentInner h3 {
    font-size: 1.2rem;
    margin: 0 0 1.5rem;
    line-height: 1.4em;
}
.dticketBox .innerLink {
    margin-bottom: 10px;
}
.dticketBox .innerLink:last-child {
    margin-bottom: 0;
}
.dticketBox .inner.clmBox .clm {
    margin: 0 0 20px;
}
.dticketBox .goodDealBlock {
    margin: 0 0 20px;
}
.dticketBox .goodDealBlock .goodDeal {
    display: flex;
    align-items: center;
    border-right: 1px solid;
}
.dticketBox .goodDealBlock .goodDeal:first-child dt {
    font-size: 60%;
    padding: 10px;
    line-height: 1.5em;
}
.dticketBox .goodDealBlock .goodDeal:first-child dd {
    font-size: 60%;
    padding: 10px;
    line-height: 1.5em;
}
.dticketBox .goodDealBlock .goodDeal dt {
    display: block;
    padding: 10px;
}
.dticketBox .goodDealBlock .goodDeal dt .icatch {
    width: 100%;
}
.dticketBox .goodDealBlock .goodDeal dt .txt {
    width: auto;
    font-size: 70%;
}
.dticketBox .goodDealBlock .goodDeal dd {
    padding: 10px;
}
.dticketBox .goodDealBlock .goodDeal dd {
    padding: 10px;
    display: block;
    font-size: 65%;
    font-weight: 600;
    line-height: 1.4em;
    border: none;
}
.dticketBox .goodDealBlock .goodDeal dd .price {
    margin-bottom: 0.4rem;
    font-size: 0.92em;
    letter-spacing: 0;
}
.dticketBox .pticket dt {
    display: block;
    padding: 10px;
}
.dticketBox .pticket dt .icatch {
    width: 100%;
}
.dticketBox .pticket dt .txt {
    width: 100%;
    font-size: 60%;
}
.dticketBox .pticket dd {
    padding: 10px;
    font-size: 65%;
    font-weight: 600;
}

.dticketBox .ticketAttention {
    padding: 20px;
}
.dticketBox .ticketAttention dt {
    font-size: 1.2rem;
    margin: 0 0 20px;
    line-height: 1.4em;
}
.dticketBox .ticketAttention dd:first-of-type {
    padding: 20px 0 20px;
}
.dticketBox .ticketAttention dd {
    margin: 0 0 20px;
    padding: 0 0 20px;
    font-size: 1rem;
}
.dticketBox .deviceAttention {
    padding: 20px;
}
.dticketBox .deviceAttention dt {
    margin: 0 0 20px;
    padding: 0 0 20px;
    font-size: 1.4rem;
    font-weight: bold;
}
.dticketBox .deviceAttention dd {
    font-size: 1rem;
}

.dticketBox .inBox h3 {
    font-size: 1.3em;
    margin: 0 0 2rem;
}
.dticketBox .meritList {
    margin: 0 0 20px;
    border-radius: 1.5rem;
    padding: 2.5rem 1.6rem;
    font-size: 1rem;
}
.dticketBox .meritList dt .txt {
    font-size: 1.1rem;
}
.dticketBox .meritList dt .txt.red {
    color: #ff1c1c;
}

.dticketBox .meritList dt span {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.3rem;
}

}


/*========================================
    footer
==========================================*/
footer .contentBox {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(180deg, #ffffff40, #ffffff17);
    border-top: 1px solid #ffffff63;
}

