@charset "utf-8";

body.hidden {
    position: relative;
    overflow: hidden;
}

.header_layout {
    position: relative;
    width: 100%;
    height: 100px;
    background: #8BB8A6;
}

.nav_dim {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    display: none;
}

.nav_dim.show {
    display: block;
}

.header_layout .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    height: 100%;
}

.header_layout .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header_layout .logo {
    text-align: center;
    color: #fff;
    font-family: 'Squada One', sans-serif;
    margin-bottom: 8px;
}

.header_layout .logo a {
    display: block;
    font-size: 32px;
    color: #fff;
}

.btn_allMenu {
    position: relative;
    width: 25px;
    opacity: 0;
}

.btn_allMenu span {
    display: block;
    width: 25px;
    height: 2px;
    background: #494949;
    border-radius: 2px;
}

.btn_allMenu span+span {
    margin-top: 7px;
}

.header_layout aside ul {
    display: flex;
    gap: 24px;
}

.header_layout aside li {
    font-size: 14px;
    color: #494949;
}

.all_menu {
    position: absolute;
    top: 100px;
    left: -100%;
    width: 286px;
    height: 100vh;
    padding: 40px 33px;
    background: #EFEFEF;
    transition: 0.3s;
    display: none;
}

.all_menu.show {
    left: 0;
    transition: 0.3s;
}

section {
    position: relative;
    display: flex;
    height: 100%;
}

.lnb {
    position: relative;
    width: 286px;
    padding: 40px 33px;
    background: #EFEFEF;
    height: calc(100vh - 100px);
}

nav li+li {
    margin-top: 24px;
}

nav li a {
    display: block;
    /* padding-left: 8px; */
    color: #494949 !important;
    font-size: 18px !important;
    line-height: 24px !important;
}

nav li.current a {
    color: #0A7AFF !important;
}

nav li.home a {
    padding-left: 0;
    color: #000 !important;
}

.link_back {
    position: relative;
    display: block;
    padding-left: 29px;
    margin-top: 40px;
    font-size: 18px !important;
    font-weight: 700 !important;
}

.link_back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: url(../images/ic_back.png) 0 0 / cover;
}

.link_logout {
    position: relative;
    display: block;
    padding-left: 27.5px;
    margin-top: 30px;
    font-size: 14px !important;
    color: #CC5F5F !important;
}

.link_logout::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 24px;
    height: 24px;
    background: url(../images/ic_logout.png) 0 0 / cover;
}

.contact {
    display: inline-block;
    margin-top: 207px;
    background: rgba(94, 99, 102, 0.1);
    border-radius: 16px;
    padding: 11px 50px 11px 16px;
}

.contact p {
    position: relative;
    padding-left: 36px;
    font-size: 14px;
    color: #1C1D22;
    white-space: nowrap;
}

.contact p::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 24px;
    height: 24px;
    background: url(../images/ic_contact.png) 0 0 / cover;
}

/* .content {
    margin-left: 286px;
} */

.cont_main {
    width: calc(100% - 286px);
    padding: 34px 50px;
}

.footer_layout {
    position: absolute;
    bottom: 16px;
    left: 50%;
}

.footer_layout .copyright {
    font-size: 16px;
}

.mo_ver {
    display: none;
}

@media (max-width: 1800px) {
    .header_layout .inner {
        max-width: 100%;
        width: calc(100% - 36px);
    }
}

@media (max-width: 1280px) {}

@media (max-width: 900px) {
    .mo_ver {
        display: block;
    }

    .header_layout {
        height: 64px;
    }

    .header_layout .inner {
        justify-content: flex-end;
    }

    .header_layout .logo {
        left: 18px;
        transform: translate(0, -50%);
        font-size: 16px;
    }

    .header_layout .logo a {
        display: inline-block;
        margin-right: 11px;
        font-size: 28px;
    }

    .header_layout aside {
        display: none;
    }

    .btn_allMenu {
        width: 13px;
        opacity: 1;
    }

    .btn_allMenu span {
        width: 13px;
        height: 1px;
    }

    .btn_allMenu span+span {
        margin-top: 4px;
    }

    .lnb {
        position: absolute;
        left: -100%;
        width: 310px;
        height: calc(100vh);
        padding: 40px;
        transition: 0.3s;
    }

    .lnb.show {
        position: fixed;
        top: 0;
        left: 0;
        transition: 0.3s;
        z-index: 9;
        height: 100vh;
    }

    .contact {
        margin-top: 47px;
    }

    .link_logout {
        margin-top: 30px;
    }

    .content {
        margin-left: 0;
    }

    .footer_layout {
        position: static;
    }

    .footer_layout .inner {
        width: 100%;
        padding: 14px 30px;
        text-align: center;
    }

    .footer_layout .footer_menu ul {
        display: flex;
        justify-content: center;
        gap: 25px;
    }

    .footer_layout .footer_menu li {
        position: relative;
        font-size: 14px;
        color: #505050;
    }

    .footer_layout .footer_menu li::before {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: -30%;
        width: 1px;
        height: 12px;
        background: #E5E5EC;
    }

    .footer_layout .footer_menu li:last-child::before {
        display: none;
    }

    .footer_layout .logo {
        display: flex;
        justify-content: center;
        gap: 4px;
        margin-top: 24px;
    }

    .footer_layout .logo p {
        font-size: 22px;
        color: #111;
        font-family: 'Squada One';
        letter-spacing: 0.5px;
    }

    .footer_layout .logo .btn_fold {
        width: 16px;
        height: 16px;
        background: url(../images/ic_fold.png) 0 0 / cover;
    }

    .footer_layout .footer_info {
        margin-top: 24px;
    }

    .footer_layout .footer_info li {
        font-size: 13px;
        color: #767676;
    }

    .footer_layout .footer_info li+li {
        margin-top: 6px;
    }

    .footer_layout .footer_info li a {
        color: #111;
    }

    .footer_layout .footer_info li .biz_num {
        position: relative;
        padding-right: 12px;
    }

    .footer_layout .footer_info li .biz_num::before {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        width: 12px;
        height: 12px;
        background: url(../images/ic_arrow.png) 0 0 / cover;
    }

    .footer_layout .footer_info .call {
        margin: 12px 0;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .footer_layout .sns_g {
        margin-top: 34px;
    }

    .footer_layout .sns_g ul {
        display: flex;
        justify-content: center;
        gap: 24px;
    }

    .footer_layout .copyright {
        display: block;
        font-size: 12px;
        color: #767676;
        margin-top: 34px;
    }



}
