/* pc */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    background-color: #fff;
    border-bottom: 1px solid #E1E1E1;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    z-index: 9;
}

#gnb .gnb_top,
header #header_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

header #header_wrap .logo {
    display: flex;
    width: 78px;
}

#header_wrap .back_btn {
    display: flex;
    width: 24px;
}

#header_wrap .header_title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

header #header_wrap .header_gnb_btn {
    display: flex;
    width: 24px;
    background-color: transparent;
}

#gnb {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    height: 100vh;
    visibility: hidden;
    transition: all 500ms;
}

header #header_wrap .header_gnb_btn.active+#gnb {
    left: 50%;
    transform: translateX(-50%);
    visibility: visible;
}

#gnb .gnb_head {
    border-bottom: 1px solid #E1E1E1;
}

#gnb .gnb_info {
    padding: 24px;
    min-height: 69px;
}

#gnb .gnb_info .nick {
    font-size: 16px;
    font-weight: 700;
    color: #222222;
}

#gnb .gnb_body {
    height: calc(100% - 45px);
    overflow-y: auto;
}

#gnb .gnb_box {
    background-color: #F8F8F8;
    padding-bottom: 14px;
}

#gnb .gnb_list .depth_1 {
    display: block;
    padding: 13px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

#gnb .gnb_list .depth_2 {
    display: block;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 400;
    color: #222;
}

#gnb .logout_btn {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    padding: 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--error-color);
}

/* tablet */
@media screen and (max-width: 1023px) {}

/* mobile */
@media screen and (max-width: 767px) {}