#header {
    transition: 0.5s;
    top: -120px;
}

#header,
#header_bottom {
    z-index: 1001;
    width: 100%;
    position: fixed;
    /* top: 0; */
    left: 0;
    height: 120px;
    background: #fff;
}

@media(max-width:992px) {

    #header,
    #header_bottom {
        height: 65px;
    }
}


#header .header-inner,
#header_bottom .header-inner {
    display: flex;
    align-items: center;
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2)
}

@media (max-width: 800px) {

    #header .header-inner,
    #header_bottom .header-inner {
        display: none
    }
}

#header .header-inner .hedaer-nav,
#header_bottom .header-inner .hedaer-nav {
    width: calc(100% - 40px - 44px - 80px - 80px);
    height: 100%
}

#header .header-inner .hedaer-nav .hedaer-nav-list,
#header_bottom .header-inner .hedaer-nav .hedaer-nav-list {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 0;
    height: 100%
}

#header .header-inner .hedaer-nav .hedaer-nav-list .hedaer-nav-item,
#header_bottom .header-inner .hedaer-nav .hedaer-nav-list .hedaer-nav-item {
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #eda915;
    font-weight: 700;
    width: 100%;
    letter-spacing: -0.6px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: rgba(65, 76, 140, 0);
    transition: background-color 0.3s ease
}

@media (max-width: 1100px) {

    #header .header-inner .hedaer-nav .hedaer-nav-list .hedaer-nav-item,
    #header_bottom .header-inner .hedaer-nav .hedaer-nav-list .hedaer-nav-item {
        font-size: 0.8rem
    }
}

#header .header-inner .hedaer-nav .hedaer-nav-list .hedaer-nav-item a,
#header_bottom .header-inner .hedaer-nav .hedaer-nav-list .hedaer-nav-item a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #eda915
}

#header .header-inner .hedaer-nav .hedaer-nav-list .hedaer-nav-item::before,
#header_bottom .header-inner .hedaer-nav .hedaer-nav-list .hedaer-nav-item::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 40px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0%;
    height: 80px;
    transform: translate(-50%, -50%);
    opacity: 0.1
}

#header .header-inner .hedaer-nav .hedaer-nav-list .hedaer-nav-item:hover,
#header_bottom .header-inner .hedaer-nav .hedaer-nav-list .hedaer-nav-item:hover {
    background-color: rgba(65, 76, 140, 0.6)
}

#header .header-inner .hedaer-logo,
#header_bottom .header-inner .hedaer-logo {
    margin-right: 40px;
    margin-left: 40px;
    width: 10%
}

#header .header-inner .hedaer-logo .hedaer-logo-top,
#header_bottom .header-inner .hedaer-logo .hedaer-logo-top {
    color: #eda915;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700
}

#header .header-inner .hedaer-logo .hedaer-logo-top img,
#header_bottom .header-inner .hedaer-logo .hedaer-logo-top img {
    width: 90%;
    margin: 0 auto
}

#header .header_sp,
#header_bottom .header_sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    max-width: 1200px;
    margin: auto;
    height: 100%;
}

.header_left_link {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1001;
    position: absolute;
    display: flex;
    height: 100%;
    align-items: center;
    font-family: var(--font-family-2);
    color: #FFF;
    justify-content: center;
    margin-left: 25px;
    width: 211px;
}

.header_left_link img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.header_left_link:hover {
    color: #FFF;
}

@media(max-width:992px) {
    .header_left_link {
        width: 150px;
        padding: 15px;
        margin-left: 0;
    }
}

.header_right_links {
    display: flex;
    color: var(--main-color);
    gap: 70px;
    position: absolute;
    right: 0;
    margin-right: 25px;
    margin-bottom: 0;
}

@media(max-width:992px) {
    .header_right_links {
        display: none;
    }
}

.header_right_link {
    display: flex;
    font-weight: bold;
    align-items: flex-start;
    gap: 10px;
}

.header_right_link_img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.header_right_link_txt {
    color: var(--main-color);
}

.logo-link {
    font-size: 30px;
    font-weight: 400;
    color: var(--bg-color-2);
}

@media(max-width:992px) {
    .logo-link {
        font-size: 16px;
    }
}

#header .header_sp .logo,
#header_bottom .header_sp .logo {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    position: absolute;
    width: 336px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

@media (max-width: 576px) {

    #header .header_sp .logo,
    #header_bottom .header_sp .logo {
        width: 130px;
    }
}

.logo-link-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

#header .header_sp h3,
#header_bottom .header_sp h3 {
    font-size: 24px;
    width: 70%;
    text-align: center;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

@media (max-width: 1200px) {

    #header .header_sp h3,
    #header_bottom .header_sp h3 {
        font-size: 16px
    }
}

@media (max-width: 992px) {

    #header .header_sp h3,
    #header_bottom .header_sp h3 {
        font-size: 13px
    }
}

@media (max-width: 768px) {

    #header .header_sp h3,
    #header_bottom .header_sp h3 {
        display: none
    }
}

#header .header_sp #burger,
#header_bottom .header_sp #burger {
    z-index: 1001;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
    margin: 0 10px;
    /* background: var(--main-color); */
    cursor: pointer;
}

#burger circle {
    fill: #FFF;
}

@media (max-width: 800px) {

    #header .header_sp #burger,
    #header_bottom .header_sp #burger {
        top: 50%;
        /* left: 90%; */
    }

    #burger circle {
        fill: transparent;
    }
}

@media (max-width: 600px) {

    #header .header_sp #burger,
    #header_bottom .header_sp #burger {
        /* width: 80px; */
        /* left: 90% */
    }
}

#menu {
    background-color: #ffffff;
    color: #fff;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -100%;
    z-index: 1000
}

#menu .menu-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%
}

#menu .menu-container .nav-list {
    font-size: 20px;
    /* font-family: 'Nanum Gothic', 'Sawarabi Gothic', sans-serif */
}

#menu .menu-container .nav-link {
    letter-spacing: 0.2rem;
    color: var(--main-color);
    padding: 0.8rem 1rem;
    font-weight: 600;
}

@media(max-width:1100px) {
    #menu .menu-container .nav-link {
        padding: 0.6rem 1rem;
    }
}

#menu .menu-container .nav-link:hover {
    color: var(--main-color);
}

#header_bottom {
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #eda915;
    width: 100%
}

@media (max-width: 800px) {
    #header_bottom {
        height: 10px;
        padding-top: 10px;
        padding-bottom: 10px
    }
}

#header_bottom .header-inner {
    height: 10px;
    background-color: #eda915
}

.header-burger-txt {
    position: absolute;
    top: -2px;
    right: 15px;
    z-index: 1001;
    color: var(--main-color);
    font-weight: 600;
}

.nav-item {
    display: flex;
    align-items: center;
    padding-left: 15px;
}