@charset "utf-8";
@import url('../cdn/fonts.googleapis.com/css2_family_Poppins_ital_wght_0_100_0_200_0_300_0_400_0_500_0_600.css');

header {
    z-index: 100;
    position: fixed;
    top: 0;
    width: 100vw;
    background-color: #fff;

    /* box-shadow: 0 2px 5px rgba(110, 110, 110, 0.212); */

    color: white;
    display: flex;
    align-items: center;

    transition: 0.5s;
}

#header {}

#header a {
    text-decoration: none;
    /* transition: color 0.5s; */
}

.h01 {
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 0;


}

.h01 ul.menu {
    display: flex;
    align-items: center;
    gap: 80px;

    color: black;
    height: 100px;
}

.h01 ul.menu li {
    position: relative;
}

.gnb_bg {
    position: absolute;
    top: 0;
    width: 10vw;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 100px;
    height: 230px;

    background-color: rgba(255, 255, 255, 0.6);

    border-top: 1px solid #D7D7D7;
    display: none;
    z-index: -2;
}

.h01 dl {
    color: #111;
    background-color: #fff;
    position: absolute;
    top: 63px;
    left: 50%;
    min-width: 180px;
    height: auto;
    margin-left: -90px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 95;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.h01 dl.set5 {
    width: 215px;
}

.h01 dl.set6 {
    width: 200px;
}

.h01 dl dt {
    padding: 12px 0;
}

.h01 dl dt:hover {
    color: #0075C2;
}



#header.hover {
    border-bottom: 0.1px solid #eeeeee;
    color: #111;
    background-color: #fff;
}


#header.hover .menuarea>ul.menu:hover {
    color: black;
}


.menuarea>ul.menu>li>dl>dt>a:hover {
    position: relative;
    display: block;
    color: #0075C2;

}

/* .menuarea>ul.menu>li>dl>dt>a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 7vw;
    height: 2px;
    background-color: black;
    transform: translate(-50%, -50%);
} */


.menuarea>ul.menu>li.more_hover>a {
    color: #8FC43C;
}

.menuarea>ul.menu>li a {
    transition: 0.2s;
}


#m_header {
    display: none;
}





/* mobile */
@media screen and (max-width: 767px) {

    .h01,
    .h02 {
        display: none;
    }

    #m_header {
        display: block;
        width: 100%;
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        transition: background-color .5s;
    }

    #m_header.on,
    #m_header.scroll {
        background-color: rgba(0, 0, 0, 0.7);
    }

    #m_header .main_center {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #m_header .main_center>a {
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .m_menu_icon {
        width: 25px;
        height: 20px;
        position: relative;
    }

    .m_menu_icon span {
        width: 25px;
        height: 2px;
        background-color: #fff;
        display: block;
        position: absolute;
    }

    .m_menu_icon span:first-child {
        top: 0;
        left: 0;
    }

    .m_menu_icon span:nth-child(2) {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .m_menu_icon span:last-child {
        bottom: 0;
        left: 0;
    }

    .m_menu_icon.on span:first-child {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        transition: transform .5s;
    }

    .m_menu_icon.on span:nth-child(2) {
        opacity: 0;
        transition: opacity .3s;
    }

    .m_menu_icon.on span:last-child {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
        transition: transform .5s;
    }

    .m_menu_box {
        width: 100%;
        height: calc(100vh - 60px);
        position: fixed;
        top: 60px;
        left: 0;
        background-color: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 1s;
    }

    .m_menu_box.on {
        transform: translateX(0);
    }

    ul.m_main_menu {
        width: 50%;
        margin-top: 15vh;
    }

    ul.m_main_menu>li {
        width: 100%;
        margin-bottom: 40px;
    }

    ul.m_main_menu>li:last-child {
        margin-bottom: 0;
    }

    ul.m_main_menu>li p {
        font-size: 24px;
        color: #fff;
        text-transform: uppercase;
        text-align: center;
        font-family: 'Pretendard-Bold', sans-serif;
    }

    ul.m_sub_menu {
        width: 100%;
        margin-top: 20px;
        display: none;
    }

    ul.m_sub_menu li {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
        font-size: 16px;
        color: #fff;
        font-family: 'Pretendard-Light', sans-serif;
    }

    ul.m_sub_menu li:last-child {
        margin-bottom: 0;
    }

    /* #m_header.scroll .center a img{
        content: url(../images/logo_black.png);
    } */



}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .h01,
    .h02 {
        display: none;
    }

    #m_header {
        display: block;
        width: 100%;
        height: 120px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        transition: background-color .5s;
    }

    #m_header.on,
    #m_header.scroll {
        background-color: rgba(0, 0, 0, 0.7);
    }

    #m_header .main_center {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #m_header .main_center>a {
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .m_menu_icon {
        width: 25px;
        height: 20px;
        position: relative;
    }

    .m_menu_icon span {
        width: 25px;
        height: 2px;
        background-color: #fff;
        display: block;
        position: absolute;
    }

    .m_menu_icon span:first-child {
        top: 0;
        left: 0;
    }

    .m_menu_icon span:nth-child(2) {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .m_menu_icon span:last-child {
        bottom: 0;
        left: 0;
    }

    .m_menu_icon.on span:first-child {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        transition: transform .5s;
    }

    .m_menu_icon.on span:nth-child(2) {
        opacity: 0;
        transition: opacity .3s;
    }

    .m_menu_icon.on span:last-child {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
        transition: transform .5s;
    }

    .m_menu_box {
        width: 100%;
        height: calc(100vh - 120px);
        position: fixed;
        top: 120px;
        left: 0;
        background-color: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 1s;
    }

    .m_menu_box.on {
        transform: translateX(0);
    }

    ul.m_main_menu {
        width: 50%;
        margin-top: 15vh;
    }

    ul.m_main_menu>li {
        width: 100%;
        margin-bottom: 40px;
    }

    ul.m_main_menu>li:last-child {
        margin-bottom: 0;
    }

    ul.m_main_menu>li p {
        font-size: 24px;
        color: #fff;
        text-transform: uppercase;
        text-align: center;
        font-family: 'Pretendard-Bold', sans-serif;
    }

    ul.m_sub_menu {
        width: 100%;
        margin-top: 20px;
        display: none;
    }

    ul.m_sub_menu li {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
        font-size: 16px;
        color: #fff;
        font-family: 'Pretendard-Light', sans-serif;
    }

    ul.m_sub_menu li:last-child {
        margin-bottom: 0;
    }

    /* #m_header.scroll .center a img{
        content: url(../images/logo_black.png);
    } */





}