#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 0;
    z-index: 9998;
    background-color: #fff;
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1700px;
    padding: 0 2rem;
    margin: auto;
}

#header .logo {
    width: 20%
}

#header .logo .logoImg {
    width: 27.5rem;
}

#header .logo a {
    display: inline-block;
}

#header #menu {
    width: 70%;
    /* margin:0 20px; */
    font-family: var(--notoSans), serif;
}

#header #menu .menu {
    width: calc(100% / 6);
    position: relative;
    top: 0;
    display: block !important;
}

#header #menu .depth01 {
    padding: 25px 0;
    display: block;
    color: #181818;
    text-align: center;
}

#header #menu .depth01.on {
    background-color: var(--pointcolor);
    color: #fff;
}

#header #menu .depth02 {
    display: none;
    position: absolute;
    top: 100%;
    left: -10%;
    width: 100%;
}


.nav_btn {
    display: none;
    width: 30px;
    height: 20px;
    position: fixed;
    top: 27px;
    right: 5%;
    transition: .1s;
    cursor: pointer;
    z-index: 10000;
}

.nav_btn span {
    width: 100%;
    height: 2px;
    background-color: #181818;
    display: inline-block;
    position: absolute;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav_btn .border1 {
    top: 0;
    right: 0;
    width: 70%;
}

.nav_btn .border2 {
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
}

.nav_btn .border3 {
    bottom: 0px;
    right: 0;
    width: 50%;
}

.nav_btn.sticky span {
    background-color: #181818;
}

/* .nav_btn.sticky.open span {background-color: #181818;} */

.nav_btn.open {
    transform: rotate(360deg);
}

.nav_btn.open .border1 {
    transform: translateY(16px) rotate(-45deg);
    width: 100%;
    top: -13px;
}

.nav_btn.open .border2 {
    opacity: 0;
}

.nav_btn.open .border3 {
    transform: translateY(-16px) rotate(45deg);
    width: 100%;
}


#header {
    transition: .3s all ease;
}

/* board */
#header.board {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 7px rgb(0 0 0 / 10%);
}

.sub.board {
    padding-top: 74px;
}

/* sticky */
#header.sticky {
    position: fixed;
    top: -1px;
    left: 0;
    width: 100%;
    z-index: 9998;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 7px rgb(0 0 0 / 10%);
}

#header.sticky .login li:hover a {
    background-color: #fff;
    color: #000;
}

/* #header.sticky #menu .depth01 {color:#484848;} */


@media (min-width:990px) {
    .dropdown-menu {
        position: absolute;
        width: 100%
    }

    .dropdown {
        position: relative;
        top: 0;
        left: 0
    }

    #header .container {
        position: relative;
        top: 0;
        left: 0;
    }

    #header .dropdown-menu {
        /* visibility: hidden;opacity: 0; */
        display: none;
    }


    #header .tel {
        display: none;
    }

    #header .logo {
        display: flex;
        align-items: center;
    }

    #header #menu {
        width: calc(100% - 600px);
        margin-left: auto;
    }

    #header #menu #lnb .depth02 {
        background-color: var(--pointcolor);
        color: #fff;
        padding: 20px 0;
        text-align: center;
    }

    #header #menu .depth02 {
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    #header .depth02 a {
        display: inline-block;
        position: relative;
        top: 0;
        left: 0;
        padding: 10px 0;
        color: #fff;
    }

    #header .depth02 a:hover {
        font-weight: 600;
    }

    #header .login {
        width: 10rem;
        justify-content: flex-end;
    }

    #header .login li {
        width: 50%;
        padding: 0 5px;
        position: relative;
    }

    #header .login li a {
        padding: 3px 0;
        text-align: center;
        border-radius: 150px;
        border: 1px solid transparent;
        display: block;
        color: #181818;
        text-transform: uppercase;
    }

    #header.sticky .login li a {
        color: #484848;
    }

    /* #header .login li:hover a{background-color: #000;color: #fff;} */


    #header .nav-menu .login {
        display: none;
    }

    #sitemap {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        padding: 50px 30px;
        background-color: #000;
        border-radius: 15px;
        color: #fff;
        width: 620px;
    }

    #sitemap .site-box {
        max-height: calc(100vh - 200px);
        overflow-y: scroll;
    }

    #sitemap .site-box::-webkit-scrollbar {
        width: 5px;
    }

    #sitemap .site-box::-webkit-scrollbar-track {
        background-color: #000;
    }

    #sitemap .dropdown-menu {
        visibility: visible;
        opacity: 1;
        position: relative;
    }

    #sitemap .menu {
        display: flex;
        align-items: flex-start;
    }

    #sitemap .menu+.menu {
        margin-top: 10px;
    }

    #sitemap .depth01 {
        width: 120px;
        padding: 10px 0;
        padding-right: 15px;
        color: #fff;
        font-weight: bold;
    }

    #sitemap .depth02 {
        display: flex !important;
        align-items: flex-start;
        width: calc(100% - 120px);
        flex-wrap: wrap
    }

    #sitemap .depth02 li {
        width: 25%;
        text-align: left;
        font-size: 0.9em;
    }

    #sitemap .depth02 a {
        color: #c4c4c4;
        position: relative;
        top: 0;
        left: 0;
    }

    #sitemap .depth02 a:after {
        display: block;
        content: "";
        clear: both;
        width: 0;
        height: 2px;
        background-color: #fff;
    }

    #sitemap .depth02 a:hover {
        color: #fff;
    }

    #sitemap .depth02 a:hover:after {
        width: 100%;
    }

    #sitemap .site-img {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #sitemap .site-img>a {
        width: 49%;
        height: 100px;
        display: flex;
        align-items: center;
        color: #fff;
        justify-content: center;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #sitemap .site-img>a:nth-child(1) {
        background-image: url(/img/main/site-img1.jpg);
    }

    #sitemap .site-img>a:nth-child(2) {
        background-image: url(/img/main/site-img2.jpg);
    }

    #sitemap .site-closed {
        position: absolute;
        top: 15px;
        right: 15px;
        cursor: pointer;
    }
}

@media (max-width:1580px) {
    #header .container {
        width: 100%;
        padding: 0 15px
    }

    #header #menu {
        width: calc(100% - 400px);
        margin-left: 5%;
    }

    #header .depth02 a {
        padding: 0.9375rem 0;
    }

    /* #header #menu .depth02{width: 150px;} */
}

@media (max-width: 990px) {

    /* #header.sticky {height: 50px;} */
    #sitemap {
        display: none !important;
    }

    #header .container {
        width: 90%;
        padding: 0;
    }

    html.open-menu {
        overflow: hidden;
    }

    .nav_btn {
        display: inline-block;
    }

    .dropdown-menu {
        height: auto;
        width: 100% !important
    }

    #header .nav-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        overflow: scroll;
        position: fixed;
        right: 0;
        top: -100%;
        bottom: 0;
        background-color: var(--pointcolor);
        z-index: 9997;
        letter-spacing: 0px;
        transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -webkit-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-duration: .5s;
        -ms-transition-duration: .5s;
        -moz-transition-duration: .5s;
        -webkit-transition-duration: .5s;
        -o-transition-duration: .5s;
        padding: 50px 0 0 0;
    }

    #header .nav-menu.on:after {
        display: block;
        content: "";
        clear: both;
        width: calc(100% - 8px);
        height: 70px;
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        border-bottom: 1px solid #fff;
    }

    #header .nav-menu.on {
        top: 30px;
    }

    #header #menu #lnb {
        width: 90%;
        margin: auto;
    }

    #header #menu #lnb .menu {
        width: 100% !important;
        text-align: left;
    }

    #header #menu #lnb .menu:after {
        display: block;
        content: "";
        clear: both;
        left: 7%;
        width: 0;
        transition: .5s all ease 0s;
        background-color: #c4c4c4;
        height: 1px;
        position: absolute;
        bottom: 0;
    }

    #header #menu #lnb .menu.active:after {
        /* width: 86%;transition: .5s all ease .5s; */
        display: none;
    }

    #header #menu #lnb .depth01 {
        padding: 20px 5%;
        font-size: 2.5rem;
        text-align: left;
        font-family: var(--mainfont), sans-serif;
        color: #fff;
    }

    #header.mOpen #menu #lnb .depth01.void_link {
        position: relative;
    }

    #header.mOpen #menu #lnb .depth01.void_link:after {
        content: '';
        width: 11px;
        height: 1px;
        background-color: #fff;
        position: absolute;
        right: 1rem;
        top: 16px;
        bottom: 0;
        margin: auto;
        transition: .3s;
        transform: rotate(-45deg);
    }

    #header.mOpen #menu #lnb .depth01.void_link:before {
        content: '';
        width: 1px;
        height: 11px;
        background-color: #fff;
        position: absolute;
        right: 1.5rem;
        top: 0;
        bottom: 0;
        margin: auto;
        transition: .3s;
        transform: rotate(-45deg);
    }

    #header.mOpen #menu #lnb .active .depth01.void_link:after {
        background-color: #fff;
        transform: rotate(45deg);
    }

    #header.mOpen #menu #lnb .active .depth01.void_link:before {
        background-color: #fff;
        transform: rotate(45deg);
    }

    #header #menu #lnb .menu.active .depth01 {
        font-weight: 600;
        border-bottom: 1px solid #fff;
    }

    #header #menu #lnb .menu.active .depth02 a {}

    #header #menu #lnb .depth02 {
        left: 0;
        transform: translateX(0);
        position: relative;
        top: 0;
        font-size: 1.5rem;
        padding: 10px 0 20px 0;
    }

    #header #menu #lnb .depth02 a {
        padding: 10px 7%;
        color: #fff;
        display: block;
        font-size: 1.8rem;
        font-weight: 300;
    }

    #header #menu #lnb .depth02 a:hover {
        font-weight: 600;
    }

    /* #header #menu #lnb .depth02 a.void_link span {transform: rotate(90deg);transition: .5s all ease;}
    #header #menu #lnb .depth02 a.void_link {display: flex;justify-content: space-between;} */

    #header #menu #lnb .depth02>li.active a span {
        transform: rotate(270deg);
    }

    #header .menu-btn {
        display: block;
        width: 25px;
        height: 15px;
        top: 0;
        bottom: 0;
        margin: auto;
        right: 5%;
        position: absolute;
        z-index: 9999;
        cursor: pointer;
        -webkit-transition: top 300ms;
        transition: top 300ms;
    }

    #header .menu-btn span {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        right: 0;
        display: block;
        width: 100%;
        height: 1px;
        border-radius: 10px;
        background-color: #000;
        position: absolute;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
    }

    #header .menu-btn .btn_line01 {
        top: 0;
    }

    #header .menu-btn .btn_line02 {
        top: 7px;
    }

    #header .menu-btn .btn_line03 {
        bottom: 0;
    }

    #header .menu-btn.on {
        position: fixed;
        top: 20px;
        right: 5%;
        bottom: auto;
        height: 35px;
        width: 35px
    }

    #header .menu-btn.on span:nth-child(1) {
        top: 17px;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    #header .menu-btn.on span:nth-child(2) {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        right: -60px;
    }

    #header .menu-btn.on span:nth-child(3) {
        top: 17px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }


    #header .logo {
        padding: 10px 0;
        width: fit-content;
    }

    #header.mOpen .logo {
        position: fixed;
        top: 0;
        /* left:5%; */
        z-index: 9999;
    }

    #header .tel {
        display: block;
        position: absolute;
        top: 50%;
        left: 5%;
        color: #fff;
        transform: translateY(50%);
        font-size: 20px;
        z-index: 9999;
    }

    #header.sticky .tel {
        color: #484848;
        top: 0;
    }

    #header.mOpen .tel {
        color: #fff;
        top: 0;
    }


    #header .login {
        display: none;
    }

    #header #menu .login {
        display: flex;
        width: 100%;
        padding: 0 7%;
        margin: 2rem 0;
    }

    #header .login li {
        padding-right: 10px;
        width: auto;
    }

    #header .login li a {
        padding: 8px 25px;
        font-size: 1.875rem;
        text-transform: uppercase;
        text-align: center;
        border-radius: 150px;
        border: 1px solid #fff;
        display: block;
        color: #fff;
    }

    #header .login li:hover a {
        background-color: #fff;
        color: #000;
    }
}



/* quick */
.quick_wrap {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 3rem;
    text-align: center;
    z-index: 999;
}

.quick_wrap .quick {
    overflow: hidden;
}

.quick_wrap li {
    background-color: rgba(81, 80, 76, .5);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick_wrap li+li {
    margin-top: .7rem;
}

.quick_wrap a {
    color: #000;
    display: block;
}

.quick_wrap a img {
    width: 1.625rem;
}

/* .quick_wrap .quick li:after{display: block;content: "";clear:both;width:70%;height:1px;background-color: rgba(255,255,255,0.3);position:absolute;top:0;left: 15%;}
.quick_wrap .quick li:first-child:after{display: none;} */
.quick_wrap li span {
    position: absolute;
    right: 130%;
    margin-top: -25px;
    display: none;
    font-size: 13px;
    width: 80px;
    height: fit-content;
    padding: 5px 0;
    border-radius: 14px;
    background-color: #000;
    color: #fff;
}

.quick_wrap li:hover span {
    display: block;
}

.quick_wrap a.top {
    background-color: #000;
    font-family: var(--pointfont);
    position: absolute;
    right: 0;
    font-size: 11px;
    font-weight: 600;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    margin-top: .7rem;
    letter-spacing: 1px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quick_wrap .click_btn {
    display: none;
}

@media (min-width: 1024px) {
    /* .quick li img{opacity:1!important;} */
}

@media (max-width: 1024px) {
    /* .quick{width:48px;height:48px;position: absolute;bottom:0;left: 0;z-index: -1;}
    .quick_wrap .quick{overflow: visible;}
    .quick li {opacity: 0;;background:transparent;padding:0;position: absolute;top: 0;right: 0;z-index: 0;display: block;text-decoration: none;color: hsl(0, 0%, 100%);width: 48px;height: 48px;transition: transform .4s .3s ease, opacity .2s .3s ease;border-radius: 50%;}
    .quick li a{display: flex;align-items: center;justify-content: center;height:100%}
    .quick li img{align-self: center;justify-self: center;height:20px;}
    .quick li span {display: none;}
    .quick:After{border-radius: 150px;display: block;content: "";clear: both;width: 100%;height:100%;background-color: #000;position: absolute;top:0;right:0;z-index:-1;transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);transition: transform .3s ease, width .2s .3s ease;}

    .quick:before{opacity:0;display: block;content: "";clear: both; width: 0px;height: 0px;border-left: 10px solid #000;border-top: 5px solid transparent;border-bottom: 5px solid transparent;position:absolute;top:50%;left:0;transform: translateY(-50%);transition: opacity .3s .3s ease}
    .quick.active:After{transform: translate3d(-60px,0,0);width:290px;}
    .quick.active:before{opacity: 1;left:-15px;}
    .quick.active li{transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);opacity: 1; margin-top: 0;}
    .quick.active li:nth-child(1){transform: translate3d(-70px,0,0);}
    .quick.active li:nth-child(2){transform: translate3d(-140px,0,0);}
    .quick.active li:nth-child(3){transform: translate3d(-210px,0,0);}
    .quick.active li:nth-child(4){transform: translate3d(-280px,0,0);} */
    /* .quick.active li:nth-child(5){transform: translate3d(-300px,0,0);}
    .quick.active li:nth-child(6){ transform: translate3d(-360px,0,0);}  */

    /* .quick.active li a{position: relative;top:0;left:0;padding-right: 10px;}
    .quick_wrap li:hover span {display: none;}
    .quick.active li a:After{position: absolute;top:50%;right:0;display: block;content: "";clear: both;width: 1px;height: 40%;background-color: rgba(255,255,255,0.3);transform: translateY(-50%);}
    .quick.active li:first-child a:After{display: none;}

    .quick_wrap {bottom: 40px;transform: translateY(0);top: auto;right: 10px;}
    .quick_wrap .click_btn{width:48px;height:48px;border-radius: 50%;display: flex;align-items: center;background-color: #000;text-align: center;justify-content: center;}
    .quick_wrap .click_btn span{font-size: 20px;margin-right: 0; color:#fff; margin-top: 0;}
    .quick_wrap .click_btn.active span{transform: rotate(45deg);}
    .quick_wrap a.top{width:48px;height:48px;border-radius: 50%;display: flex;align-items: center;margin-bottom:10px; right: 0; position: relative;} 
    .quick_wrap a.top img{display: none;}
    .quick_wrap .quick li:after{display: none;} */
}

@media(max-width:500px) {
    .quick_wrap {
        top: 65%;
        right: 1rem;
    }
}



.quickcounselBox {
    background-color: #fff;
    border-radius: 10px;
    border: 3px solid var(--pointcolor);
    padding: 4rem 2.5rem 2.5rem;
    width: 23.5rem;
    position: fixed;
    right: 14rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.quickcounselBox.on {
    display: block;
}

/* .quickcounselBox .des{background-color: #e9e1d7; padding: 1rem 0;} */
.quickcounselBox .form .box {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.quickcounselBox .form .box p {
    width: 5rem;
}

.quickcounselBox .form .box input.wr_name {
    border: none;
    padding: 0.6rem;
    width: calc(100% - 5rem);
    background-color: #eaeaea;
    border-radius: 10px;
}

.quickcounselBox .form .box input:focus {
    box-shadow: none;
    border: none !important;
}

.quickcounselBox .form .box .number_box {
    justify-content: space-between;
    width: calc(100% - 5rem);
}

.quickcounselBox .form .box .number_box input {
    border-radius: 10px;
    background-color: #eaeaea;
}

.quickcounselBox .form .box .number_box input.wr_tel {
    width: 25%;
    border: none;
    padding: 0.6rem;
}

.quickcounselBox .form .box .number_box select.wr_tel {
    width: 30%;
    border: none;
    padding: 0.6rem;
    border-radius: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('/img/main/select_arrow.png') no-repeat 90% 50%, #eaeaea;
    background-size: 14%;
}

.quickcounselBox .form .box .number_box select.wr_tel::-ms-expand {
    display: none;
}

.quickcounselBox .form .box .number_box select.wr_tel:focus {
    box-shadow: none;
    border: none !important;
}

.quickcounselBox .form .box textarea {
    border: none;
    width: calc(100% - 5rem);
    border-radius: 10px;
    background-color: #eaeaea;
}

.quickcounselBox .form .box textarea:focus {
    box-shadow: none;
    border: none !important;
}

.quickcounselBox .form .agree_box input.agree_checkbox {
    width: 0;
    height: 0;
    visibility: hidden;
}

.quickcounselBox .form .agree_box input.agree_checkbox+label {
    position: relative;
    padding-left: 24px;
}

.quickcounselBox .form .agree_box input.agree_checkbox+label::before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    border: 1px solid #515153;
    top: 2px;
    left: 0;
}

.quickcounselBox .form .agree_box input.agree_checkbox:checked+label::before {
    background: #515153 url(/img/main/chk.png)no-repeat center;
    background-size: 100%;
}

.quickcounselBox .form .submit_btn {
    width: 100%;
    padding: 1rem;
    border-radius: 0;
    border: none;
    cursor: pointer;
}

.quickcounselBox .close_btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
}

/* .quickcounselBox .close_btn img{width: 40%;} */

@media (max-width:768px) {
    .quickcounselBox {
        top: 50%;
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30rem;
        padding: 3rem;
    }

    .quickcounselBox .tellnum {
        font-size: 2rem;
    }

    .quickcounselBox .des {
        padding: 1.4rem 0;
    }

    .quickcounselBox .des p {
        font-size: 1.3rem;
    }

    .quickcounselBox .form .box {
        padding: 1rem 0;
    }

    .quickcounselBox .form .box p {
        font-size: 1.3rem;
        width: 6rem;
    }

    .quickcounselBox .form .box input.wr_name {
        padding: 0.8rem 0.4rem;
        font-size: 1.3rem;
    }

    .quickcounselBox .form .box .number_box {
        font-size: 1.3rem;
    }

    .quickcounselBox .form .box .number_box input.wr_tel {
        padding: 0.8rem 0.4rem;
    }

    .quickcounselBox .form .box .number_box select.wr_tel {
        padding: 0.8rem 0.4rem;
    }

    .quickcounselBox .form .agree_box {
        font-size: 1.2rem;
    }

    .quickcounselBox .form .agree_box input.agree_checkbox+label {
        position: relative;
        padding-left: 18px;
    }

    .quickcounselBox .form .submit_btn {
        font-size: 1.3rem;
        padding: 1.4rem;
    }

    /* .quickcounselBox .close_btn{ width: 4.5rem; height: 4.5rem; top: -2.25rem;} */

    .quickcounselBox .form .agree_box input.agree_checkbox+label::before {
        width: 1.3rem;
        height: 1.3rem;
        top: 0px;
    }
}