@charset "UTF-8";

/* header.css */

header {
    width: 100%;
    height: 100px;

    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}
header.on {
    background-color: rgba(0, 0, 0, 0.7);
}



header .inner {
    width: 90%;
    max-width: 1720px;
}

header h1.logo {
    float: left;
}
header h1.logo img {
    height: 42px;
    margin-top: 28px;
}

header nav {
    float: right;
    margin-top: 26px;
    font-family: "DM Sans", sans-serif;
}
header nav ul.gnb {}
header nav ul.gnb > li {
    float: left;
    text-align: center;

    position: relative; 
}
header nav ul.gnb > li~li {
    margin-left: 30px;
}
header nav ul.gnb > li > a {
    line-height: 48px;
    font-size: 18px;
    color: rgb(255, 255, 255);
}
header nav ul.gnb > li > a:hover {
    color: rgba(255, 255, 255, 0.5);
}

header nav ul.lnb {
    background-color: rgb(255, 255, 255);
    width: 130px;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 0 10px #bbb;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: none;
}
header nav ul.lnb li {}
header nav ul.lnb li a {
    font-size: 16px;
    line-height: 2;
    color: rgb(85, 85, 85);
}

header nav ul.lnb li a:hover {
    color: #234092;
    text-decoration: underline;
}