/* sitemap */
.sitemap{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 999;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.sitemap.on{
    opacity: 1;
    visibility: visible;
}

.sitemap>img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.menu_ul{
    width: 100%;
}

.menu_ul:last-child{
    margin-bottom: 0;
}

.menu_ul>p{
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 34px;
    font-family: 'Pretendard-Bold', sans-serif;
}

.menu_ul>p span{
    width: 30px;
    height: 2px;
    background-color: #3b3165;
    margin-right: 10px;
    display: block;
    transition: width .5s;
}

.menu_ul.on>p{
    color: #3b3165;
}

.menu_ul.on>p span{
    width: 60px;
}

ul.show_menu{
    width: 100%;
    display: flex;
    margin-top: 25px;
}

ul.show_menu li{
    font-size: 22px;
    color: #999;
    font-family: 'Pretendard-Medium', sans-serif;
    /* margin-right: 55px; */
    margin-right: 4%;
    padding: 0 5px;
    cursor: pointer;
    position: relative;
}

ul.show_menu li:last-child{
    margin-right: 0;
}

ul.show_menu li span{
    position: absolute;
    background-color: rgba(59, 49, 101, 0.2);
    height: 15px;
    width: 0;
    left: 0;
    bottom: 0;
    transition: width .5s;
}

ul.show_menu li.on{
    color: #333;
}

ul.show_menu li.on span{
    width: 100%;
}

.hide_box{
    width: 100%;
    /* height: 90px; */
    height: 80px;
    position: relative;
}

ul.hide_menu{
    width: 100%;
    display: flex;
    position: absolute;
    top: 25px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

ul.hide_menu.on{
    opacity: 1;
    visibility: visible;
}

ul.hide_menu li{
    margin-right: 3%;
    font-size: 16px;
    color: #777;
    font-family: 'Pretendard-Regular', sans-serif;
    cursor: pointer;
}

ul.hide_menu li:hover{
    color: #3b3165;
}

i.close_btn{
    font-size: 34px;
    position: absolute;
    cursor: pointer;
    top: 30px;
    right: 30px;
}

.sitemap>i.close_btn{
    color: #333;
}


/* searchbox */
.search_box{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    padding: 70px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.search_box.on{
    opacity: 1;
    visibility: visible;
}

.search_input{
    width: 40%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    padding-bottom: 5px;
}

.search_input input{
    width: 95%;
    height: 100%;
    border: 0;
    background-color: transparent;
    color: #fff;
    font-size: 20px;
}

.search_input input::placeholder{
    font-size: 18px;
    color: #fff;
    font-family: 'Pretendard-ExtraLight', sans-serif;
}

.search_input i{
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.search_box>i.close_btn{
    color: #fff;
}


/* mobile sitemap */
.m_sitemap{
    display: none;
}























/* mobile */
@media screen and (max-width: 767px){

    .sitemap{
        display: none;
    }


    /* mobile sitemap */
    .m_sitemap{
        display: block;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #fff;
        z-index: 999;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding-top: 35%;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s, visibility .3s;
    }

    .m_sitemap.on{
        opacity: 1;
        visibility: visible;
    }

    .m_sitemap>img{
        width: 70%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .m_menubox{
        width: 200px;
        margin-bottom: 30px;
    }

    .m_menubox:last-child{
        margin-bottom: 0;
    }

    .m_menubox>p{
        width: 100%;
        display: flex;
        align-items: center;
        font-size: 18px;
        font-family: 'Pretendard-Bold', sans-serif;
        text-transform: uppercase;
    }

    .m_menubox>p span{
        width: 10px;
        height: 2px;
        background-color: #3b3165;
        margin-right: 10px;
    }

    ul.m_mainmenu{
        width: 100%;
        display: none;
    }

    ul.m_mainmenu>li{
        width: 100%;
        position: relative;
        margin-top: 20px;
        padding-left: 20px;
        box-sizing: border-box;
    }

    ul.m_mainmenu>li a{
        display: block;
        font-size: 16px;
        color: #333;
        font-family: 'Pretendard-Medium', sans-serif;
    }

    ul.m_submenu{
        width: 100%;
        max-height: 20vh;
        display: none;
        overflow: auto;
    }

    ul.m_submenu li{
        width: 100%;
        margin-top: 15px;
        font-size: 14px;
        color: #777;
        font-family: 'Pretendard-Regular', sans-serif;
    }

    i.close_btn{
        font-size: 26px;
        position: absolute;
        cursor: pointer;
        top: 20px;
        right: 20px;
    }

    .m_sitemap>i.close_btn{
        color: #333;
    }


    /* searchbox */
    .search_box{
        padding: 70px 0 30px;
    }

    .search_input{
        width: 80%;
        height: 35px;
    }

    .search_input input{
        font-size: 16px;
    }

    .search_input input::placeholder{
        font-size: 95%;
    }

    .search_input i{
        font-size: 22px;
        cursor: inherit;
    }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    .menu_ul>p{
        font-size: 25px;
    }

    .menu_ul>p span{
        width: 15px;
    }

    .menu_ul.on>p span{
        width: 30px;
    }

    ul.show_menu{
        margin-top: 15px;
    }

    ul.show_menu li{
        font-size: 16px;
        margin-right: 3%;
    }

    ul.show_menu li span{
        height: 10px;
    }

    .hide_box{
        height: 60px;
    }

    ul.hide_menu{
        top: 15px;
    }

    ul.hide_menu li{
        margin-right: 2.5%;
        font-size: 12px;
        cursor: inherit;
    }

    ul.hide_menu li:hover{
        color: #777;
    }

    i.close_btn{
        font-size: 26px;
    }


    /* searchbox */
    .search_box{
        padding: 40px 0;
    }

    .search_input{
        width: 60%;
        height: 35px;
    }

    .search_input input{
        font-size: 16px;
    }

    .search_input input::placeholder{
        font-size: 95%;
    }

    .search_input i{
        font-size: 24px;
        cursor: inherit;
    }

}

























/* pc_s */
@media screen and (min-width: 1025px) and (max-width: 1400px){


    .menu_ul>p{
        font-size: 24px;
    }

    .menu_ul>p span{
        width: 20px;
    }

    .menu_ul.on>p span{
        width: 40px;
    }

    ul.show_menu{
        margin-top: 15px;
    }

    ul.show_menu li{
        font-size: 18px;
        margin-right: 40px;
    }

    ul.show_menu li span{
        height: 10px;
    }

    .hide_box{
        height: 80px;
    }

    ul.hide_menu{
        top: 20px;
    }

    ul.hide_menu li{
        font-size: 16px;
    }

    i.close_btn{
        font-size: 30px;
    }

}
