<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*header*/
body {
    position: relative;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 670px;
    height: 70px;
    z-index: 10;
    background: url(../images/sub_menu-1.png) no-repeat bottom;
}


header #gnb {
    position: relative;
    width: 100%;
}



header #gnb &gt; ul {
    display: flex;
}

header #gnb &gt; ul &gt; li {
    width: 25%;
    text-align: center;
}


header #gnb &gt; ul &gt; li &gt; a {
    height: 36x;
    line-height: 35px;
    display: block;
    font-size: 13px;
}

header #gnb &gt; ul &gt; li &gt; a:hover {
    color: rgb(254, 254, 84);
    font-size: 15px;
    transition: all .3s;
}



header #gnb &gt; ul &gt; li:hover .submenu {
    display: block;
}





.submenu {
    position: absolute;
    left: 0;
    height: 36px;
    line-height: 33px;
    font-weight: 500;
    display: none;
}


.submenu &gt; li {
    display: inline;
}



.space{
    margin-left:20px;
}

.space1{
    margin-left:149px;
}

.space2{
    margin-left:300px;
}

.space3{
    margin-left:150px;
}

.space4{
    margin-left:205px;
}





.submenu &gt; li &gt; a {
    position: relative;
    display: inline-block;
    color: #090990;
    font-size: 13px;
    padding: 0 8px;
}

.submenu &gt; li &gt; a:after {
    content: "";
    width: 1px;
    background-color: #9c9caa;
    position: absolute;
    right: 0;
    top: 11px;
    bottom: 9px;
}

.submenu &gt; li:last-child &gt; a:after {
    display: none;
}

.submenu &gt; li &gt; a:hover {
    color: #222;
}
</pre></body></html>