@charset "utf-8";

/* ===========================
   SUB HEADER
=========================== */
#sub_header {
    width: 100%;
    height: 100px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo img {
    height: 40px;
}
.gnb {
    display: flex;
    gap: 40px;
    list-style: none;
}
.gnb a {
    color: #222;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

/* responsive */
@media (max-width: 767px) {
    .gnb { display: none; }
}