@charset "UTF-8";
.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
}
.modal_bg {
    background: rgba(0, 0, 0, 0.5);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal_contents {
    background: white;
    left: 50%;
    padding: 40px 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 120px;
    width: 300px;
    border-radius: 15px;
    vertical-align: top;
    padding-top: 20px;
}
.modal_detail {
    margin-top: 10px;
}
.modal_large {
    height: 150px;
}
.modal_btn_area {
    right: 10%;
    bottom: 10%;
    position: absolute;
}
.modal_btn_area a {
    margin-left: 20px;
}