@charset "UTF-8";


/*===================================================
  OP:LOADER
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background:#1b6abe;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.6, 0.08, 0.96, 0.52) 1.8s;
    pointer-events: none;
}
.loader .loadingLogo{
    width: 240px;
    position: relative;
    transition:0.5s ease 0.5s;
}
.loaded .loader {
    opacity: 0;
}

/*===================================================
  NAVIGATION
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 20px;
    top: 20px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9999;
    box-sizing: border-box;
    opacity:0;
    transition-delay: 3.5s;
}
.loaded .hamBtn {
    opacity:1;
}
.hamSwitch {
    background: #e66678;
    border-radius: 999px;
    position: relative;
    width: 60px;
    height: 60px;
}
.hamBtn .hamMenu{
    width: 30px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all .3s ease;
}
.hamBtn .hamMenu span:nth-of-type(1) {
    top: 0;
}
.hamBtn .hamMenu span:nth-of-type(2) {
	top: 10px;
}
.hamBtn .hamMenu span:nth-of-type(3) {
	top: 20px;
}

.hamSwitch.open{

}
.hamSwitch.open span {
    background: #FFF;
}
.hamSwitch.open span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
    opacity: 1;
}
.hamSwitch.open span:nth-of-type(2) {
    opacity: 0;
}
.hamSwitch.open span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
    opacity: 1;
}

.navigation {
    position: fixed;
    opacity: 1;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:#1b6abe;
    z-index: 10;
    transition: 0.5s;
}
.loaded .navigation {
    opacity: 0;
    transition-delay: 0s;
}
.navigation.active {
    transition: opacity 0.5s ease;
    pointer-events:auto;
    opacity:1;
}
.navigation .navigationInner {
    display: block;
    padding: 60px;
}
.navigation .headerNav {
    display: block;
    margin-bottom: 40px;
}
.navigation .headerNav li {
    padding: 0;
    position: relative;
    margin: 0 0 15px;
}
.navigation .headerNav li:after {
    content: none;
}
.navigation .headerNav li a{
    font-size: 180%;
    color: #FFF;
    font-family:"quiche-sans", 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;
    width: 240px;;
}
.navigation .block--language{
    position: relative;
    top: auto;
    left: auto;
}
.navigation .block--language .wovn-languages{
    color: #FFF;
    border-bottom: 1px solid;
    position: relative;
    margin: 0;
}


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

.navigation .headerNav li a:hover{
    color: #e66678;
}

}



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

.hamBtn {
    right: 10px;
    top: 10px;
}
.hamSwitch {
    width: 50px;
    height: 50px;
}
.navigation .navigationInner {
    display: block;
    padding: 60px 40px;
}

.navigation .headerNav {
    padding: 0;
}
.navigation .navTit {
    right: 40px;
    bottom: 40px;
    max-width: 120px;
}
.navigation .headerNav li{
    margin: 0 0 20px;
}
.navigation .headerNav li a{
    font-size: 150%;
}
}

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

}
.heroView .action{

}
.loaded .heroView .action{

}

/*===================================================
  SCROLLDOWN
====================================================*/
.scrollTxt{
    font-size: 80%;
    transition: 0.5s ease;
    font-weight: 800;
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 0;
    margin: 0 0 15px;
    font-family: "como", sans-serif;
}
.scrollarrow {
    width: 1px;
    height: 60px;
    z-index: 1;
    background: #fff;
    animation: scrollarrow 3s cubic-bezier(.19,1,.22,1) 0.5s 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);}
}

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

.scrollTxt {
    color: #c02600;
}
.scrollarrow{
    background:#c02600;
}

}

HTML CSS JSResult Skip Results Iframe
EDIT ON
/*===================================================
  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: #FFF;
}
.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 .week.sat{
    color: #3fe3ff;
}
.op_schedule .scheduleCellList .scheduleDate .week.sun{
    color: #ff7373;
}
.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%;
    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;
    color: #b0d7ff;
}
.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;
    display: none;
}
.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:770px) 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: 769px){
.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_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: 20px;
}
.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 2px;
    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: 20px;
    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 .tikcetDetail{
    display:none;
    padding: 40px;
    background: #FFF;
}
.op_ticket .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 0 0 15px;
    margin: 0 0 15px;
    align-items: stretch;
}
.op_ticket .detailList:first-child{
    border-top: 1px solid;
    padding: 15px 0 15px;
}
.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{

}
.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: 770px){
.op_ticket .tikcetTit:hover{
    background: #007dff;
}
}

/* OP:TICKET:SP-max-769 */
@media screen and (max-width: 769px){
.op_ticket .tikcetDetail {
    padding: 20px;
}
.op_ticket .detailList {
    display: block;
}
.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:RELEASE
====================================================*/
.op_release{
    position: relative;
    z-index: 1;
}
.op_release .releaseBlock{
    display: flex;
    margin: 0 0 400px;
    position: relative;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 0 40px;
}
.op_release .greenBlock:before{
    background: #7FC04C;
}
.op_release .redBlock:before{
    background: #EF1C22;
}
.op_release .blueBlock:before{
    background: #01ADEF;

}
.op_release .matchBlock:before{
    background: #000;
}
.op_release .releaseBlock .releaseTit{
    position: absolute;
    top: -40px;
    left: 0;
    height: 120px;
    opacity:0;
    transform: translate(0,50%);
    transition:0.5s ease;
}
.op_release .releaseBlock.started .releaseTit{
    opacity:1;
    transform: translate(0,-100%);
}
.op_release .releaseBlock .releaseTit img{
    height: 100%;
    width: auto;
}
.op_release .releaseBlock .tnumb{
    position: relative;
    width: 45%;
    transition: 0.5s ease 0.3s;
    z-index: 1;
    pointer-events: none;
}
.op_release .releaseBlock.started .tnumb{
    opacity:1;
    transform: translate(0,0);
}

.op_release .releaseBlock .releaseDetail{
    width: 55%;
    padding: 0 0 0 60px;
    position: relative;
    transition: 0.5s ease 0.6s;
    z-index: 1;
}
.op_release .releaseBlock.started .releaseDetail{
    opacity:1;
    transform: translate(0,0);
}
.op_release .releaseBlock:nth-child(even){
    flex-direction: row-reverse;
}
.op_release .releaseBlock:nth-child(even):before{
    left: auto;
    right: 20%;
}
.op_release .releaseBlock:nth-child(even) .releaseTit{
    left: auto;
    right: 0;
}
.op_release .releaseBlock:last-child{
    margin-bottom: 200px;
}
.op_release .releaseBlock:nth-child(even) .tnumb{
    transition:0.5s ease 0.6s;
}
.op_release .releaseBlock:nth-child(even) .releaseDetail{
    padding: 0 60px 0 0;
    transition:0.5s ease 0.3s;
}
.op_release .releaseBlock .releaseDetail > *{
    margin: 0 0 20px;
}
.op_release .releaseBlock .releaseDetail > *:last-child{
    margin: 0;
}
.op_release .releaseBlock:nth-child(even) .tnumb{
    left: auto;
    right:0;
}
.op_release .releaseBlock .type{
    font-size: 200%;
    letter-spacing: 0.1em;
    font-family: 'Roboto', "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
    font-weight:bold;
    margin: 0 0 20px;
}
.op_release .releaseBlock .credit{
    display: flex;
    align-items: center;
    font-size: 80%;
    margin: 0 0 10px;
}
.op_release .releaseBlock .credit span{
    border: 1px solid;
    display: inline-block;
    line-height: 1em;
    font-size: 90%;
    padding: 5px 10px 3px;
    border-radius: 3px;
    font-weight: 600;
    margin: 0 10px 0 0;
}
.op_release .releaseBlock .price{
    font-size: 140%;
    font-weight: 300;
}
.op_release .releaseBlock .price span{
    font-size: 60%;
}

.op_release .releaseBlock .trackBlock{
    padding: 0 0 0 30px;
    border-left: 1px solid;
}
.op_release .releaseBlock .trackBlock.prizeBlock{
}
.op_release .releaseBlock .trackBlock dt{
    padding: 5px 15px 4px;
    margin: 0 0 15px;
    line-height: 1em;
    background: #e66678;
    display: inline-block;
    color: #fff;
    font-size: 13px;
}
.op_release .releaseBlock .trackBlock dt .mini{
    font-size: 80%;
}
.op_release .releaseBlock .trackBlock.prizeBlock dt{
    margin: 0;
    font-size: 90%;
}
.op_release .releaseBlock .trackBlock.prizeBlock dd{
    padding: 15px 0 0 0;
    margin: 15px 0 0 0;
}
.op_release .releaseBlock .trackBlock dd{
/*    display: flex;*/
    border-top: 1px solid;
    padding: 10px 0 0;
}
.op_release .releaseBlock .trackBlock dd .txt{
    font-size: 15px;
    margin: 10px 0;
}
.op_release .releaseBlock .trackList{
    margin: 0 40px 0 0;
}
.op_release .releaseBlock .trackList:last-child{
    margin: 0;
}
.op_release .releaseBlock .trackList li{
    font-size: 90%;
    font-weight: 400;
    margin: 0 0 5px;
    line-height: 1.4em;
    text-indent: -2em;
    padding: 0 0 0 2em;
    word-break: break-all;
}
.op_release .releaseBlock .trackBlock.prizeBlock .trackList li{

}
.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: 769px){
.op_release .releaseBlock {
    padding: 0 4% 0 9%;
}
.op_release .releaseBlock:nth-child(even){
    padding: 0 9% 0 4%;
}
.op_release .releaseBlock:last-child{
    margin-bottom: 100px;
}
.op_release .releaseBlock .type{
    font-size: 180%;
}
.op_release .releaseBlock .tnumb {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    width: 100%;
    transition: none;
    margin-bottom: 40px;
}
.op_release .releaseBlock .credit {
    font-size: 65%;
}
.op_release .releaseBlock:nth-child(even) .tnumb {
    transition: none; 
}
.op_release .releaseBlock .releaseDetail {
    width: 100%;
    margin: 0;
    padding: 0;
    transition: 0.5s ease 0.3s;
}
.op_release .releaseBlock:nth-child(even) .releaseDetail {
    margin: 0;
    padding: 0;
}
}


/*==================================================
    レスポンシブ：SP
====================================================*/
@media screen and (max-width: 769px){
.op_release .releaseBlock {
    margin: 0 0 150px;
    padding: 0 5% 0 5%;
}
.op_release .releaseBlock:nth-child(even){
    padding: 0 5% 0 5%;
}
.op_release .releaseBlock:before {
    left: 5%;
    top: -30px;
    width: 95vw;
    height: calc(100% + 60px);
}
.op_release .releaseBlock:nth-child(even):before {
    left: auto;
    right: 0;
}
.op_release .releaseBlock .releaseTit{
    height: 46px;
    top: -15px;
    left: 2%;
}
.op_release .releaseBlock:nth-child(even) .releaseTit {
    left: auto;
    right: 2%;
}

.op_release .releaseBlock .tnumb:before {
    left: -5.5%;
    bottom: -5.5%;
}
.op_release .releaseBlock:nth-child(even) .tnumb:before {
    right: -5.5%;
    bottom: -5.5%;
}
.op_release .releaseBlock .trackBlock dd {
    display: block;
}
.op_release .releaseBlock .trackBlock dd .txt {
    font-size: 13px;
    margin: 5px 0;
}
.op_release .releaseBlock .trackList:last-child {
    margin: 5px 0 0;
}
}