/* pc */
header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #fff;
    border-bottom: 1px solid #BBBBBB;
}

header #header_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

#header_wrap .logo {
    display: flex;
    width: 111px;
    flex-shrink: 0;
}

#header_wrap .logo img {
    object-fit: cover;
}

#header_wrap .header_nav {
    flex-grow: 1;
}

#header_wrap .header_nav .nav_head {
    justify-content: space-between;
    padding: 10px 16px;
    background-color: #fff;
    align-items: center;
    border-bottom: 1px solid #E1E1E1;
}

#header_wrap .header_nav .nav_info {
    padding: 24px;
    background-color: #fff;
}

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

#header_wrap .nav_list {
    display: flex;
    align-items: center;
}

#header_wrap .nav_list>li {
    width: 100%;
    max-width: 150px;
}

#header_wrap .nav_list .nav_item {
    display: block;
    width: 100%;
    text-align: center;
    padding: 17px 0;
    font-size: 16px;
    color: #222;
}

#header_wrap .nav_list .nav_item.active {
    font-weight: 700;
}

#header_wrap .btn_gnb {
    font-size: 14px;
    color: #5E5E5E;
}

#header_wrap .btn_icon {
    background-color: transparent;
    aspect-ratio: 1/1;
    width: 24px;
}

#header_wrap .btn_icon.close {
    display: flex;
}

#header_wrap .btn_logout {
    width: fit-content;
    margin: 32px auto 0;
    color: var(--error-color);
    font-size: 14px;
}

#header_wrap .head_title {
    font-size: 16px;
    font-weight: 700;
}

#header_wrap .back_btn {
    width: 24px;
    aspect-ratio: 1/1;
}

/* tablet */
@media screen and (max-width: 1023px) {
    #header_wrap {
        padding: 10px 0;
    }

    #header_wrap .logo {
        width: 78px;
    }

    #header_wrap .header_nav {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        background-color: #F8F8F8;
        visibility: hidden;
        transition: all 0.5s ease;
    }

    #header_wrap .header_nav.active {
        visibility: visible;
        transform: translateX(-100%);
    }

    #header_wrap .header_nav .nav_body {
        height: calc(100% - 45px);
        overflow-y: auto;
        padding-bottom: 24px;
    }

    #header_wrap .nav_list {
        display: block;
    }

    #header_wrap .nav_list>li {
        max-width: 100%;
    }

    #header_wrap .nav_list .nav_item {
        padding: 13px 24px;
        text-align: left;
        font-weight: 700;
    }

    #header_wrap .nav_list .nav_item.sub {
        font-weight: 400;
        font-size: 14px;
        padding: 14px 30px;
    }
}

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