/* modal base style */
.modal_wrap {
    position: fixed;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: 768px;
    min-width: 320px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s;
}
.modal_wrap .modal_box {
    position: relative;
    padding: 20px;
    width: 320px;
    border-radius: 10px;
    background: var(--White-0, #FFF);
}
.modal_wrap .modal_box .close {
    display: flex;
    justify-content: right;
}
.modal_wrap .modal_box .close button {
    display: block;
    width: 20px;
    height: 20px;
}
.modal_wrap .modal_box .text_box {
    margin-top: 2px;
}
.modal_wrap .modal_box .text_box h4 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}
.modal_wrap .modal_box .text_box p {
    color: var(--gray-600, #727272);
    font-size: 14px;
    font-weight: 500;
}
.modal_wrap .modal_box .btn_box {
    margin-top: 20px;
}
.modal_wrap .modal_box .btn_box.double {
    display: flex;
    justify-content: space-between;
}
.modal_wrap .modal_box .btn_box.double button {
    width: calc(50% - 6px);
}
.modal_wrap .modal_box .btn_box.vertical {
    margin-top: 24px;
}
.modal_wrap .modal_box .btn_box.vertical button:first-child {
    margin-bottom: 8px;
}

#modal03.modal_wrap h4{
    margin-top: 12px;
}

#modal06 #contents.sign_up_terms{
    background-color: #F8F8F8;
    padding: 16px 16px;
}

#modal06 .sign_up_terms .terms_box{
    height: 100%;
    background: #FFF;
    height: calc(100vh - 88px);
}
