@charset "utf-8";
/* CSS Document */
.popup{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 9999;
}
.popup .wrap{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.popup .wrap .bg{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    position: absolute;
    top: 0;
    left: 0;
}
.popup .wrap .set{
    max-width: 100%;
    z-index: 1;
    position: relative;
}
.popup .wrap .set .close{
    position: absolute;
    bottom: -50px;
    right: 0;
}
.popup .wrap .set .close span{
    width: 100px;
    height: 40px;
    display: block;
    cursor: pointer;
    background: #121212;
    font-size: 18px;
    line-height: 230%;
    text-align: center;
    border-radius: 10px;
    color: #FFFFFF;
}
.popup .wrap .set .pop_inner{}