@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 {
    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.on {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.animated_2 {
    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_2.on {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.animated_3 {
    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_3.on {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.animated_4 {
    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_4.on {
    -webkit-transform: translateY(0);
    transform: translateY(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;
}

/* header */

@media(hover: hover) and (pointer: fine) {
    
}

#header {
    /* border: 1px solid red; */
    position: fixed;
    z-index: 1000;
    width: 100vw;
    top: 0;
    left: 0;
    background-color: #fff;
    transition: 0.5s;
}

#header.on {
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
}

#header .header_inner {
    width: 95%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 20px 0;
    justify-content: space-between;
    /* border: 1px solid red; */
}

#header .logo {
    width: 134px;
}

#header .header_link_group {
    display: flex;
    align-items: center;
}

#header .project_btn {
    font-size: 18px;
    font-weight: 500;
}

#header .mypage_btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #3c94d0;
    border-radius: 50px;
    background-color: rgba(60, 148, 208, 0.1);
    margin: 0 10px 0 30px;
}

#header .logout_btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    border-radius: 50px;
    background-color: #fff;
    border: 1px solid #e8e8e8;
}

.mobile_header {
    display: none;
}

.header_ham_btn {
    display: none;
}

.m_top_btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: calc(100vw * (60/375));
    height: calc(100vw * (60/375));
    background-color: #fff;
    border-radius: 50%;
    font-size: calc(100vw * (12/375));
    font-weight: 600;
    position: fixed;
    bottom: calc(100vw * (45/375));
    right: calc(100vw * (15/375));
    z-index: 1000;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
}

/* END header */

/* footer */

footer {
    padding: 120px 0;
    border-top: 1px solid #e3e3e3;
}

.footer_inner {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer_left_top {
    display: flex;
    align-items: center;
    gap: 30px;
}

.f_logo {
    width: 190px;
}

.f_info {
    font-size: 16px;
    color: #8a8a8a;
    font-weight: 400;
    line-height: 1.6em;
}

.f_info_group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.f_info.bold {
    font-weight: 700;
}

.f_left_info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.f_company {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6em;
}

.f_info_row {
    display: flex;
    gap: 15px;
}

.f_info_row span {
    padding-right: 15px;
    border-right: 1px solid #eee;
    font-size: 13px;
    color: #8a8a8a;
    font-weight: 400;
}

.f_info_row span:last-child {
    border: none;
    padding: 0;
}

.right_contact {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 500;
    color: #8a8a8a;
}

.right_contact p {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.6em;
}

.f_info_right {
    font-size: 12px;
    line-height: 1.8em;
    color: #8a8a8a;
}

.f_info_right_link {
    padding: 20px 48px;
    border-radius: 6px;
    border: 1px solid #c0c0c0;
    font-size: 14px;
    color: #8a8a8a;
    line-height: 1.6em;
    display: block;
    margin-top: 20px;
}

/* 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%);
    width: 850px;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 5px;
    z-index: 99;
    display: none;
}

.modal .top {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal .top .tit {
    font-weight: 700;
    line-height: 1;
    font-size: 24px;
    color: #010101;
}

.modal .top .close_btn {
    width: 16px;
    height: 16px;
    background: url('../image/close_btn.svg') no-repeat center / contain;
    margin-bottom: 30px;
}

.modal .edit_alt {
    height: 635px;
    width: 100%;
    overflow: auto;
}

.modal .edit_alt::-webkit-scrollbar {
    width: 8px;
}

.modal .edit_alt::-webkit-scrollbar-track {
    background-color: transparent;
}

.modal .edit_alt::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: #EFEFEF;
}

.modal .edit_alt::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}

/* END modal */

@media all and (max-width:1600px) {}

/* 타블렛 가로 */
@media all and (max-width:1399px) {}


/* 타블렛 세로 */
@media all and (max-width:1023px) {
    .footer_inner {
        flex-direction: column;
    }
    .footer_left_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .f_left_info {
        margin-top: 20px;
    }
    .footer_right {
        margin-top: 20px;
    }
}


/* 타블렛 가로 미만 ~ 모바일 */
@media all and (max-width:900px) {

}

/* 모바일 상세 */
@media all and (max-width:700px) {
    .f_info_group {
        gap: calc(100vw * (10/375));
    }

    .f_info {
        font-size: calc(100vw * (14/375));
    }

    .f_info_row {
        flex-direction: column;
        gap: calc(100vw * (5/375));
    }

    .f_left_info {
        gap: calc(100vw * (5/375));
    }

    .f_info_row span {
        border: none;
    }

    .mobile_header {
        display: flex;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
        font-size: calc(100vw * (24/375));
        font-weight: 600;
        transform: translateY(-100%);
        transition: 0.5s ease-in-out;
    }
    .mobile_header .bg {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.1);
        top: 0;
        left: 0;
        width: 100vw;
        height: 200vh;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        display: none;
    }
    .m_header_inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5vh;
        background-color: #fff;
        width: 100%;
        height: 50%;
    }
    #header .header_link_group {
        display: none;
    }
    
    .header_ham_btn {
        display: block;
        width: calc(100vw * (44/375));
        padding: calc(100vw * (10/375));
    }
    .mxbtn  {
        position: absolute;
        top: calc(100vw * (25/375));
        right: calc(100vw * (15/375));
        padding: calc(100vw * (10/375));
    }
    .mxbtn img {
        width: calc(100vw * (18/375));
        height: calc(100vw * (18/375));
    }
    .m_top_btn {
        display: flex;
    }

    .m_logo {
        position: absolute;
        top: 5%;
        left: 5%;
        width: 130px;
    }
}

/* 모바일 가로 */
@media all and (max-width:568px) {}

@media all and (max-width:425px) {}

@media all and (max-width:375px) {}

@media all and (max-width:320px) {}







/* 공통 */

/* PC이하 ~ 타블렛 가로 */
@media all and (max-width:1199px) {
    .show-1199 {
        display: block;
    }

    .hide-1199 {
        display: none;
    }
}

@media all and (max-width:1199px) {
    .show-1199 {
        display: block;
    }

    .hide-1199 {
        display: none;
    }
}

/* 타블렛 가로 이하 */
@media all and (max-width:1024px) {

}

/* 타블렛 가로 이하 */
@media all and (max-width:1023px) {
    .show-1023 {
        display: block;
    }

    .hide-1023 {
        display: none;
    }
}

/* 타블렛 이하 ~ 모바일 */
@media all and (max-width:767px) {
    .show-767 {
        display: block;
    }

    .hide-767 {
        display: none;
    }


}

@media all and (max-width:700px) {
    .sub_inner .subh_tit {
        font-size: calc(100vw * (14/375));
    }
    
    .sub_inner .subh_title {
        font-size: calc(100vw * (40/375));
    }
}
