.header_empty_container {
    height: 92px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
}

header.transparent {
    color: var(--white);
}

header.transparent .left .logo {
    background-image: url('/images/logo/white.png');
}

header.transparent i.search {
    background-image: url('/images/icon/common/search_white.svg');
}

header.transparent .menu_user_wrap span {
    background-color: var(--white);
}

header:hover {
    background: var(--white);
    color: var(--gray_90);
}

header:hover .left .logo {
    background-image: url('/images/logo/basic.png');
}

header:hover i.search {
    background-image: url('/images/icon/common/search.svg');
}

header:hover .menu_user_wrap span {
    background-color: var(--gray_90);
}




header .header_inner {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

header .menu {
    display: flex;
    position: relative;
    justify-content: center;
    gap: 60px;
    z-index: 1;
}

header a {
    font-weight: 700;
    line-height: 1.75rem;
    letter-spacing: -1.6%;
}

header .left,
header .right,
header .center {
    padding: 24px 0;
}

header .left {
    line-height: 0;
}

header .left {
    width: 240px;
    flex-shrink: 0;
}

header .center {
    flex: 1 1 auto;
    min-width: 0;
}


header .left .logo img {
    display: none;
}

header .left .logo {
    display: block;
    width: 140px;
    height: 44px;
    background-image: url('/images/logo/basic.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


header .menu_user_wrap_inner {
    display: flex;
    padding: 8px 0;
    justify-content: center;
    align-items: center;
}

header .menu_user_wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

header .menu_user_wrap span {
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 0px 10px;
    border-radius: 100%;
    background-color: var(--gray_90);
    opacity: 0.6;
}

.menu:hover .depth2 {
    display: block;
}

.depth1>li {
    position: relative;
    flex: 0 0 176px;
    text-align: center;
}

.depth1>li>a {
    display: block;
    padding: 8px 0;
}

header .depth2 {
    display: none;
    padding-top: 70px;
    padding-bottom: 26px;
}

header .right .search {
    margin-left: 32px;
}

.menu+.hover_line {
    display: none;
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #E1E4E9;
}

.menu:hover+.hover_line {
    display: block;
}

header .depth2 li+li {
    margin-top: 20px;
}

header .depth2 a {
    line-height: 1.75;
    font-weight: 400;
}

.mo_menu_wrap {
    display: none;
    position: relative;
}

.mo_menu_wrap.on {
    display: block;
    font-size: 1.25rem;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    color: var(--black);
}

.mo_menu_wrap button {
    position: absolute;
    right: 40px;
    top: 35px;
}

.mo_menu {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mo_menu li {
    text-align: center;
}

.mo_menu .depth2 {
    display: none;
}

header .mo_menu li .depth2 {
    padding-top: 25px;
}

header .mo_menu .depth2 li+li {
    margin-top: 10px;
}

header .mo_menu .depth2 a {
    font-size: 1rem;
    /* 32px */
    line-height: 1.6rem;
    text-decoration: underline;
}

header .mo_menu .menu_user_wrap {
    padding-top: 26px;
    border-top: 2px dotted var(--gray_20);
}