:root {
    --rh-navy: #253b61;
    --rh-navy-deep: #172b4c;
    --rh-blue: #6687ad;
    --rh-coral: #df6d72;
    --rh-coral-deep: #c9545b;
    --rh-ink: #182236;
    --rh-muted: #697384;
    --rh-line: #e1e6ec;
    --rh-paper: #f5f7f9;
    --rh-white: #fff;
}

body.has-renewal-header.rh-nav-open {
    overflow: hidden;
}

#wrap.renewal-header-wrap {
    padding-top: 0 !important;
}

.rh-header,
.rh-drawer,
.rh-impersonation {
    font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
    color: var(--rh-ink);
}

.rh-header *,
.rh-drawer *,
.rh-impersonation * {
    box-sizing: border-box;
}

.rh-header a,
.rh-drawer a,
.rh-impersonation a {
    color: inherit;
    text-decoration: none;
}

.rh-header button,
.rh-drawer button {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.rh-header ul,
.rh-header p,
.rh-header h2,
.rh-header h3,
.rh-drawer ul,
.rh-drawer p,
.rh-drawer h2,
.rh-drawer h3 {
    margin: 0;
    padding: 0;
}

.rh-header ul,
.rh-drawer ul {
    list-style: none;
}

.rh-header-shell {
    width: min(1440px, calc(100% - 80px));
    margin: 0 auto;
}

.rh-impersonation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    min-height: 38px;
    padding: 7px 20px;
    background: #241f2b;
    color: #fff;
    font-size: 13px;
}

.rh-impersonation a {
    padding-bottom: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    font-weight: 700;
}

.rh-header {
    position: relative;
    z-index: 90;
    background: var(--rh-white);
}

.rh-notice {
    position: relative;
    background: var(--rh-navy-deep);
    color: #fff;
}

.rh-notice__inner {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.rh-notice__label {
    flex: 0 0 auto;
    margin-right: 22px;
    padding: 6px 11px 5px;
    border-radius: 999px;
    background: var(--rh-coral);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1;
}

.rh-notice__inner > a,
.rh-notice__inner > p {
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.rh-notice__inner strong {
    overflow: hidden;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rh-notice__inner > a > span {
    flex: 0 0 auto;
    color: #b9c7db;
    font-size: 18px;
    transition: transform .2s ease;
}

.rh-notice__inner > a:hover > span {
    transform: translateX(4px);
}

.rh-notice__inner > button {
    width: 34px;
    height: 34px;
    margin-left: 20px;
    border-radius: 50%;
    color: #c5cfdd;
    font-size: 25px;
    font-weight: 200;
    line-height: 1;
    transition: background-color .2s ease, color .2s ease;
}

.rh-notice__inner > button:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.rh-utility {
    position: relative;
    z-index: 3;
    border-bottom: 1px solid #edf0f3;
    background: var(--rh-paper);
}

.rh-utility__inner {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #667181;
    font-size: 14px;
    font-weight: 500;
}

.rh-utility__left,
.rh-utility__right {
    display: flex;
    align-items: center;
    gap: 0;
}

.rh-utility__left > a,
.rh-utility__right > a,
.rh-related > summary {
    position: relative;
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 0 15px;
    transition: color .2s ease;
}

.rh-utility__left > :first-child,
.rh-utility__right > :first-child {
    padding-left: 0;
}

.rh-utility__left > * + *::before,
.rh-utility__right > * + *::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 10px;
    background: #d6dce2;
    content: "";
    transform: translateY(-50%);
}

.rh-utility a:hover,
.rh-related > summary:hover {
    color: var(--rh-navy);
}

.rh-related {
    position: relative;
}

.rh-related > summary {
    gap: 6px;
    list-style: none;
    cursor: pointer;
}

.rh-related > summary::-webkit-details-marker {
    display: none;
}

.rh-related[open] > summary span {
    transform: rotate(180deg);
}

.rh-related ul {
    position: absolute;
    left: 0;
    top: calc(100% + 1px);
    width: 184px;
    padding: 10px;
    border: 1px solid var(--rh-line);
    border-radius: 0 0 12px 12px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(25, 37, 57, .12);
}

.rh-related li a {
    display: block;
    padding: 9px 10px;
    border-radius: 7px;
    color: #535f70;
    font-size: 14px;
    line-height: 1.4;
}

.rh-related li a:hover {
    background: var(--rh-paper);
}

.rh-utility__right .rh-live {
    gap: 8px;
    margin: 4px 8px;
    min-height: 34px;
    padding: 0 11px;
    border: 1px solid #d8dde4;
    border-radius: 999px;
    color: #7d8795;
    font-weight: 650;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.rh-utility__right .rh-live::before {
    display: none;
}

.rh-live__status,
.rh-live__label {
    display: inline-flex;
    align-items: center;
}

.rh-live__status {
    gap: 5px;
    white-space: nowrap;
}

.rh-live__status i,
.rh-mainbar__live > i {
    display: block;
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border: 1.5px solid #a5adb8;
    border-radius: 50%;
    background: transparent;
}

.rh-live__status b {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
}

.rh-live__status em {
    color: #8d95a0;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
}

.rh-live__label {
    color: #505c6d;
    font-size: 13px;
    font-weight: 700;
}

.rh-utility__right .rh-live.is-on {
    border-color: rgba(201, 59, 68, .25);
    background: #fff0f1;
    color: #b9343d;
}

.rh-live.is-on .rh-live__status i,
.rh-mainbar__live.is-on > i {
    border-color: #d7444d;
    background: #d7444d;
    box-shadow: 0 0 0 4px rgba(215, 68, 77, .12);
    animation: rh-live-pulse 1.8s ease-out infinite;
}

.rh-live.is-on .rh-live__status em {
    color: #b9343d;
}

.rh-utility__right .rh-live.is-on .rh-live__label {
    color: #8f2930;
}

@keyframes rh-live-pulse {
    0%, 45% {
        box-shadow: 0 0 0 3px rgba(215, 68, 77, .16);
    }
    75%, 100% {
        box-shadow: 0 0 0 7px rgba(215, 68, 77, 0);
    }
}

.rh-mainbar {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid var(--rh-line);
    background: rgba(255, 255, 255, .98);
}

.rh-mainbar__inner {
    display: grid;
    min-height: 92px;
    grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
    align-items: center;
    gap: 32px;
}

.rh-logo {
    display: inline-flex;
    width: fit-content;
    align-items: center;
}

.rh-logo img,
.rh-drawer__head img {
    display: block;
    width: auto;
    max-width: none;
    height: 50px;
    object-fit: contain;
}

.rh-primary > ul {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 48px);
}

.rh-primary button {
    position: relative;
    min-height: 92px;
    padding: 0 2px;
    color: #26344b;
    font-size: clamp(17px, 1.14vw, 19px);
    font-weight: 650;
    letter-spacing: -.035em;
    white-space: nowrap;
}

.rh-primary button::after {
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--rh-coral);
    content: "";
    transform: translateX(-50%);
    transition: width .25s ease;
}

.rh-primary button:hover,
.rh-primary button[aria-expanded="true"] {
    color: var(--rh-navy);
}

.rh-primary button:hover::after,
.rh-primary button[aria-expanded="true"]::after {
    width: 100%;
}

.rh-mainbar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.rh-mainbar__live {
    display: none;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid #d8dde4;
    border-radius: 999px;
    color: #7d8795;
}

.rh-mainbar__live span {
    color: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
}

.rh-mainbar__live small {
    color: #747e8c;
    font-size: 12px;
    font-weight: 700;
}

.rh-mainbar__live.is-on {
    border-color: rgba(201, 59, 68, .25);
    background: #fff0f1;
    color: #b9343d;
}

.rh-mainbar__live.is-on small {
    color: #8f2930;
}

.rh-allmenu-button {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--rh-line) !important;
    border-radius: 50%;
    transition: border-color .2s ease, background-color .2s ease;
}

.rh-allmenu-button:hover {
    border-color: var(--rh-navy) !important;
    background: var(--rh-paper);
}

.rh-allmenu-button__icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rh-allmenu-button__icon i {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--rh-navy);
}

.rh-allmenu-button > b {
    display: none;
    color: var(--rh-navy);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.025em;
}

.rh-mega-wrap {
    position: relative;
    z-index: 1;
    height: 0;
}

.rh-mega {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    border-bottom: 1px solid var(--rh-line);
    background: #fff;
    box-shadow: 0 24px 45px rgba(25, 39, 60, .14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.rh-mega.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.rh-mega__inner {
    display: grid;
    min-height: 315px;
    grid-template-columns: minmax(230px, 290px) 1fr;
    gap: clamp(45px, 5vw, 80px);
    padding-top: 42px;
    padding-bottom: 48px;
}

.rh-mega__intro {
    position: relative;
    overflow: hidden;
    padding: 33px 30px;
    border-radius: 20px;
    background: var(--rh-navy);
    color: #fff;
}

.rh-mega__intro::after {
    position: absolute;
    right: -42px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border: 38px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.rh-mega__intro > span {
    display: block;
    margin-bottom: 18px;
    color: #aebfd5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.rh-mega__intro h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: 1.25;
}

.rh-mega__intro p {
    margin-top: 13px;
    color: #cbd5e2;
    font-size: 16px;
    line-height: 1.65;
    word-break: keep-all;
}

.rh-mega__intro > a {
    position: absolute;
    z-index: 1;
    left: 30px;
    bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 650;
}

.rh-mega__intro > a span {
    color: #aebfd5;
    font-size: 17px;
    transition: transform .2s ease;
}

.rh-mega__intro > a:hover span {
    transform: translateX(4px);
}

.rh-mega__groups {
    display: grid;
    align-content: start;
    grid-template-columns: repeat(4, minmax(135px, 1fr));
    gap: 34px clamp(24px, 3vw, 50px);
}

.rh-mega-group h3 {
    padding-bottom: 12px;
    border-bottom: 1px solid #ccd5df;
}

.rh-mega-group h3 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--rh-navy-deep);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.025em;
}

.rh-mega-group h3 span {
    color: #a0aabb;
    font-size: 11px;
}

.rh-mega-group ul {
    padding-top: 11px;
}

.rh-mega-group li + li {
    margin-top: 9px;
}

.rh-mega-group li a {
    display: inline-block;
    color: #687385;
    font-size: 15px;
    line-height: 1.5;
    transition: color .2s ease, transform .2s ease;
}

.rh-mega-group li a:hover {
    color: var(--rh-coral-deep);
    transform: translateX(3px);
}

.rh-mega-group li span {
    font-size: 9px;
}

.rh-drawer {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.rh-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.rh-drawer__scrim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 27, 45, .58) !important;
    opacity: 0;
    transition: opacity .3s ease;
}

.rh-drawer.is-open .rh-drawer__scrim {
    opacity: 1;
}

.rh-drawer__panel {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 90px));
    height: 100%;
    overflow-y: auto;
    padding: 0 clamp(38px, 5vw, 78px) 70px;
    background: #fff;
    box-shadow: -20px 0 55px rgba(13, 28, 48, .2);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.rh-drawer.is-open .rh-drawer__panel {
    transform: translateX(0);
}

.rh-drawer__head {
    position: sticky;
    z-index: 3;
    top: 0;
    display: flex;
    min-height: 95px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--rh-line);
    background: rgba(255, 255, 255, .97);
}

.rh-drawer__head > button {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rh-line);
    border-radius: 50%;
    color: var(--rh-navy);
    font-size: 30px;
    font-weight: 200;
}

.rh-drawer__quick {
    display: grid;
    margin: 36px 0 48px;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--rh-line);
    border-radius: 16px;
    background: var(--rh-paper);
}

.rh-drawer__quick a {
    position: relative;
    display: flex;
    min-height: 90px;
    flex-direction: column;
    justify-content: center;
    padding: 20px 25px;
}

.rh-drawer__quick a + a::before {
    position: absolute;
    left: 0;
    top: 24px;
    width: 1px;
    height: 42px;
    background: #d7dde4;
    content: "";
}

.rh-drawer__quick span {
    margin-bottom: 7px;
    color: var(--rh-coral-deep);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.rh-drawer__quick strong {
    color: var(--rh-navy-deep);
    font-size: 16px;
    font-weight: 700;
}

.rh-drawer__menus {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 52px 58px;
}

.rh-drawer-section > button {
    display: flex;
    width: 100%;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--rh-navy) !important;
    text-align: left;
    cursor: default;
}

.rh-drawer-section > button > span {
    margin-right: 12px;
    color: var(--rh-coral-deep);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}

.rh-drawer-section > button > strong {
    color: var(--rh-navy-deep);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -.04em;
}

.rh-drawer-section > button > i {
    display: none;
    margin-left: auto;
    font-style: normal;
}

.rh-drawer-section__body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
    padding-top: 23px;
}

.rh-drawer-section__title {
    color: #26344a;
    font-size: 16px;
    font-weight: 700;
}

.rh-drawer-section__body ul {
    margin-top: 10px;
}

.rh-drawer-section__body li + li {
    margin-top: 7px;
}

.rh-drawer-section__body li a {
    color: #778091;
    font-size: 14px;
    line-height: 1.5;
}

.rh-drawer-section__body a:hover {
    color: var(--rh-coral-deep);
}

.rh-header a:focus-visible,
.rh-header button:focus-visible,
.rh-header summary:focus-visible,
.rh-drawer a:focus-visible,
.rh-drawer button:focus-visible {
    outline: 3px solid rgba(223, 109, 114, .5);
    outline-offset: 3px;
}

@media (max-width: 1280px) {
    .rh-header-shell {
        width: min(100% - 48px, 1180px);
    }

    .rh-mainbar__inner {
        grid-template-columns: 170px auto 70px;
        gap: 20px;
    }

    .rh-logo img {
        height: 44px;
    }

    .rh-primary > ul {
        gap: 22px;
    }

    .rh-mega__groups {
        grid-template-columns: repeat(3, minmax(130px, 1fr));
    }
}

@media (max-width: 1024px) {
    .rh-header-shell {
        width: calc(100% - 40px);
    }

    .rh-mainbar__inner {
        display: flex;
        min-height: 74px;
        justify-content: space-between;
    }

    .rh-primary,
    .rh-mega-wrap {
        display: none;
    }

    .rh-mainbar__actions {
        gap: 14px;
    }

    .rh-mainbar__live {
        display: flex;
    }

    .rh-utility__right .rh-live {
        display: none;
    }

    .rh-utility__right .rh-live + a {
        padding-left: 0;
    }

    .rh-utility__right .rh-live + a::before {
        display: none;
    }

    .rh-allmenu-button {
        width: 78px;
        flex-direction: row;
        gap: 9px;
        border-radius: 999px;
    }

    .rh-allmenu-button__icon {
        gap: 5px;
    }

    .rh-allmenu-button__icon i {
        width: 16px;
    }

    .rh-allmenu-button > b {
        display: block;
    }

    .rh-drawer__panel {
        width: min(760px, calc(100% - 50px));
        padding-right: 42px;
        padding-left: 42px;
    }

    .rh-drawer__menus {
        display: block;
    }

    .rh-drawer-section {
        border-bottom: 1px solid var(--rh-line);
    }

    .rh-drawer-section > button {
        min-height: 68px;
        padding: 0 !important;
        border-bottom: 0 !important;
        cursor: pointer;
    }

    .rh-drawer-section > button > i {
        display: block;
        color: #7c8797;
        font-size: 20px;
        transition: transform .25s ease;
    }

    .rh-drawer-section.is-open > button > i {
        transform: rotate(45deg);
    }

    .rh-drawer-section__body {
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 4px 16px 30px 31px;
    }

    .rh-drawer-section.is-open .rh-drawer-section__body {
        display: grid;
    }
}

@media (max-width: 767px) {
    .rh-header-shell {
        width: calc(100% - 32px);
    }

    .rh-notice__inner {
        min-height: 46px;
    }

    .rh-notice__label {
        display: none;
    }

    .rh-notice__inner > a,
    .rh-notice__inner > p {
        font-size: 14px;
    }

    .rh-notice__inner > button {
        width: 30px;
        height: 30px;
        margin-left: 10px;
        font-size: 22px;
    }

    .rh-utility {
        display: block;
    }

    .rh-utility__inner {
        min-height: 38px;
        font-size: 12px;
    }

    .rh-utility__left {
        width: 100%;
    }

    .rh-utility__right {
        display: none;
    }

    .rh-utility__left > a,
    .rh-related > summary {
        min-height: 38px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .rh-utility__left > :first-child {
        padding-left: 0;
    }

    .rh-mainbar__inner {
        min-height: 68px;
    }

    .rh-logo img {
        height: 38px;
    }

    .rh-mainbar__live {
        min-height: 32px;
        padding: 0 9px;
    }

    .rh-mainbar__live span {
        font-size: 10px;
    }

    .rh-mainbar__live small {
        font-size: 10px;
    }

    .rh-allmenu-button {
        width: 72px;
        height: 40px;
        gap: 8px;
    }

    .rh-allmenu-button > b {
        font-size: 13px;
    }

    .rh-drawer__panel {
        width: 100%;
        padding: 0 20px 48px;
    }

    .rh-drawer__head {
        min-height: 72px;
    }

    .rh-drawer__head img {
        height: 39px;
    }

    .rh-drawer__head > button {
        width: 40px;
        height: 40px;
        font-size: 25px;
    }

    .rh-drawer__quick {
        margin: 23px 0 25px;
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px;
    }

    .rh-drawer__quick a {
        min-height: 72px;
        padding: 15px 17px;
    }

    .rh-drawer__quick a + a::before {
        top: 17px;
        height: 38px;
    }

    .rh-drawer__quick a:nth-child(3)::before {
        display: none;
    }

    .rh-drawer__quick a:nth-child(n + 3) {
        border-top: 1px solid #d7dde4;
    }

    .rh-drawer__quick strong {
        font-size: 15px;
    }

    .rh-drawer-section > button {
        min-height: 62px;
    }

    .rh-drawer-section > button > strong {
        font-size: 19px;
    }

    .rh-drawer-section__body {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-right: 8px;
        padding-left: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rh-header *,
    .rh-drawer * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .rh-live.is-on .rh-live__status i,
    .rh-mainbar__live.is-on > i {
        animation: none !important;
    }
}
