@charset "utf-8";

/* 공통 */

.show-default {
    display: block;
}

.hide-default {
    display: none;
}

body.on {
    touch-action: none;
    overflow: hidden !important;
    -webkit-user-select: none;
}

html.on {
    touch-action: none;
    overflow: hidden !important;
    overscroll-behavior: none;
    -webkit-user-select: none;
}

/* etc */
.animated_1 {
    opacity: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: all ease-in-out 1s;
    transition: all ease-in-out 1s;
    transition-timing-function: ease;
}

.animated_1.on {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.animated_2 {
    opacity: 0;
    margin-top: 80px;
    -webkit-transition: all ease-in-out 1s;
    transition: all ease-in-out 1s;
    transition-timing-function: ease;
}

.animated_2.on {
    margin-top: 0;
    opacity: 1;
}

.d-1s {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}

.d-2s {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.d-3s {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.d-4s {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

.d-5s {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
}

.d-7s {
    -webkit-transition-delay: .7s;
    transition-delay: .7s;
}

.d-9s {
    -webkit-transition-delay: .9s;
    transition-delay: .9s;
}

.d-11s {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

.d-13s {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

.icon_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top_btn {
    width: 48px;
    height: 47px;
    background: url('../image/common/top_btn.svg') no-repeat center / contain;
    transition: all 0.6s ease;
    margin-left: 14px;
}

.gnb_btn_box {
    display: none;
}

.img_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* header */
.header_inner {
    padding: 0 100px;
    height: 90px;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.header_inner.fix {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo .img_icon {
    width: 137px;
    height: 35px;
}

.header_inner .menu {
    gap: 75px;
}

.header_inner .menu a {
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3em;
}

.common_btn {
    background-color: #4751ED;
    color: #fff;
    padding: 20px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
}

.header_inner .button_box {
    margin-left: 37px;
    gap: 8px;
}

.header_inner .common_btn {
    transition: 0.5s;
    padding: 13px 35px;
    font-size: 14px;
    font-weight: 500;
}

.header_inner .common_btn.border:hover {
    background-color: #4751ED;
    color: #fff;
}

#header .button_box {
    position: unset;
}

#header .down_x_btn,
#header .ham_btn {
    display: none;
}

.header_inner .menu {
    transform: translateY(0%);
}

/* END header */

/* footer */
.footer_inner {
    background-color: #fff;
}

.f_logo {
    width: 136px;
    height: 35px;
}

.footer_inner .top {
    padding: 90px 0 60px;
    border-bottom: 1px solid #E4E4E4;
    justify-content: space-between;
}

.footer_inner .top .right {
    gap: 100px;
}

.f_tit {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

.footer_inner .sns_box {
    gap: 10px;
}

.footer_inner .sns_box .img_icon {
    width: 158px;
}

.f_alt {
    line-height: 2em;
    font-size: 14px;
    color: #333;
    font-weight: 300;
}

.copy {
    font-size: 14px;
    font-weight: 500;
    line-height: 2em;
    color: #ADADAD;
}

.footer_inner .btm {
    padding: 30px 0 80px;
}

.footer_inner .btm .btn_box {
    gap: 7px;
}

.footer_inner .btm .btn_box .button {
    border-radius: 8px;
    background-color: #F6F6F6;
    line-height: 2.4em;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #B1B1B1;
}

.footer_inner .btm .copy_box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer_inner .locate .f_contact {
    width: 125px;
    padding: 5px 0;
    font-weight: 600;
    font-size: 13px;
    line-height: 28px;
    color: #AAAAAA;
    border: 1px solid #DBDBDB;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    gap: 4px;
}

/* END footer */


/* modal */
.modal_bg {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    display: none;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 5px;
    width: 720px;
    z-index: 99;
    border-radius: 20px;
    overflow: auto;
    max-height: 95%;
    display: none;
}

.modal .top {
    padding: 25px 50px;
    background-color: #F3F3F3;
}

.modal .top .tit {
    font-weight: 600;
    font-size: 24px;
    color: #000;
}

.modal .top .close_btn {
    width: 36px;
    height: 36px;
    background: url('../image/sub/modal_close.svg') no-repeat center / contain;
}

.modal .modal_body {
    width: 100%;
    overflow: auto;
    padding: 60px 50px;
}

.pop_bg {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 2;
}

/* END modal */
@media(max-width:1099px) {
    #header .header_inner .menu {
        flex-direction: column;
    }

    #header .right.flex {
        background-color: #FAFAFA;
        transform: translateX(120%);
        position: fixed;
        top: 0;
        right: 0;
        width: 324px;
        height: 100vh;
        flex-direction: column-reverse;
        justify-content: flex-end;
        z-index: 999;
    }

    #header .right.flex::after {
        content: '';
        width: 100vw;
        height: 100vh;
        position: absolute;
        top: 0;
        left: calc(100vw * -1);
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        display: none;
    }

    #header .button_box {
        background-color: #FFF;
        padding: 30px 40px;
    }

    .header_inner .button_box {
        margin-left: 0;
    }

    #header .header_inner .menu {
        gap: 40px;
        padding-top: 60px;
        text-align: left;
        align-items: flex-start;
        padding-left: 36px;
    }

    #header .down_x_btn {
        width: 36px;
        position: absolute;
        top: -71px;
        right: 9px;
    }

    #header .down_x_btn img {
        width: 36px;
    }

    #header .ham_btn {
        width: 24px;
        position: absolute;
        top: 23px;
        right: 20px;
    }

    #header .down_x_btn,
    #header .ham_btn {
        display: block;
    }
}

@media (max-width:990px) {
    .header_inner{
        background-color: transparent;
    }

    .footer_inner .top .right {
        gap: calc(100vw * (100/990));
    }

    .footer_inner .top {
        flex-direction: column;
        gap: calc(100vw * (50/990));
        padding: 40px 0;
    }

    .footer_inner .btm {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width:620px) {

    .header_inner {
        padding: 0 20px;
    }

    #header .button_box {
        padding-top: 40px;
        padding-right: 60px;
        padding-bottom: 32px;
        margin-left: 0;
        padding-left: 29px;
    }

    .header_inner .common_btn {
        padding : 13px 0;
        width: 97px;
        text-align: center;
    }

    .header_inner {
        align-items: center;
    }

    .footer_inner .top .right {
        flex-direction: column;
    }

    .f_logo {
        width: 105px;
    }

    .logo .img_icon {
        width: 102px;
        height: auto;
    }
}