#header{
    width: 100%;
    position: absolute;
    z-index: 9999;
    background-color: transparent;
    transition-duration: 1s;
}

#header.hover{
    background-color: #fff;
    transition-duration: 1s;
}

#header.hover .header01{
    border-bottom: 1px solid #ddd;
}

#header.hover ul.main_menu li a{
    color: #333;
    font-weight: normal;
}

.header01{
    width: 100%;
    height: 80px;
    padding: 0 5%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header01 a{
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.main_menu{
    width: 800px;
    height: 100%;
    display: flex;
}

ul.main_menu li{
    width: 25%;
    height: 100%;
}

ul.main_menu li a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

.header02{
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
}

#lnb{
    width: 800px;
    display: flex;
}

ul.sub_menu{
    width: 25%;
    padding: 20px 0;
    box-sizing: border-box;
    border-top: 2px solid transparent;
}

ul.sub_menu li{
    width: 100%;
    padding: 5px 0;
}

ul.sub_menu li a{
    width: 100%;
    display: block;
    text-align: center;
    font-size: 16px;
    color: #111;
    font-weight: 300;
}

ul.ul_hover{
    background-color: #eee;
    border-top: 2px solid #10357a;
    transition-duration: 1s;
}
