#bo_v >header{
    display: none;
}
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

.pc-inline{ display: inline; }
.tablet{ display:none; }
.mobile{ display:none; }
.pc{ display: flex; }
.pc-mobile { display: flex; }
.mobile-pc { display: none; }

/* ==================== CONTACT BAR (fixed bottom) ==================== */
.contact_service {
    background-color: var(--mc);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 999;
    padding: 0.35% 0%;
    color: white;
    gap: 0.3vw 0.8vw;
}
.quick_logo_wrap {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.quick_logo_wrap img {
    height: 2.0vw;
    width: auto;
}
.quick_call_wrap {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.quick_call_wrap img {
    height: 1.8vw;
    width: auto;
}
.quick_agree {
}
.contact_mid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 1;
    font-family: 'Pretendard variable';
    width: auto;
}
.footer-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
}
.footer_input_form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5vw;
}
.footer_input_form .footer_input {
    width: 9.5vw;
    height: 2.2vw;
    white-space: nowrap;
    font-size: 0.85vw;
    font-family: 'Pretendard variable';
    box-sizing: border-box;
    padding: 0 0.8vw;
    border: none;
    outline: none;
    border-radius: 0.35vw;
}
.footer_input_form .footer_input::placeholder {
    font-family: 'Pretendard variable';
    font-size: 0.85vw;
    text-align: center;
    color: #999;
}
.footer_input_form .footer_input:focus::placeholder {
    opacity: 0;
}
.quick_agree {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    gap: 0.3vw;
}
.quickAgree_checkbox {
    width: 0.85vw;
    height: 0.85vw;
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    cursor: pointer;
    border: 1.5px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quickAgree_checkbox:checked::before {
    content: '';
    display: inline-block;
    width: 0.5vw;
    height: 0.5vw;
    background-color: #fff;
    border-radius: 50%;
}
.quickAgree_fornt {
    font-size: 0.75vw;
    font-family: 'Pretendard Variable';
    display: flex;
    position: relative;
    color: #fff;
}
.quickAgree_fornt a {
    color: #fff;
    text-decoration: none;
    font-family: 'Pretendard Variable';
}
.quick_submit_div {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1.5px solid var(--mc);
    border-radius: 1.5vw;
    padding: 0.45vw 1.5vw;
    margin-left: 0.5vw;
}
.quick_submit_text {
    font-size: 1.2vw;
    font-weight: 700;
    color: var(--mc);
    white-space: nowrap;
    letter-spacing: -0.03vw;
}

/* ==================== FOOTER ==================== */
.footer {
    display: flex;
    background: #000000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 4% 0% 9%;
    font-size: calc(1rem + ((1vw - 0.48rem) * 1.3889));
    position: relative;
}
.footer_top {
    width: 70%;
    padding-top: 0vw;
    padding-bottom: 2.5vw;
    justify-content: center;
}
.footer_logo {
    width: 14%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.footer_logo img {
    width: 100%;
}
.footer_top_line {
    width: 70%;
    height: 1px;
    background-color: #fff;
    opacity: 0.3;
    margin-bottom: 2.5vw;
}
.footer_bottom {
    width: 80%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-family: 'Pretendard variable';
    text-align: center;
    font-weight: 300;
    box-sizing: border-box;
}
.footer_bottom p {
    color: #fff;
    font-size: 0.85vw;
    line-height: 1.6;
    opacity: 0.7;
}
.copy {
    margin-top: 2vw;
    opacity: 0.5 !important;
    font-size: 0.8vw !important;
}
.footer_vweb {
    margin-top: 0.5vw;
    cursor: pointer;
    font-family: 'Pretendard variable';
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.5 !important;
    font-size: 0.8vw !important;
}
.footer_vweb p {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.1vw;
}

/* ==================== MODAL (개인정보) ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 37px;
    border: 1px solid #888;
    width: 48%;
    border-radius: 30px;
    padding-top: 0;
}
.close {
    color: #aaa;
    float: right;
    font-size: 33px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1%;
    z-index: 1;
    position: relative;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
#policy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    height: 530px;
    margin: 0 auto;
    padding: 1px;
    text-align: left;
}
#policy div.policy_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    height: 75px;
    background-color: #fff;
    border-radius: 10px;
    margin-top: -3vw;
}
#policy div.policy_title h2 {
    font-weight: 700;
    font-size: 25px;
    color: #000;
}
#policy div.policy_con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    padding: 20px 0px 20px 0px;
    background: #fff;
    border-radius: 10px;
}
#policy p.policy_text {
    overflow-y: scroll;
    height: 400px;
    padding-right: 20px;
    font-size: 14px;
    text-align: justify;
    line-height: 18px;
}

/* ==================== MOBILE ==================== */
@media screen and (max-width: 599px) {
    .pc{ display: none; }
    .pc-inline{ display: none !important; }
    .tablet{ display: flex; }
    .mobile-pc { display: flex; }
    .pc-mobile { display: none; }

    .footer {
        padding-bottom: 29%;
        padding-top: 8%;
        font-size: 3.5vw;
    }
    .footer_top {
        width: 90%;
        padding-bottom: 6vw;
        justify-content: center;
    }
    .footer_logo {
        width: 40%;
    }
    .footer_top_line {
        width: 90%;
        margin-bottom: 6vw;
    }
    .footer_bottom {
        width: 90%;
    }
    .footer_bottom p {
        font-size: 3.2vw;
    }
    .footer_bottom > div {
        align-items: center;
        color: #fff;
        flex-direction: column;
    }
    .footer_bottom > div > p {
        padding: 0 !important;
        margin: 0 !important;
    }
    .copy {
        font-size: 3.2vw !important;
        margin-top: 4vw;
    }
    div.footer_vweb {
        margin-top: 3vw;
        font-weight: 400;
    }

    /* mobile contact bar — 2줄: 로고+전화+동의 / 폼+버튼 */
    .contact_service {
        height: auto;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 2.5vw 2.5vw;
        gap: 1.5vw;
        box-sizing: border-box;
    }
    .contact_service::after {
        content: '';
        width: 100%;
        height: 0;
        order: 4;
        display: block;
    }
    /* 1줄: 로고(1) + 전화(2) + 동의(3) */
    .quick_logo_wrap {
        display: flex;
        order: 1;
    }
    .quick_logo_wrap img {
        height: 5vw;
    }
    .quick_call_wrap {
        display: flex;
        order: 2;
    }
    .quick_call_wrap img {
        height: 4.5vw;
    }
    .quick_agree {
        gap: 1.3vw;
        order: 3;
    }
    .quick_agree .quickAgree_fornt {
        font-size: 2.5vw;
    }
    .quickAgree_checkbox {
        width: 3.3vw;
        height: 3.3vw;
    }
    .quickAgree_checkbox:checked::before {
        width: 2vw;
        height: 2vw;
    }
    /* 2줄: 폼(5) + 버튼(6) */
    .contact_mid {
        width: auto;
        flex: 1;
        order: 5;
    }
    .footer_input_form {
        gap: 1.5vw;
        width: 100%;
        justify-content: center;
    }
    .footer_input_form .footer_input {
        flex: 1;
        height: 7vw;
        font-size: 3vw;
        border-radius: 1vw;
    }
    .footer_input_form .footer_input::placeholder {
        font-size: 2.8vw;
    }
    .quick_submit_div {
        padding: 1.2vw 4vw;
        border-radius: 3vw;
        order: 6;
        margin-left: 0;
    }
    .quick_submit_text {
        font-size: 3.2vw;
    }

    .modal-content {
        background-color: #fefefe;
        margin: 7% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 86%;
        border-radius: 30px;
    }
}
