@charset "utf-8";

/* ========================================
    공통
========================================= */
:root {
    --main-color: #029da2;
    --sub-color-01: #ecf4f6;
    --sub-color-02: #222;
    --point-color: #ffcf50;
    --gray-01 :#f9f9f9;
    --gray-02 :#eee;
    --gray-03 :#222;
    --border-default: 1px solid #000;
}
body, html {
    margin: 0;
    padding: 0;
}
.div-cont {
    max-width: 1280px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
}
.dimmed {
    width: 100vw;
    height: 100vh;
    background:rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

/* ========================================
    header
========================================= */
.header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem; /* 80px */
    background: none;
    box-shadow: none;
    z-index: 2;
}
.header-wrap.scroll {
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.header {
    position: relative;
    width: 100%;
    height: 100%;
}
.header .div-cont {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#logo {
    width: 10rem;
    height: 100%;
}
.logo {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
    background: url("../_images/logo.png") no-repeat left center;
    background-size: contain;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    
}
.nav-li {
    height: 150%;
    position: relative;
}
.nav-li:hover > a {
    color: var(--main-color);
}
.nav-li:hover .depth2-wrap {
    display: block;
}
.nav-li > div , .nav-li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 1rem 2rem;
    box-sizing: border-box;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.nav-li .depth2-wrap {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0.5rem;
}
.nav-li .depth2-li a {
    padding: 0.5rem;
    text-align: center;
}
.nav-li .depth2-li:hover > a {
    color: var(--main-color);
}
.header .btn-ham {
    width: 3rem;
    height: 3rem;
    box-sizing: border-box;
    display: none;
}
.header .btn-close {
    width: 3rem;
    height: 3rem;
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.header .btn-ham, .header .btn-close {
    background: none;
    border: none;
    outline: none;
    color: var(--main-color);
    font-size: 2rem;
}

@media (max-width:1024px) {
    body,html {
        font-size: 14px;
    }
    .header .btn-ham {
        display: block;
    }
    .header .btn-close {
        display: block;
    }
    .nav-wrap {
        width: 80vw;
        height: 100vh;
        position: absolute;
        top: 0;
        right: -100%;
        background: var(--sub-color-01);
        transition: 0.4s;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
    }
    .nav-wrap.on {
        right: 0;
    }
    .nav {
        flex-direction: column;
        width: 60%;
        margin: 1rem auto;
    }
    .nav-li {
        width: 100%;
    }

    .nav-li >div , .nav-li a {
        font-size: 1.4rem;
        line-height: 100%;
        padding: 1rem;
        text-align: left;
        color: var(--main-color);
        text-shadow: none;
    }
    .nav-li .depth2-wrap {
        position: relative;
        background: none;
        margin-bottom: 2rem;
    }
    .nav-li .depth2-li a {
        text-align: left;
        padding-left: 3rem;
    }
}
@media (max-width:768px) {}
@media (max-width:480px) {
    body,html{
        font-size: 12px;
    }
}



/* ========================================
    contents
========================================= */
.contents-wrap {
    min-height: calc(100vh - 15rem);
}
.sub-wrap .contents {
    padding: 5rem 0;
}
/* ========================================
    footer
========================================= */
.footer-wrap {
    height: 15rem;
}
.footer {
    background: var(--gray-03);
    color: var(--gray-02);
    height: 100%;
}
.footer .div-cont {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.footer #logo {
    height: 2.5rem;
}
.footer-info-wrap {
    width:30%;
    margin-right: 5%;
    margin-bottom: 1rem;
}
.footer-info {
    margin-top: 1rem;
}
.footer-info .info {
    color: var(--gray-02)
}
.footer-menu-wrap {
    width: 65%;
}
.footer-menu {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.footer-menu-li + li {
    margin-left: 2rem;
}
.footer-menu-li a {
    color: var(--gray-02);
}
.copyright {
    font-size: 0.8rem;
}


@media (max-width:1024px) {

}
@media (max-width:768px) {
    .footer-info-wrap {
        width: 100%;
        margin-right: 0;
    }
    .footer-menu-wrap {
        width: 100%;
        margin-bottom: 1rem;
    }
    .footer-menu {
        justify-content: flex-start;
    }
}
@media (max-width:480px) {

}

/* ========================================
========================================= */

/* ========================================
========================================= */