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

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

#header_wrap .inner {
    padding: 0 16px;
}

#header_wrap .header_left,
#header_wrap .header_right {
    min-width: 50px;
    display: flex;
}

#header_wrap .header_right {
    justify-content: flex-end;
}

#header_wrap .btn_head {
    display: flex;
    width: 24px;
    aspect-ratio: 1/1;
}

#header_wrap .btn_head.alarm {
    position: relative;
}

#header_wrap .btn_head.alarm .alarm_dot {
    background-color: var(--error-color);
    width: 6px;
    height: 6px;
    border-radius: 50px;
    position: absolute;
    right: 3px;
    top: 3px;
}

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

#header_wrap .header_logo {
    width: 110px;
    display: flex;
}

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

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