@charset "UTF-8";


/*===================================================
  OP:LOADER
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background: #000;
}
.loader p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 300px;
}

/*===================================================
  NAVIGATION
====================================================*/

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

.hamBtn {
    display: block;
    position: fixed;
        right: 0;
        top: 0;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9999;
    box-sizing: border-box;
    opacity:0;
    transition-delay: 1.2s;
}
.loaded .hamBtn {
    opacity:1;
}
.hamSwitch {
    background:#fff;
    padding: 10px;
}
.hamBtn .hamMenu{
        position: relative;
        width: 17px;
        height: 17px;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: #000;
    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{
    background: #fff;
}
.hamSwitch.open span {
    background: #000;
}
.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;
        opacity: 0;
        pointer-events: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        z-index: 10;
        transition: 0.4s;
        color: #fff;
}
.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: 150%;
        color: #ffffff;
        font-weight: normal;
        font-family:"Besley", 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 .navTit .tit1{
    display: block;
    font-weight: 800;
    font-size: 90%;
}
.navigation .navTit .tit2{
    display: block;
    font-weight: 200;
    font-size: 140%;
    margin: 0 0 10px;
    display: block;
    font-weight: 100;
}
.navigation .navTit .tit3{
    display: block;
    font-weight: 800;
    font-size: 280%;
    line-height: 1em;
}


.navigation .headerNav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        width: 100%;
        padding: 0;
}
.navigation .navTit {
    right: 40px;
}
.navigation .headerNav li{
        margin: 0 0 15px;
        text-align: center;
}



}

/*===================================================
  VISUAL
====================================================*/
.heroView{

}
.heroView .action{
    opacity:0;
    transition:0.5s ease;
}
.loaded .heroView .action{
    opacity:1;
}
.loaded .heroView .act3{

}
/*===================================================
  SCROLLDOWN
====================================================*/

.scrollarrow{
    position: fixed;
    bottom: 0;
    height: 3vh;
    right: 50px;
    transition: 0.4s;
}
.headerFix .scrollarrow{
    opacity: 0;
}
.scrollarrow::before {
    animation: scroll 2s infinite;
    background-color: #fff;
    bottom: 0;
    content: "";
    height: 100%;
    right: -15px;
    margin: auto;
    position: absolute;
    width: 1px;
}
.scrollarrow span{
    font-size: 10px;
}


@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


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

.scrollarrow {
        right: 20px;
        height: 4vh;
}
.scrollarrow::before {
    right: -8px;
}

}
/*===================================================
  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: fixed;
    right: 50px;
    top: 30px;
    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;
    background: #f7f7f7;
    padding: 40px;
    color: #000;
    border-radius: 20px;
}


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

}

/* OP:MODALSP-max-769 */
@media screen and (max-width: 769px){
.op_modal .modPop .close {
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
}
.op_modal .modPop .popInBox {
    padding: 20px;
    margin: 60px auto;
}

}

Resources

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

}
.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 .scheduleInner{
    width: 100%;
}
.op_schedule .scheduleCellList .scheduleInfo .txt{
    line-height: 1em;
}
.op_schedule .scheduleCellList .scheduleInfo .playguide{
    font-size: 75%;
    display: block;
    margin: 0 0 5px;
}
.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: 140%;
    text-align: center;
}

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

}


/* OP:SCHEDULE:SP-max-769 */
@media screen and (max-width: 769px){
.op_schedule {

}

.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_schedule .scheduleCellList .scheduleInfo .playguide {
    display: block;
    margin: 0 0 5px;
}
}


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

}
.op_detail .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 0 0 15px;
    margin: 0 0 15px;
    align-items: stretch;
}
.op_detail .detailList:first-child{
    border-top: 1px solid;
    padding: 15px 0 15px;
}
.op_detail .detailList:last-child{
    margin: 0;
}
.op_detail .detailList dt{
    width: 20%;
    padding: 0 40px 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.6em;
}
.op_detail .detailList dt:before{
}
.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: #000;
}
.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: 769px){
.op_detail .detailList {
    display: block;
}
.op_detail .detailList dt {
    width: 100%;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
    font-size: 100%;
    font-weight: 600;
    border-left: 5px 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: 50px;
}
.op_ticket .ticketList:last-child{
    margin-bottom: 0;
}
.op_ticket .tikcetTit{
    background: #DDD;
    padding: 20px;
    font-size: 100%;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
}
.op_ticket .end .tikcetTit:after{
    content: "受付終了";
    font-size: 70%;
    background: #ff8888;
    color: #FFF;
    line-height: 1em;
    padding: 3px 12px;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    margin: 0 0 0 10px;
}
.op_ticket .end.soon .tikcetTit:after{
    content: none;
}
.op_ticket .tikcetTit .arrow {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 12px;
    height: 12px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}
.op_ticket .tikcetTit.open span {
    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 .direct{
    margin-bottom: 40px;
    padding: 0;
}
.op_ticket .direct a{
    display: block;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
    background: #000;
    color: #FFF;
    padding: 25px 50px 25px 25px;
    font-size: 140%;
}
.op_ticket .direct a .arrow{
    position: absolute;
    top: 50%;
    right: 20px;
    width: 12px;
    height: 12px;
    transition: 0.3s ease;
    transform: rotate(90deg) translate(-50%, 0);
}
.op_ticket .direct a .arrow:before {
    content: "";
    position: absolute;
    top: 25%;
    width: 100%;
    height: 100%;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
}
.op_ticket .tikcetDetail{
    display:block;
    padding: 40px;
    background: #FFF;
}
.op_ticket .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 0 0 30px 0;
    margin: 0 0 30px 0;
    align-items: stretch;
}
.op_ticket .detailList:first-child{

}
.op_ticket .detailList:last-child{
    margin: 0;
}
.op_ticket .detailList dt{
    width: 25%;
    padding: 0 40px 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.6em;
}
.op_ticket .detailList dt:before{

}
.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: #fff;
}
.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 .detailList dd .attentionList li{
    font-size: 80%;
    text-indent: -1em;
    margin: 0 0 5px 1em;
}
.op_ticket .detailList dd .attentionList li:last-child{
    margin: 0 0 0 1em;
}
.op_ticket .btnArea{
	background: rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 0 auto 30px;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}
.op_ticket .btnArea dt {
    width: 55%;
    border-left: 5px solid;
    padding: 0 0 0 15px;
}
.op_ticket .btnArea dt .type{
    font-size: 140%;
    font-weight: bold;

}
.op_ticket .btnArea dt .price{
    font-size: 100%;
    font-weight: bold;
}
.op_ticket .btnArea dt .price .mini{
    font-size: 80%;
}
.op_ticket .btnArea dd{
	width: 40%;
}
.op_ticket .btnArea dd .btn a{
    max-width: 100%;
    width: 100%;
    display: block;
}

.op_ticket .detail{
    padding: 40px;
    max-width: 800px;
    margin: 0 auto 50px;
    background: #000;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}
.op_ticket .detail dt{
    font-weight: bold;
    font-size: 120%;
    border-right: 1px solid;
    width: 25%;
}
.op_ticket .detail dt span{
    font-size: 11px;
    margin: 0 0 0 10px;
    background: #000;
    color: #fff;
    padding: 2px 10px 3px;
}
.op_ticket .detail dt .btn a{
    font-size: 16px;
    padding: 15px;
    display: block;
    width: 300px;
}
.op_ticket .detail dd {
    line-height: 1.5;
    font-weight: 500;
    width: 75%;
    padding: 0 0 0 50px;
}
.op_ticket .detail dd .seat{
    font-size: 23px;
    margin: 0 0 20px 0;
    font-weight: bold;
    line-height: 1.2;
    display: inline-block;
    letter-spacing: 0.1em;
    border-left: 5px solid;
    padding: 0 0 0 20px;
}
.op_ticket .detail dd .price{
	font-size: 180%;
    font-weight: bold;
    display: inline-block;
}
.op_ticket .detail dd .price span {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    top: 0;
    margin: 0 0 0 10px;
}
.op_ticket .detail dd .attentionList {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
}
.op_ticket .detail dd .attentionList li{
    font-size: 13px;
    font-weight: normal;
    text-indent: -1em;
    margin: 0 0 5px 1em;
}
.op_ticket .detail dd .attentionList li:last-child{
    margin: 0 0 0 1em;
}
.op_ticket .detailList dd .detailInner .ticketDetail{
    margin: 0 0 20px 0;
}
.op_ticket .detailList dd .detailInner .ticketDetail .data{
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    margin: 0 0 15px 0;
    font-size: 80%;
}
.op_ticket .detailList dd .detailInner .ticketDetail .txt{
font-size: 100%;
}
.op_ticket .detailList dd .detailInner .mini{
    font-size: 13px;
}

/* OP:TICKET:PC-min-770 */
@media screen and (min-width: 770px){
.op_ticket .tikcetTit:hover{
        opacity: 0.7;
}
.op_ticket .direct a:hover{
        opacity: 0.7;
}
}

/* OP:TICKET:SP-max-769 */
@media screen and (max-width: 769px){
.op_ticket .tikcetDetail {
    padding: 20px;
}
.op_ticket .detailList {
    display: block;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
        line-height: 1.5;
}
.op_ticket .detailList dt {
    width: 100%;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
    font-size: 80%;
    border-left: 5px solid;
}
.op_ticket .detailList dd {
    width: 100%;
    position: relative;
    padding: 0;
}
.op_ticket .detailList dd:before {
    content: none
}
.op_ticket .detailList dd .txt{
    font-size: 90%;
}
.op_ticket .detailList dd .attentionList{

}



.op_ticket .direct a {
    padding: 15px 50px 15px 15px;
}
.op_ticket .btnArea {
    display: block;
    padding: 20px;
    margin: 0 auto 15px;
}
.op_ticket .btnArea dt {
    width: 100%;
    border-left: 5px solid;
    padding: 0 0 0 15px;
    margin: 0 auto 20px;
}
.op_ticket .btnArea dt .price {
    font-size: 90%;
    font-weight: bold;
}
.op_ticket .btnArea dt .type {
    font-size: 100%;
    font-weight: bold;
}
.op_ticket .btnArea dd {
    width: 100%;
}
.op_ticket .btnArea dd .btn a {
    max-width: 100%;
    width: 100%;
    display: block;
    line-height: 1.5;
    font-size: 80%;
}
.op_ticket .detail {
        padding: 20px;
        display: block;
        margin: 0 auto 30px;
}
.op_ticket .detail dt {
        border-bottom: 1px solid;
        font-size: 11px;
        margin: 0 0 10px 0;
        padding: 0 0 10px 0;
        width: 100%;
        border-right: none;
        text-align: center;
}
.op_ticket .detail dt .btn a {
    font-size: 13px;
    padding: 10px;
    display: block;
    width: 80%;
    line-height: 1.3;
    margin: 10px auto 0;
}
.op_ticket .detail dd {
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: center;
}
.op_ticket .detail dd .seat {
    font-size: 15px;
    margin: 0 0 5px 0;
    border-left: 3px solid;
    padding: 0 0 0 10px;
}
.op_ticket .detail dd .price {
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin: 0;
}
.op_ticket .detail dd .price span {
    font-size: 11px;
}
.op_ticket .detail dd .attentionList {
    margin: 20px auto 0;
}
.op_ticket .detail dd .attentionList li {
    font-size: 11px;
}
.op_ticket .detailList dd .detailInner .ticketDetail .data {
    padding: 5px 10px;
    margin: 0 0 8px 0;
    font-size: 75%;
}
.op_ticket .detailList dd .detailInner .ticketDetail .txt {
    font-size: 80%;
}
.op_ticket .detailList dd .detailInner .ticketDetail {
    margin: 0 0 15px 0;
}
.op_ticket .detailList dd .detailInner .mini {
    font-size: 12px;
}


}


.op_special .specialDetail{
    display:block;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 50px;
}
.op_special .specialDetail .titArea{
    margin: 0 auto 30px;
    position: relative;
}
.op_special .specialDetail .titArea .tit{
    border-left: 5px solid;
    padding: 0 0 0 30px;
    font-size: 23px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 auto 20px;
}
.op_special .specialDetail .titArea .tit .mini{
font-size: 80%;
}
.op_special .specialDetail .titArea .txt{

}
.op_special .specialDetail .titArea .ph{
    max-width: 600px;
    margin: 30px auto;
}
.op_special .specialDetail .titArea .arcamera {
    background:#c32c1b;
    position: absolute;
    color: #fff;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    top: -2rem;
    right: -2rem;
    font-size: 22px;
    transform: rotate(13deg);
    line-height: 1.3;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 0 #00000017;
}
.op_special .detailList {
    display: flex;
    padding: 40px;
    margin: 0 0 20px 0;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.5);
}
.op_special .detailList:first-child{

}
.op_special .detailList:last-child{
    margin: 0;
}
.op_special .detailList dt{
    width: 25%;
    padding: 0 40px 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.6em;
}
.op_special .detailList dt:before{

}
.op_special .detailList dd{
    width: 80%;
    position: relative;
    padding: 0 0 0 40px;
    display: flex;
    align-items: center;
}
.op_special .detailList dd:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #fff;
}
.op_special .detailList dd > *{
    margin-bottom:20px;
}
.op_special .detailList dd > *:last-child{
    margin-bottom:0;
}
.op_special .detailList dd .detailInner{
    width:100%;
}
.op_special .detailList dd .detailInner > *{
    margin-bottom:10px;
}
.op_special .detailList dd .detailInner  > *:last-child{
    margin-bottom:0;
}
.op_special .detailList dd .attentionList li{
    font-size: 80%;
    text-indent: -1em;
    margin: 0 0 5px 1em;
}
.op_special .detailList dd .attentionList li:last-child{
    margin: 0 0 0 1em;
}

.op_special .liveListBlock{
    margin:30px 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 5vw;
    position: relative;
}
.op_special .liveListClm{
    display: flex;
}

.op_special .liveListTit{
    position: absolute;
    left: 0;
    top: 0;
    background: #FFF;
    padding: 0 30px 15px 0;
    font-weight: 700;
    font-size: 140%;
    letter-spacing: 0.1em;
}
.op_special .liveListBlock .livelist{
    width: 50%;
}
.op_special .liveListBlock .livelist:nth-child(odd){
    width: 50%;
    border-right: 1px solid #DDD;
    padding: 0 20px 0 0;
}
.op_special .liveListBlock .livelist:nth-child(even){
    width: 50%;
    padding: 0 0 0 40px;
}
.op_special .liveListBlock .livelist li{
    margin: 0 0 10px;
}
.op_special .liveListBlock .livelist li:last-child{
    margin: 0;
}

.op_special .liveListBlock .prize{
    display: flex;
    align-items: center;
    border-bottom: 1px dashed;
    padding: 0 0 20px;
    margin: 0 0 20px;
}
.op_special .liveListBlock .prize:last-child{
    border-bottom: none;
    padding: 0 ;
    margin: 0 ;
}
.op_special .liveListBlock .prize dt{
    width: 200px;
    background: #527A8F;
    color: #FFF;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.op_special .liveListBlock .prize dd{
    padding: 0 0 0 20px;
    font-size: 100%;
    font-weight: 600;
}
.op_special .liveListBlock .prize dd > *{
    margin: 0 0 5px;
}
.op_special .liveListBlock .prize dd > *:last-child{
    margin: 0;
}

.op_special .liveListBlockPlay {

}

.op_special .liveListBlockPlay .playList .playListNum {
    border-bottom: 1px dashed #6f6f6f;
    padding: 0 0 40px;
    margin: 0 0 40px;
    font-size: 18px;
}

.op_special .liveListBlockPlay .playList .playListNum:last-child {
    border-bottom: none;
    padding: 0;
    margin: 0;
}
.op_special .liveListBlockPlay .playList .playListNum .appStoreList li .appStoreBtn a{
    display: block;
    transition: 0.4s;
}
.op_special .liveListBlockPlay .playList .playListNum .numImg {
    margin: 0 0 15px;
}

.op_special .liveListBlockPlay .playList .playListNum .num {
    text-indent: -1em;
    padding: 0 0 0 1em;
}

.op_special .liveListBlockPlay .playList .playListNum .appStoreList {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 450px;
}

.op_special .liveListBlockPlay .playList .playListNum .appStoreList li {
    margin: 0px 20px;
}

.op_special .liveListBlockPlay .playList .playListNum .menuListImg {
    width: 400px;
    margin: 0 auto;
}
.op_special .liveListBlockPlay .playList .playListNum .cautionList.asterisk li:before{
content:"※";

}

.op_special .liveListBlockPlay .playList .playListNum .cautionList li {
	margin: 0 0 5px;
}

.op_special .liveListBlockPlay .playList .playListNum .cautionList li:last-child {
	margin: 0;
}

.op_special .liveListBlockAtt {
    margin: 0 0 20px;
}

.op_special .liveListBlockAtt:last-child {
    margin-bottom: 0;
}

.op_special .liveListBlockAttBox {
    border: 1px solid;
    padding: 20px;
}

@media screen and (min-width: 769px){

.op_special .liveListBlockPlay .playList .playListNum .appStoreList li .appStoreBtn a:hover{
    opacity: 0.7;
}

}



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

.op_special .specialDetail {
    display: block;
    padding: 20px;
}
.op_special .specialDetail .titArea {
    margin: 0 auto 15px;
}
.op_special .specialDetail .titArea .arcamera {
    font-size: 12px;
    width: 5rem;
    height: 5rem;
    top: -3rem;
    box-shadow: 3px 3px 0 #00000017;
}
.op_special .specialDetail .titArea .tit {
    border-left: 3px solid;
    padding: 0 0 0 15px;
    font-size: 15px;
}
.op_special .specialDetail .titArea .txt {
    font-size: 80%;
}
.op_special .detailList {
        display: block;
        padding: 15px;
        margin: 0 0 10px 0;
        line-height: 1.5;
}
.op_special .detailList dt {
    width: 100%;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
    font-size: 80%;
    border-left: 5px solid;
}
.op_special .detailList dd {
    width: 100%;
    position: relative;
    padding: 0;
}
.op_special .detailList dd:before {
    content: none
}
.op_special .detailList dd .txt{
    font-size: 90%;
}
.op_special .detailList dd .attentionList{

}

.op_special .detailList dd .detailInner .ticketDetail .data {
    padding: 5px 10px;
    margin: 0 0 8px 0;
    font-size: 75%;
}
.op_special .detailList dd .detailInner .ticketDetail .txt {
    font-size: 80%;
}
.op_special .detailList dd .detailInner .ticketDetail {
    margin: 0 0 15px 0;
}
.op_special .detailList dd .detailInner .mini {
    font-size: 12px;
}
.op_special .liveListBlockPlay .playList .playListNum {
    padding: 0 0 20px;
    margin: 0 0 20px;
    font-size: 13px;
}

.op_special .liveListBlockPlay .playList .playListNum .menuListImg {
    width: 100%;
    max-width: 400px;
}

.op_special .liveListBlockPlay .playList .playListNum .appStoreList {
display: block;
    max-width: 300px;
    width: 80%;
}
.op_special .liveListBlockPlay .playList .playListNum .appStoreList li {
    margin: 0 0 10px;
}



}
