@charset "UTF-8";


/*===================================================
  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;
    display: flex;
    align-items: center;
}
.op_modal .modPop .close {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 50px;
    top: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    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%) rotate(45deg);
}
.op_modal .modPop .close::after {
    transform: translate(-50%,-50%) rotate(135deg);
}
.op_modal .modPop .popInBox {
    width: 90%;
    max-width: 1200px;
    margin: 100px auto;
    position: relative;
    background: #f7f7f7;
    color: #000;
    border-radius: 20px;
}
.op_modal .modPop .popInContent{
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    border-radius: 40px;
    overflow: hidden;
}
.op_modal .modPop .popInContent::-webkit-scrollbar{
    display: none;
}

html:has(body.is-fixed) {
    overflow: clip;
    overscroll-behavior: none;
}


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