@charset "UTF-8";



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

/*===================================================
  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: 770px){
.accordionList .accordionTit:hover{
    background: #ccc;
}
}

/* OP:ACCORD:SP-max-769 */
@media screen and (max-width: 769px){
.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: 770px){

}

/* OP:MODALSP-max-769 */
@media screen and (max-width: 769px){
.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 {

}
.hamBtn .hamMenu{
    position: relative;
    width: 35px;
    height: 35px;
}
.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 {
    background: #FFF;
}
.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: #DDD;
    z-index: 10;
}
.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: 800;
}
.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:PC-min-770 */
@media screen and (min-width: 770px){
.hamBtn {
    display: none;
}
.navigation {
    position: fixed;
    pointer-events: auto;
    top: 0;
    opacity: 1;
    left: auto;
    right:0;
    width: auto;
    height: auto;
    background: transparent;
    transition: 0.5s ease;
}
.navigation .navTit {
    display: none;
}
.navigation .headerNav {
    display: block;
    padding: 40px;
    text-align: right;
}
.navigation .headerNav li {
    margin: 0 0 20px;
    line-height: 1em;
}
.navigation .headerNav li a {
    font-size: 120%;
}
}

/* NAVIGATION:SP-max-769 */
@media screen and (max-width: 769px){
.navigationBlock{
    position: fixed;
    z-index: 9999;
}
.navigation {
    pointer-events: none;
    opacity: 0;
}
.navigation .headerNav {
    padding: 80px 40px;
}
.navigation .headerNav {
    padding: 80px 40px;
}
.navigation .navTit {
    right: 40px;
    bottom: 40px;
    max-width: 120px;
}
.navigation .headerNav li{
    margin: 0 0 20px;
}
.navigation .headerNav li a{
    font-size: 150%;
}
}



/*===================================================
  visual
====================================================*/
.visual{

}
.visual .heroView{
    background: #efefef;
}
.visual .action{

}

/* item1 */
.visual .item1{
    position: absolute;
    bottom: 40px;
    left: 40px;
}
.heroView .item1 .snsList {
    display: flex;
}
.heroView .item1 .snsList li {
    width: 25px;
    margin: 0 20px 0 0;
}
.heroView .item1 .snsList li a {
    display: block;
}
.heroView .item1 .snsList li a img{
    filter: invert(1);
    transition:0.3s ease;
}

/* item2 */
.visual .item2{

}
.visual .scrollTxt {
    position: absolute;
    right: 16px;
    bottom: 130px;
    font-size: 70%;
    transform: rotate(90deg);
    transition: 0.5s ease;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: #000
}
.visual .scrollarrow {
    width: 1px;
    height: 60px;
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 1;
    background: #000;
    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);}
}

/* item3 */
.visual .item3{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
}

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

}



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

.scrolled .visual .action{
    transition-delay: 0s;
}

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

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

/* act3 */
.act3{
    opacity: 0;
    transition: 1s ease 2.5s;
}
.loaded .act3{
    opacity: 1;
}
.headerFix .act3{
    opacity: 0;
}

/* act4 */
.act4{
    opacity: 0;
    transition: 1s ease 3s;
}
.loaded .act4{
    opacity: 1;
}
.headerFix .act4{

}


/*===================================================
  OP:NEWS
====================================================*/
.op_news{

}
.op_news .newsList{
    border-top: 1px solid #aaa;
    padding: 20px 0 0;
    position: relative;
    margin: 0 0 40px;
}
.op_news .newsList:after{
    content: "";
    position: absolute;
    width: 15%;
    height: 1px;
    top: -1px;
    background: #000000;
}
.op_news .newsList a{
    display: block;
    position: relative;
    margin: 0 0 20px;
    color: unset;
}
.op_news .newsList a:last-child{
    margin: 0;
}
.op_news .newsList a:before{
    content: "";
    position: absolute;
    width: 15%;
    height: 1px;
    bottom: 0;
    background: #000000;
    transition: 0.5s ease;
}
.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: 770px){
.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: 769px){
.op_news .newsList{
    border-top: 1px solid #000;
    margin: 0 0 20px;
}
.op_news .newsList:after {
    content: none;
}
.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: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 .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: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: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 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: #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 7px;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    margin: 0 0 0 10px;
}
.op_ticket .tikcetTit span {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 12px;
    height: 12px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}
.op_ticket .tikcetTit.open span {
    transform: translateY(-50%);
}
.op_ticket .tikcetTit span: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: #EFEFEF;
}
.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{
    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: 770px){
.op_ticket .tikcetTit:hover{
    background: #ccc;
}
}

/* 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: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: 770px){
.op_goods .goodsList li a:hover .goodsImage img{
    transform:scale(1.2);
}

}

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

.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: 769px){
.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{
    padding: 100px;
    background: #DDD;
}
footer h2.footerLogo{
    line-height: 0;
    max-width: 400px;
    margin-bottom: 40px;
}
footer .credit{
    display: inline-block;
    font-size: 80%;
    font-weight: 500;
}


/* SP-max-769 */
@media screen and (max-width: 769px){
footer{
    padding: 40px;
}
footer h2.footerLogo{
    line-height: 0;
    max-width: 200px;
    margin-bottom: 20px;
}
}