@charset "utf-8";
/* CSS Document */

.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
}
.close-btn {
    cursor: pointer;
    width: 44px;
    position: absolute;
    top: 65px;
    right: 50px;
}
.modal-bg {
    background: rgba(255,255,255,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal-box {
    width: 90%;
    max-width: 600px;
    min-height: 456px;
    background: url(/sevice_shared/img/common/popup/bg_popup.png) no-repeat 0 0 / cover;
    left: 50%;
    padding: 16px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
}
.modal-content {
    position: absolute;
    width: 450px;
    top: 48%;
    left: 47%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.modal-content p {
    font-size: 2.6rem;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
    margin-bottom: 30px;
}
.modal-content a {
    color: #fff;
    font-weight: bold;
    font-size: 2.2rem;
    padding: 15px 35px 12px 65px;
    box-sizing: border-box;
    border-radius: 100px;
    background-color: #333;
    background-image: url(/sevice_shared/img/common/popup/icn_download.svg);
    background-repeat: no-repeat;
    background-position: 29px;
}
.modal-content a:hover {
    text-decoration: none;
}
@media screen and (max-width: 768px) {
    .modal-box {
        width: 300px;
        height: 227px;
        min-height: auto;
    }
    .close-btn {
        top: 8px;
        right: 8px;
    }
    .modal-content {
        width: 250px;
    }
    .modal-content p {
        margin-bottom: 16px;
        font-size: 1.25rem;
        text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
    }
    .modal-content a {
        background-position: 14px;
        font-size: 1.2rem;
        background-size: 13px;
        padding: 10px 15px 10px 32px;
    }
}