@charset "UTF-8";
/*===============================================
popup 18+
===============================================*/
.warning-18{ z-index: 1000; width: 90%; max-width: 700px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%); }
.warning-18:before{ content: ''; display: table; position: absolute; left: 50%; top: 0; transform: translate(-50%, 0) rotate(30deg); width: 320px; height: 320px; background: linear-gradient(to right, rgba(141, 0, 0, 1.0), rgba(141, 0, 0, 0)); }
.wraning-wrap{ width: 100%; position: relative; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.warning-icon{ width: 200px; position: relative; margin: 20px auto; }
.warning-icon img{ width: 100%; vertical-align: bottom; }
.warning-text{ width: calc(100% - 240px); position: relative; color: #ffffff; }
.warning-text h5{ font-size: 2em; font-weight: 700; border-bottom: 5px solid #D80000; margin-bottom: 10px; text-align: center; }
.warning-text p{ font-size: .95em; font-weight: 400; text-align: justify; line-height: 1.4em; }
.warning-btns{ width: 100%; position: relative; margin: 10px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.warning-btn{ width: 48%; height: 50px; position: relative; border-radius: 10px; margin: 10px 0; transition: .15s linear; }
.warning-btn a{ position: absolute; width: 100%; height: 100%; top: 0; left: 0; text-align: center; line-height: 50px; color: #ffffff; font-size: 1.2em; }
.warning-not18{ background: #D80000; }
.warning-over18{ background: #02af59 }
.warning-btn:hover{ height: 49px; background: none; border: 1px solid #ffffff; box-sizing: border-box; }
.warning-btn:hover.warning-btn a{ line-height: 46px; }
.popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 1000;
    opacity: 0;
    display: none;
    }
@media all and (max-width: 550px){
    .warning-text{ width: 100%; }
    .warning-text h5{ position: relative; margin: 0 auto 10px; }
}
.popup.scroll{ overflow-y: scroll; }
