:focus-visible {
    outline: 2px auto var(--focus);
    outline-offset: 2px;
}

/*!sc*/
* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/*!sc*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*!sc*/
html,
body {
    height: 100%;
}

/*!sc*/
html {
    overflow-y: scroll;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*!sc*/
body {
    font-family: 'Spoqa Han Sans Neo', -apple-system, system-ui, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    -webkit-letter-spacing: -0.6px;
    -moz-letter-spacing: -0.6px;
    -ms-letter-spacing: -0.6px;
    letter-spacing: -0.6px;
    color: var(--text-01);
    background-color: var(--ui-background);
    -webkit-transition: color 350ms ease 0s, background 350ms ease 0s;
    transition: color 350ms ease 0s, background 350ms ease 0s;
    min-width: 320px;
}

/*!sc*/
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    word-break: keep-all;
    line-height: 1.3125;
}

/*!sc*/
a {
    color: inherit;
    -webkit-text-decoration: none;
    text-decoration: none;
    cursor: pointer;
}

/*!sc*/
button {
    border: 0;
    outline: 0;
    background-color: transparent;
    cursor: pointer;
}

/*!sc*/
img {
    max-width: 100%;
    vertical-align: top;
    object-fit: cover;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

/*!sc*/
input,
button,
textarea,
select {
    font: inherit;
}

/*!sc*/
svg {
    display: block;
}

/*!sc*/
i {
    font-style: normal;
}

/*!sc*/
li {
    list-style: none;
}

/*!sc*/
#root,
#__next {
    isolation: isolate;
}

/*!sc*/
:root {
    --inner-space: 24px;
}

/*!sc*/
:root[data-theme="light"] {
    --ui-background: #fff;
    --ui-01: #fafaf6;
    --ui-02: #f7f7f7;
    --ui-03: #f5f4f3;
    --ui-04: #f6f4ee;
    --ui-05: #ececec;
    --ui-06: #dfdfdf;
    --ui-07: #a7a39a;
    --ui-08: #555;
    --ui-09: #333;
    --ui-10: #242424;
    --ui-up: #fff;
    --ui-up-01: #fff;
    --ui-up-02: #fff;
    --ui-up-03: #fff;
    --ui-up-04: #fff;
    --primary: #ffeb60;
    --primary-press: #ffe04b;
    --secondary: #333;
    --secondary-press: #242424;
    --tertiary: #fff;
    --tertiary-press: #f7f7f7;
    --danger: #df1d1d;
    --danger-press: #bc1a1a;
    --cancel: #c1c1c1;
    --cancel-press: #a5a5a5;
    --success: #0073cb;
    --error: #f05c2e;
    --text-strong: #000;
    --text-01: #242424;
    --text-02: #555;
    --text-03: #6f6f6f;
    --text-04: #8b8b8b;
    --field-readonly: #ececec;
    --placeholder: #c1c1c1;
    --audio: #a451f7;
    --myaudio: #533670;
    --focus: #469fe3;
}

/*!sc*/
:root[data-theme="dark"] {
    --ui-background: #171717;
    --ui-01: #242424;
    --ui-02: #333;
    --ui-03: #3d3d3d;
    --ui-04: #555;
    --ui-05: #6f6f6f;
    --ui-06: #8b8b8b;
    --ui-07: #a5a5a5;
    --ui-08: #c1c1c1;
    --ui-09: #ececec;
    --ui-10: #f5f4f3;
    --ui-up: #242424;
    --ui-up-01: #333;
    --ui-up-02: #3d3d3d;
    --ui-up-03: #555;
    --ui-up-04: #6f6f6f;
    --primary: #fef08c;
    --primary-press: #fff7bf;
    --secondary: #fbfbfb;
    --secondary-press: #fff;
    --tertiary: #171717;
    --tertiary-press: #333;
    --danger: #f5511d;
    --danger-press: #eb683f;
    --cancel: #6f6f6f;
    --cancel-press: #8b8b8b;
    --success: #6ab6f0;
    --error: #ff784d;
    --text-strong: #fff;
    --text-01: #fbfbfb;
    --text-02: #dfdfdf;
    --text-03: #c1c1c1;
    --text-04: #a5a5a5;
    --field-readonly: #333;
    --placeholder: #8b8b8b;
    --audio: #b773fb;
    --myaudio: #6e5784;
    --focus: #81bfe;
}

/*!sc*/
.text-left {
    text-align: left;
}

/*!sc*/
.text-center {
    text-align: center;
}

/*!sc*/
.text-right {
    text-align: right;
}

/*!sc*/
.nowrap {
    white-space: nowrap;
}

/*!sc*/
.keep-all {
    word-break: keep-all;
}

/*!sc*/
.blur {
    -webkit-filter: blur(20px);
    filter: blur(20px);
}

/*!sc*/
.unblur {
    -webkit-animation: unblur 0.3s linear;
    animation: unblur 0.3s linear;
}

/*!sc*/
@-webkit-keyframes unblur {
    from {
        -webkit-filter: blur(20px);
        filter: blur(20px);
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

/*!sc*/
@keyframes unblur {
    from {
        -webkit-filter: blur(20px);
        filter: blur(20px);
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

/*!sc*/
[class^="mds-icon"]::before,
[class*=" mds-icon"]::before {
    font-family: icon;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*!sc*/
.mds-icon--add-post::before {
    content: "\e800";
}

/*!sc*/
.mds-icon--book::before {
    content: "\e801";
}

/*!sc*/
.mds-icon--add-shelf::before {
    content: "\e802";
}

/*!sc*/
.mds-icon--arrow-bottom::before {
    content: "\e803";
}

/*!sc*/
.mds-icon--arrow-left::before {
    content: "\e804";
}

/*!sc*/
.mds-icon--arrow-right::before {
    content: "\e805";
}

/*!sc*/
.mds-icon--arrow-top::before {
    content: "\e806";
}

/*!sc*/
.mds-icon--arrow2-left::before {
    content: "\e807";
}

/*!sc*/
.mds-icon--arrow2-right::before {
    content: "\e808";
}

/*!sc*/
.mds-icon--book-open::before {
    content: "\e809";
}

/*!sc*/
.mds-icon--book-plus::before {
    content: "\e80a";
}

/*!sc*/
.mds-icon--books-arrow::before {
    content: "\e80b";
}

/*!sc*/
.mds-icon--books::before {
    content: "\e80c";
}

/*!sc*/
.mds-icon--camera::before {
    content: "\e80d";
}

/*!sc*/
.mds-icon--clap-24-2::before {
    content: "\e80e";
}

/*!sc*/
.mds-icon--comment::before {
    content: "\e80f";
}

/*!sc*/
.mds-icon--crown::before {
    content: "\e810";
}

/*!sc*/
.mds-icon--delivering::before {
    content: "\e811";
}

/*!sc*/
.mds-icon--delivery-done::before {
    content: "\e812";
}

/*!sc*/
.mds-icon--delivery-exchange::before {
    content: "\e813";
}

/*!sc*/
.mds-icon--delivery-hand::before {
    content: "\e814";
}

/*!sc*/
.mds-icon--delivery-put::before {
    content: "\e815";
}

/*!sc*/
.mds-icon--delivery-refund::before {
    content: "\e816";
}

/*!sc*/
.mds-icon--download-fail::before {
    content: "\e817";
}

/*!sc*/
.mds-icon--download-success::before {
    content: "\e818";
}

/*!sc*/
.mds-icon--download::before {
    content: "\e819";
}

/*!sc*/
.mds-icon--downloaded-indesktop::before {
    content: "\e81a";
}

/*!sc*/
.mds-icon--filter::before {
    content: "\e81b";
}

/*!sc*/
.mds-icon--fullscreen-end::before {
    content: "\e81c";
}

/*!sc*/
.mds-icon--fullscreen-start::before {
    content: "\e81d";
}

/*!sc*/
.mds-icon--alert-filled::before {
    content: "\e81e";
}

/*!sc*/
.mds-icon--headphone::before {
    content: "\e81f";
}

/*!sc*/
.mds-icon--heart-1::before {
    content: "\e820";
}

/*!sc*/
.mds-icon--heart::before {
    content: "\e821";
}

/*!sc*/
.mds-icon--highlight::before {
    content: "\e822";
}

/*!sc*/
.mds-icon--check::before {
    content: "\e823";
}

/*!sc*/
.mds-icon--minus::before {
    content: "\e824";
}

/*!sc*/
.mds-icon--plus::before {
    content: "\e825";
}

/*!sc*/
.mds-icon--x::before {
    content: "\e826";
}

/*!sc*/
.mds-icon--setting::before {
    content: "\e827";
}

/*!sc*/
.mds-icon--import::before {
    content: "\e828";
}

/*!sc*/
.mds-icon--link::before {
    content: "\e829";
}

/*!sc*/
.mds-icon--list::before {
    content: "\e82a";
}

/*!sc*/
.mds-icon--lock::before {
    content: "\e82b";
}

/*!sc*/
.mds-icon--down-filled::before {
    content: "\e82c";
}

/*!sc*/
.mds-icon--mov::before {
    content: "\e82d";
}

/*!sc*/
.mds-icon--pay-autorenew::before {
    content: "\e82e";
}

/*!sc*/
.mds-icon--pay-cancel::before {
    content: "\e82f";
}

/*!sc*/
.mds-icon--pay-cancle-reservate::before {
    content: "\e830";
}

/*!sc*/
.mds-icon--pay-done::before {
    content: "\e831";
}

/*!sc*/
.mds-icon--pen::before {
    content: "\e832";
}

/*!sc*/
.mds-icon--picture::before {
    content: "\e833";
}

/*!sc*/
.mds-icon--post::before {
    content: "\e834";
}

/*!sc*/
.mds-icon--profile::before {
    content: "\e835";
}

/*!sc*/
.mds-icon--refresh::before {
    content: "\e836";
}

/*!sc*/
.mds-icon--report::before {
    content: "\e837";
}

/*!sc*/
.mds-icon--review::before {
    content: "\e838";
}

/*!sc*/
.mds-icon--routine::before {
    content: "\e839";
}

/*!sc*/
.mds-icon--searchbar::before {
    content: "\e83a";
}

/*!sc*/
.mds-icon--share::before {
    content: "\e83b";
}

/*!sc*/
.mds-icon--shelf::before {
    content: "\e83c";
}

/*!sc*/
.mds-icon--siren::before {
    content: "\e83d";
}

/*!sc*/
.mds-icon--sound-mute::before {
    content: "\e83e";
}

/*!sc*/
.mds-icon--sound-volume::before {
    content: "\e83f";
}

/*!sc*/
.mds-icon--sound::before {
    content: "\e840";
}

/*!sc*/
.mds-icon--star::before {
    content: "\e841";
}

/*!sc*/
.mds-icon--statistics-book::before {
    content: "\e842";
}

/*!sc*/
.mds-icon--up-filled::before {
    content: "\e843";
}

/*!sc*/
.mds-icon--statistics-time::before {
    content: "\e844";
}

/*!sc*/
.mds-icon--thumbs-down::before {
    content: "\e846";
}

/*!sc*/
.mds-icon--thumbs-up::before {
    content: "\e847";
}

/*!sc*/
.mds-icon--trash::before {
    content: "\e848";
}

/*!sc*/
.mds-icon--trophy::before {
    content: "\e849";
}

/*!sc*/
.mds-icon--unlock::before {
    content: "\e84a";
}

/*!sc*/
.mds-icon--video::before {
    content: "\e84b";
}

/*!sc*/
.mds-icon--viewer-list::before {
    content: "\e84c";
}

/*!sc*/
.mds-icon--more-24-1::before {
    content: "\e84d";
}

/*!sc*/
.mds-icon--input-delete::before {
    content: "\e84e";
}

/*!sc*/
.mds-icon--statistics-routine::before {
    content: "\e850";
}

/*!sc*/
.mds-icon--info::before {
    content: "\e851";
}

/*!sc*/
.mds-icon--question-mark::before {
    content: "\e852";
}

/*!sc*/
.mds-icon--text-24-1::before {
    content: "\e853";
}

/*!sc*/
.mds-icon--gnb_search::before {
    content: "\e854";
}

/*!sc*/
.mds-icon--sync-2::before {
    content: "\e855";
}

/*!sc*/
.mds-icon--alarm-2::before {
    content: "\e856";
}

/*!sc*/
data-styled.g1[id="sc-global-llMsfu1"] {
    content: "sc-global-llMsfu1,"
}

/*!sc*/
.lfPqUZ {
    font-size: 44px;
}

/*!sc*/
@media (max-width:1080px) {
    .lfPqUZ {
        font-size: 32px;
    }
}

/*!sc*/
data-styled.g2[id="Heading__H1-sc-1q2uxxu-0"] {
    content: "lfPqUZ,"
}

/*!sc*/
.doPyMX {
    font-size: 44px;
}

/*!sc*/
@media (max-width:1080px) {
    .doPyMX {
        font-size: 32px;
    }
}

/*!sc*/
data-styled.g3[id="Heading__H2-sc-1q2uxxu-1"] {
    content: "doPyMX,"
}

/*!sc*/
.hBzUzq {
    font-size: 20px;
    line-height: 28px;
}

/*!sc*/
data-styled.g5[id="Heading__H4-sc-1q2uxxu-3"] {
    content: "hBzUzq,"
}

/*!sc*/
.jcVzmJ {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    -webkit-clip: rect(0, 0, 0, 0);
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/*!sc*/
data-styled.g6[id="SrOnly-sc-1w36qd2-0"] {
    content: "jcVzmJ,"
}

/*!sc*/
.yexVU {
    -webkit-text-decoration: none;
    text-decoration: none;
}

/*!sc*/
data-styled.g7[id="Link__InternalLink-sc-gpdhih-0"] {
    content: "yexVU,"
}

/*!sc*/
.eArUAj {
    -webkit-text-decoration: none;
    text-decoration: none;
}

/*!sc*/
data-styled.g8[id="Link__ExternalLink-sc-gpdhih-1"] {
    content: "eArUAj,"
}

/*!sc*/
.ixxpYp {
    display: block;
    padding: 10px 24px;
    color: var(--text-01);
    text-align: center;
}

/*!sc*/
@media (max-width:768px) {
    .ixxpYp {
        padding: 16px 10px;
    }
}

/*!sc*/
.ixxpYp::before {
    content: attr(data-title);
    display: block;
    height: 0px;
    font-weight: 700;
    overflow: hidden;
    visibility: hidden;
}

/*!sc*/
.ixxpYp:hover,
.ixxpYp.is-current {
    font-weight: 700;
    color: var(--text-01) !important;
}

/*!sc*/
.ixxpYp:hover+ul,
.ixxpYp.is-current+ul {
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

/*!sc*/
data-styled.g9[id="Navlink__LinkStyled-sc-1ub27h3-0"] {
    content: "ixxpYp,"
}

/*!sc*/
.hxjVyH {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    margin-right: 11px;
}

/*!sc*/
@media (max-width:768px) {
    .hxjVyH {
        display: none;
    }
}

/*!sc*/
data-styled.g11[id="Navigation__DesktopList-sc-o5xf0x-1"] {
    content: "hxjVyH,"
}

/*!sc*/
.bXyjJi {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5L6 8L9 5' stroke='%236F6F6F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

/*!sc*/
.bXyjJi.is-open {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 9L8 6L5 9' stroke='%236F6F6F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

/*!sc*/
data-styled.g12[id="Navigation__SubArrow-sc-o5xf0x-2"] {
    content: "bXyjJi,"
}

/*!sc*/
.jYtnqt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

/*!sc*/
.jYtnqt .Navigation__DesktopList-sc-o5xf0x-1 {
    position: fixed;
    z-index: -1;
    right: -11px;
    top: 64px;
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-color: rgba(255, 255, 255, 1);
    opacity: 0;
    -webkit-transition: -webkit-transform .3s, opacity .14s;
    -webkit-transition: transform .3s, opacity .14s;
    transition: transform .3s, opacity .14s;
    -webkit-transform: translateY(-124%);
    -ms-transform: translateY(-124%);
    transform: translateY(-124%);
    pointer-events: none;
}

/*!sc*/
.jYtnqt .Navigation__DesktopList-sc-o5xf0x-1 a:not(.is-current) {
    color: var(--text-04, #8B8B8B);
}

/*!sc*/
.jYtnqt:hover>a {
    font-weight: 700;
}

/*!sc*/
.jYtnqt:hover>.Navigation__DesktopList-sc-o5xf0x-1 {
    z-index: 2;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: -webkit-transform .36s, opacity .34s;
    -webkit-transition: transform .36s, opacity .34s;
    transition: transform .36s, opacity .34s;
    background-color: rgba(255, 255, 255, 1);
}

/*!sc*/
data-styled.g13[id="Navigation__DesktopItem-sc-o5xf0x-3"] {
    content: "jYtnqt,"
}

/*!sc*/
.hxoUnk {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 64px;
    width: 100%;
    padding: 16px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-124%);
    -ms-transform: translateY(-124%);
    transform: translateY(-124%);
    -webkit-transition: -webkit-transform .36s;
    -webkit-transition: transform .36s;
    transition: transform .36s;
    background-color: var(--ui-background);
}

/*!sc*/
data-styled.g14[id="Navigation__NavList-sc-o5xf0x-4"] {
    content: "hxoUnk,"
}

/*!sc*/
.kovyAg .Navigation__NavList-sc-o5xf0x-4 {
    position: static;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

/*!sc*/
.kovyAg .Navigation__NavList-sc-o5xf0x-4 a:not(.is-current) {
    color: var(--text-04, #8B8B8B);
    padding: 12px 10px;
}

/*!sc*/
.kovyAg:hover>a {
    font-weight: 700;
}

/*!sc*/
data-styled.g15[id="Navigation__NavItem-sc-o5xf0x-5"] {
    content: "kovyAg,"
}

/*!sc*/
.hjeiGN {
    display: none;
    margin-right: 8px;
}

/*!sc*/
@media (max-width:768px) {
    .hjeiGN {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

/*!sc*/
.hjeiGN::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    pointer-events: none;
    background-color: transparent;
    -webkit-transition: background .16s .24s;
    transition: background .16s .24s;
}

/*!sc*/
.hjeiGN.is-open .Navigation__NavList-sc-o5xf0x-4 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/*!sc*/
.hjeiGN.is-open::before {
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: background 0s;
    transition: background 0s;
}

/*!sc*/
data-styled.g16[id="Navigation__Mobile-sc-o5xf0x-6"] {
    content: "hjeiGN,"
}

/*!sc*/
.hcujpD {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
}

/*!sc*/
.hcujpD::before,
.hcujpD .Navigation__Bar-sc-o5xf0x-7,
.hcujpD::after {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    margin: 0 auto;
    background-color: #333;
    border-radius: 1px;
    -webkit-transition: all .24s;
    transition: all .24s;
}

/*!sc*/
.hcujpD .Navigation__Bar-sc-o5xf0x-7 {
    margin: 4px auto;
}

/*!sc*/
.hcujpD.is-open::before {
    -webkit-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
}

/*!sc*/
.hcujpD.is-open .Navigation__Bar-sc-o5xf0x-7 {
    opacity: 0;
}

/*!sc*/
.hcujpD.is-open::after {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
}

/*!sc*/
data-styled.g18[id="Navigation__Hamburg-sc-o5xf0x-8"] {
    content: "hcujpD,"
}

/*!sc*/
.fKcdcq {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    pointer-events: none;
    height: 64px;
    padding-left: 24px;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: env(safe-area-inset-right);
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: color 350ms ease 0s, background 350ms ease 0s;
    transition: color 350ms ease 0s, background 350ms ease 0s;
}

/*!sc*/
[data-theme="dark"] .Header__Wrapper-sc-1ytm4f-0 {
    background-color: rgba(23, 23, 23, 0.9);
}

/*!sc*/
.fKcdcq:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--ui-06);
}

/*!sc*/
data-styled.g19[id="Header__Wrapper-sc-1ytm4f-0"] {
    content: "fKcdcq,"
}

/*!sc*/
.cPIdcb {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/*!sc*/
data-styled.g20[id="Header__Left-sc-1ytm4f-1"] {
    content: "cPIdcb,"
}

/*!sc*/
.bQuONR {
    pointer-events: auto;
}

/*!sc*/
data-styled.g21[id="Header__Right-sc-1ytm4f-2"] {
    content: "bQuONR,"
}

/*!sc*/
.jFDdcE {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 0;
}

/*!sc*/
data-styled.g22[id="Header__Branding-sc-1ytm4f-3"] {
    content: "jFDdcE,"
}

/*!sc*/
.iLrnVF {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/*!sc*/
data-styled.g24[id="Main__Wrapper-sc-bu0qth-0"] {
    content: "iLrnVF,"
}

/*!sc*/
.dfDrXB {
    max-width: 1204px;
    padding: 0 var(--inner-space);
    padding-left: max(var(--inner-space), env(safe-area-inset-left));
    padding-right: max(var(--inner-space), env(safe-area-inset-right));
    margin: 0 auto;
}

/*!sc*/
data-styled.g25[id="Inner-sc-zoh9d9-0"] {
    content: "dfDrXB,"
}

/*!sc*/
.ilLTer {
    min-width: 24px;
    min-height: 24px;
}

/*!sc*/
data-styled.g26[id="Spacer-sc-19972yg-0"] {
    content: "ilLTer,"
}

/*!sc*/
.jXaSnJ {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 12px;
    height: 12px;
    font-size: 12px;
    font-weight: normal;
    line-height: 1;
    color: inherit;
}

/*!sc*/
.cfuKuH {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 12px;
    height: 12px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: inherit;
}

/*!sc*/
data-styled.g27[id="Icon__Wrapper-sc-1vy3ele-0"] {
    content: "jXaSnJ,cfuKuH,"
}

/*!sc*/
.loGBJo {
    position: relative;
    padding: 60px 0;
    border-top: 1px solid var(--ui-06);
    font-size: 14px;
    line-height: 20px;
}

/*!sc*/
data-styled.g28[id="Footer__Wrapper-sc-vbjbll-0"] {
    content: "loGBJo,"
}

/*!sc*/
.bQmtsb {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*!sc*/
data-styled.g29[id="Footer__Top-sc-vbjbll-1"] {
    content: "bQmtsb,"
}

/*!sc*/
.jnPNyL {
    position: relative;
    top: 2px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 8px;
    column-gap: 8px;
}

/*!sc*/
data-styled.g30[id="Footer__SNSList-sc-vbjbll-2"] {
    content: "jnPNyL,"
}

/*!sc*/
.dqqjTJ a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--ui-06);
    border-radius: 50%;
    background-color: var(--ui-background);
}

/*!sc*/
data-styled.g31[id="Footer__SNSItem-sc-vbjbll-3"] {
    content: "dqqjTJ,"
}

/*!sc*/
.eIllvx {
    margin-top: 34px;
    color: var(--text-04);
}

/*!sc*/
data-styled.g32[id="Footer__Details-sc-vbjbll-4"] {
    content: "eIllvx,"
}

/*!sc*/
.cETwId {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--text-02);
}

/*!sc*/
.cETwId::marker {
    content: "";
}

/*!sc*/
.cETwId::-webkit-details-marker {
    display: none;
}

/*!sc*/
data-styled.g33[id="Footer__Summary-sc-vbjbll-5"] {
    content: "cETwId,"
}

/*!sc*/
.iOqjHs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

/*!sc*/
data-styled.g34[id="Footer__DetailList-sc-vbjbll-6"] {
    content: "iOqjHs,"
}

/*!sc*/
.hmnNNi {
    white-space: nowrap;
    color: var(--text-02);
}

/*!sc*/
data-styled.g35[id="Footer__DetailItem-sc-vbjbll-7"] {
    content: "hmnNNi,"
}

/*!sc*/
.jrlcWI {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 18px;
    column-gap: 18px;
    row-gap: 8px;
    margin: 16px 0 34px 0;
}

/*!sc*/
@media (max-width:640px) {
    .jrlcWI {
        margin: 16px 0 30px 0;
    }
}

/*!sc*/
data-styled.g36[id="Footer__ServiceList-sc-vbjbll-8"] {
    content: "jrlcWI,"
}

/*!sc*/
.hLgMjR {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--text-01);
}

/*!sc*/
data-styled.g37[id="Footer__ServiceItem-sc-vbjbll-9"] {
    content: "hLgMjR,"
}

/*!sc*/
.bpploH {
    color: var(--text-02);
}

/*!sc*/
data-styled.g38[id="Footer__Copyright-sc-vbjbll-10"] {
    content: "bpploH,"
}

/*!sc*/
@media (min-width:640px) {
    .XFqli {
        display: none;
    }
}

/*!sc*/
data-styled.g39[id="Footer__MOBILEBR-sc-vbjbll-11"] {
    content: "XFqli,"
}

/*!sc*/
.gTIvjt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

/*!sc*/
data-styled.g40[id="StandardLayout__Wrapper-sc-fekk6l-0"] {
    content: "gTIvjt,"
}

/*!sc*/
.jSjXKM {
    font-size: 20px;
    overflow-wrap: break-word;
    word-break: keep-all;
}

/*!sc*/
@media (max-width:1080px) {
    .jSjXKM {
        font-size: 16px;
    }
}

/*!sc*/
data-styled.g41[id="Paragraph-sc-13icume-0"] {
    content: "jSjXKM,"
}

/*!sc*/
.bCzpo {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-04);
    margin-bottom: 3px;
}

/*!sc*/
@media (max-width:1080px) {
    .bCzpo {
        font-size: 16px;
        margin-bottom: 4px;
    }
}

/*!sc*/
data-styled.g42[id="Subline-sc-8imged-0"] {
    content: "bCzpo,"
}

/*!sc*/
.dGRSHG {
    overflow: hidden;
}

/*!sc*/
data-styled.g83[id="Tabbar__Wrapper-sc-ae2mxl-0"] {
    content: "dGRSHG,"
}

/*!sc*/
.gQRKfw {
    overflow-x: auto;
    margin: 0 -24px;
}

/*!sc*/
.gQRKfw.touch-device {
    -ms-overflow-style: none;
    -webkit-scrollbar-width: none;
    -moz-scrollbar-width: none;
    -ms-scrollbar-width: none;
    scrollbar-width: none;
}

/*!sc*/
.gQRKfw.touch-device::-webkit-scrollbar {
    display: none;
}

/*!sc*/
data-styled.g84[id="Tabbar__Scrolling-sc-ae2mxl-1"] {
    content: "gQRKfw,"
}

/*!sc*/
.ibZxew {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 24px;
}

/*!sc*/
@media (max-width:1080px) {
    .ibZxew {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        gap: 52px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .ibZxew {
        gap: 32px;
    }
}

/*!sc*/
data-styled.g85[id="Tabbar__Tabs-sc-ae2mxl-2"] {
    content: "ibZxew,"
}

/*!sc*/
.fdqAsa {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 92px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    white-space: nowrap;
    color: var(--text-04);
}

/*!sc*/
.fdqAsa.is-active {
    color: var(--text-01);
}

/*!sc*/
.fdqAsa.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
}

/*!sc*/
@media (max-width:1080px) {
    .fdqAsa {
        font-size: 20px;
        line-height: 28px;
        height: 52px;
    }
}

/*!sc*/
@media (max-width:640px) {}

/*!sc*/
data-styled.g86[id="Tabbar__Tab-sc-ae2mxl-3"] {
    content: "fdqAsa,"
}

/*!sc*/
.pkkIO {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 111px;
    padding-bottom: 140px;
}

/*!sc*/
@media (max-width:1080px) {
    .pkkIO {
        padding-top: 72px;
        padding-bottom: 100px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .pkkIO {
        padding-top: 36px;
        padding-bottom: 80px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

/*!sc*/
data-styled.g87[id="Tabbar__Description-sc-ae2mxl-4"] {
    content: "pkkIO,"
}

/*!sc*/
.fsroXp {
    width: 28.54%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 24px;
}

/*!sc*/
@media (max-width:640px) {
    .fsroXp {
        width: 100%;
    }
}

/*!sc*/
data-styled.g88[id="Tabbar__Left-sc-ae2mxl-5"] {
    content: "fsroXp,"
}

/*!sc*/
.hcTTxQ {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/*!sc*/
data-styled.g89[id="Tabbar__Right-sc-ae2mxl-6"] {
    content: "hcTTxQ,"
}

/*!sc*/
.keGCDi {
    display: block;
    font-size: 26px;
    line-height: 130%;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 20px;
}

/*!sc*/
@media (max-width:1080px) {
    .keGCDi {
        font-size: 22px;
        margin-bottom: 24px;
    }
}

/*!sc*/
data-styled.g90[id="Tabbar__Title-sc-ae2mxl-7"] {
    content: "keGCDi,"
}

/*!sc*/
.eixgiy {
    font-size: 20px;
    line-height: 32px;
}

/*!sc*/
@media (max-width:1080px) {
    .eixgiy {
        font-size: 16px;
        line-height: 160%;
    }
}

/*!sc*/
data-styled.g91[id="Tabbar__Paragraph-sc-ae2mxl-8"] {
    content: "eixgiy,"
}

/*!sc*/
.wqiCo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #FFEB53;
}

/*!sc*/
@media (max-width:1080px) {
    .wqiCo {
        width: 140px;
        height: 140px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .wqiCo {
        width: 80px;
        height: 80px;
        margin: 0 0 24px;
    }

    .wqiCo svg {
        -webkit-transform: scale(0.56);
        -ms-transform: scale(0.56);
        transform: scale(0.56);
    }
}

/*!sc*/
data-styled.g92[id="Tabbar__Icon-sc-ae2mxl-9"] {
    content: "wqiCo,"
}

/*!sc*/
.kFEbfv {
    display: none;
}

/*!sc*/
@media (max-width:640px) {
    .kFEbfv {
        display: block;
    }
}

/*!sc*/
data-styled.g96[id="Featured__MOBILE_BR-sc-1hhzmed-0"] {
    content: "kFEbfv,"
}

/*!sc*/
.cBizul {
    padding-top: 96px;
    padding-bottom: 111px;
}

/*!sc*/
@media (max-width:1080px) {
    .cBizul {
        padding-top: 76px;
        padding-bottom: 60px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .cBizul {
        padding-top: 56px;
        padding-bottom: 60px;
    }
}

/*!sc*/
data-styled.g97[id="Featured__Wrapper-sc-1hhzmed-1"] {
    content: "cBizul,"
}

/*!sc*/
.dXSVyV {
    position: relative;
}

/*!sc*/
.dXSVyV .Paragraph-sc-13icume-0 {
    margin-top: 16px;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-break: keep-all;
}

/*!sc*/
data-styled.g98[id="Featured__Description-sc-1hhzmed-2"] {
    content: "dXSVyV,"
}

/*!sc*/
.cEROaE {
    border-top: 1px solid #000;
    padding-top: 60px;
    padding-bottom: 140px;
}

/*!sc*/
@media (max-width:1080px) {
    .cEROaE {
        padding-top: 72px;
        padding-bottom: 120px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .cEROaE {
        padding-top: 60px;
        padding-bottom: 80px;
    }
}

/*!sc*/
data-styled.g100[id="charter__List-sc-7vrwea-1"] {
    content: "cEROaE,"
}

/*!sc*/
.igqifg {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    font-size: 20px;
    line-height: 170%;
    margin-top: 60px;
}

/*!sc*/
.igqifg:first-child {
    margin-top: 0;
}

/*!sc*/
@media (max-width:1080px) {
    .igqifg {
        font-size: 16px;
        margin-top: 40px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .igqifg {
        margin-top: 32px;
    }
}

/*!sc*/
data-styled.g101[id="charter__Item-sc-7vrwea-2"] {
    content: "igqifg,"
}

/*!sc*/
.LlltW {
    display: block;
    white-space: nowrap;
    padding-right: 6.4%;
}

/*!sc*/
data-styled.g102[id="charter__Num-sc-7vrwea-3"] {
    content: "LlltW,"
}

/*!sc*/

:focus-visible {
    outline: 2px auto var(--focus);
    outline-offset: 2px;
}

/*!sc*/
* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/*!sc*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*!sc*/
html,
body {
    height: 100%;
}

/*!sc*/
html {
    overflow-y: scroll;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*!sc*/
body {
    font-family: 'Spoqa Han Sans Neo', -apple-system, system-ui, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    -webkit-letter-spacing: -0.6px;
    -moz-letter-spacing: -0.6px;
    -ms-letter-spacing: -0.6px;
    letter-spacing: -0.6px;
    color: var(--text-01);
    background-color: var(--ui-background);
    -webkit-transition: color 350ms ease 0s, background 350ms ease 0s;
    transition: color 350ms ease 0s, background 350ms ease 0s;
    min-width: 320px;
}

/*!sc*/
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    word-break: keep-all;
    line-height: 1.3125;
}

/*!sc*/
a {
    color: inherit;
    -webkit-text-decoration: none;
    text-decoration: none;
    cursor: pointer;
}

/*!sc*/
button {
    border: 0;
    outline: 0;
    background-color: transparent;
    cursor: pointer;
}

/*!sc*/
img {
    max-width: 100%;
    vertical-align: top;
    object-fit: cover;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

/*!sc*/
input,
button,
textarea,
select {
    font: inherit;
}

/*!sc*/
svg {
    display: block;
}

/*!sc*/
i {
    font-style: normal;
}

/*!sc*/
li {
    list-style: none;
}

/*!sc*/
#root,
#__next {
    isolation: isolate;
}

/*!sc*/
:root {
    --inner-space: 24px;
}

/*!sc*/
:root[data-theme="light"] {
    --ui-background: #fff;
    --ui-01: #fafaf6;
    --ui-02: #f7f7f7;
    --ui-03: #f5f4f3;
    --ui-04: #f6f4ee;
    --ui-05: #ececec;
    --ui-06: #dfdfdf;
    --ui-07: #a7a39a;
    --ui-08: #555;
    --ui-09: #333;
    --ui-10: #242424;
    --ui-up: #fff;
    --ui-up-01: #fff;
    --ui-up-02: #fff;
    --ui-up-03: #fff;
    --ui-up-04: #fff;
    --primary: #ffeb60;
    --primary-press: #ffe04b;
    --secondary: #333;
    --secondary-press: #242424;
    --tertiary: #fff;
    --tertiary-press: #f7f7f7;
    --danger: #df1d1d;
    --danger-press: #bc1a1a;
    --cancel: #c1c1c1;
    --cancel-press: #a5a5a5;
    --success: #0073cb;
    --error: #f05c2e;
    --text-strong: #000;
    --text-01: #242424;
    --text-02: #555;
    --text-03: #6f6f6f;
    --text-04: #8b8b8b;
    --field-readonly: #ececec;
    --placeholder: #c1c1c1;
    --audio: #a451f7;
    --myaudio: #533670;
    --focus: #469fe3;
}

/*!sc*/
:root[data-theme="dark"] {
    --ui-background: #171717;
    --ui-01: #242424;
    --ui-02: #333;
    --ui-03: #3d3d3d;
    --ui-04: #555;
    --ui-05: #6f6f6f;
    --ui-06: #8b8b8b;
    --ui-07: #a5a5a5;
    --ui-08: #c1c1c1;
    --ui-09: #ececec;
    --ui-10: #f5f4f3;
    --ui-up: #242424;
    --ui-up-01: #333;
    --ui-up-02: #3d3d3d;
    --ui-up-03: #555;
    --ui-up-04: #6f6f6f;
    --primary: #fef08c;
    --primary-press: #fff7bf;
    --secondary: #fbfbfb;
    --secondary-press: #fff;
    --tertiary: #171717;
    --tertiary-press: #333;
    --danger: #f5511d;
    --danger-press: #eb683f;
    --cancel: #6f6f6f;
    --cancel-press: #8b8b8b;
    --success: #6ab6f0;
    --error: #ff784d;
    --text-strong: #fff;
    --text-01: #fbfbfb;
    --text-02: #dfdfdf;
    --text-03: #c1c1c1;
    --text-04: #a5a5a5;
    --field-readonly: #333;
    --placeholder: #8b8b8b;
    --audio: #b773fb;
    --myaudio: #6e5784;
    --focus: #81bfe;
}

/*!sc*/
.text-left {
    text-align: left;
}

/*!sc*/
.text-center {
    text-align: center;
}

/*!sc*/
.text-right {
    text-align: right;
}

/*!sc*/
.nowrap {
    white-space: nowrap;
}

/*!sc*/
.keep-all {
    word-break: keep-all;
}

/*!sc*/
.blur {
    -webkit-filter: blur(20px);
    filter: blur(20px);
}

/*!sc*/
.unblur {
    -webkit-animation: unblur 0.3s linear;
    animation: unblur 0.3s linear;
}

/*!sc*/
@-webkit-keyframes unblur {
    from {
        -webkit-filter: blur(20px);
        filter: blur(20px);
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

/*!sc*/
@keyframes unblur {
    from {
        -webkit-filter: blur(20px);
        filter: blur(20px);
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

/*!sc*/
[class^="mds-icon"]::before,
[class*=" mds-icon"]::before {
    font-family: icon;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*!sc*/
.mds-icon--add-post::before {
    content: "\e800";
}

/*!sc*/
.mds-icon--book::before {
    content: "\e801";
}

/*!sc*/
.mds-icon--add-shelf::before {
    content: "\e802";
}

/*!sc*/
.mds-icon--arrow-bottom::before {
    content: "\e803";
}

/*!sc*/
.mds-icon--arrow-left::before {
    content: "\e804";
}

/*!sc*/
.mds-icon--arrow-right::before {
    content: "\e805";
}

/*!sc*/
.mds-icon--arrow-top::before {
    content: "\e806";
}

/*!sc*/
.mds-icon--arrow2-left::before {
    content: "\e807";
}

/*!sc*/
.mds-icon--arrow2-right::before {
    content: "\e808";
}

/*!sc*/
.mds-icon--book-open::before {
    content: "\e809";
}

/*!sc*/
.mds-icon--book-plus::before {
    content: "\e80a";
}

/*!sc*/
.mds-icon--books-arrow::before {
    content: "\e80b";
}

/*!sc*/
.mds-icon--books::before {
    content: "\e80c";
}

/*!sc*/
.mds-icon--camera::before {
    content: "\e80d";
}

/*!sc*/
.mds-icon--clap-24-2::before {
    content: "\e80e";
}

/*!sc*/
.mds-icon--comment::before {
    content: "\e80f";
}

/*!sc*/
.mds-icon--crown::before {
    content: "\e810";
}

/*!sc*/
.mds-icon--delivering::before {
    content: "\e811";
}

/*!sc*/
.mds-icon--delivery-done::before {
    content: "\e812";
}

/*!sc*/
.mds-icon--delivery-exchange::before {
    content: "\e813";
}

/*!sc*/
.mds-icon--delivery-hand::before {
    content: "\e814";
}

/*!sc*/
.mds-icon--delivery-put::before {
    content: "\e815";
}

/*!sc*/
.mds-icon--delivery-refund::before {
    content: "\e816";
}

/*!sc*/
.mds-icon--download-fail::before {
    content: "\e817";
}

/*!sc*/
.mds-icon--download-success::before {
    content: "\e818";
}

/*!sc*/
.mds-icon--download::before {
    content: "\e819";
}

/*!sc*/
.mds-icon--downloaded-indesktop::before {
    content: "\e81a";
}

/*!sc*/
.mds-icon--filter::before {
    content: "\e81b";
}

/*!sc*/
.mds-icon--fullscreen-end::before {
    content: "\e81c";
}

/*!sc*/
.mds-icon--fullscreen-start::before {
    content: "\e81d";
}

/*!sc*/
.mds-icon--alert-filled::before {
    content: "\e81e";
}

/*!sc*/
.mds-icon--headphone::before {
    content: "\e81f";
}

/*!sc*/
.mds-icon--heart-1::before {
    content: "\e820";
}

/*!sc*/
.mds-icon--heart::before {
    content: "\e821";
}

/*!sc*/
.mds-icon--highlight::before {
    content: "\e822";
}

/*!sc*/
.mds-icon--check::before {
    content: "\e823";
}

/*!sc*/
.mds-icon--minus::before {
    content: "\e824";
}

/*!sc*/
.mds-icon--plus::before {
    content: "\e825";
}

/*!sc*/
.mds-icon--x::before {
    content: "\e826";
}

/*!sc*/
.mds-icon--setting::before {
    content: "\e827";
}

/*!sc*/
.mds-icon--import::before {
    content: "\e828";
}

/*!sc*/
.mds-icon--link::before {
    content: "\e829";
}

/*!sc*/
.mds-icon--list::before {
    content: "\e82a";
}

/*!sc*/
.mds-icon--lock::before {
    content: "\e82b";
}

/*!sc*/
.mds-icon--down-filled::before {
    content: "\e82c";
}

/*!sc*/
.mds-icon--mov::before {
    content: "\e82d";
}

/*!sc*/
.mds-icon--pay-autorenew::before {
    content: "\e82e";
}

/*!sc*/
.mds-icon--pay-cancel::before {
    content: "\e82f";
}

/*!sc*/
.mds-icon--pay-cancle-reservate::before {
    content: "\e830";
}

/*!sc*/
.mds-icon--pay-done::before {
    content: "\e831";
}

/*!sc*/
.mds-icon--pen::before {
    content: "\e832";
}

/*!sc*/
.mds-icon--picture::before {
    content: "\e833";
}

/*!sc*/
.mds-icon--post::before {
    content: "\e834";
}

/*!sc*/
.mds-icon--profile::before {
    content: "\e835";
}

/*!sc*/
.mds-icon--refresh::before {
    content: "\e836";
}

/*!sc*/
.mds-icon--report::before {
    content: "\e837";
}

/*!sc*/
.mds-icon--review::before {
    content: "\e838";
}

/*!sc*/
.mds-icon--routine::before {
    content: "\e839";
}

/*!sc*/
.mds-icon--searchbar::before {
    content: "\e83a";
}

/*!sc*/
.mds-icon--share::before {
    content: "\e83b";
}

/*!sc*/
.mds-icon--shelf::before {
    content: "\e83c";
}

/*!sc*/
.mds-icon--siren::before {
    content: "\e83d";
}

/*!sc*/
.mds-icon--sound-mute::before {
    content: "\e83e";
}

/*!sc*/
.mds-icon--sound-volume::before {
    content: "\e83f";
}

/*!sc*/
.mds-icon--sound::before {
    content: "\e840";
}

/*!sc*/
.mds-icon--star::before {
    content: "\e841";
}

/*!sc*/
.mds-icon--statistics-book::before {
    content: "\e842";
}

/*!sc*/
.mds-icon--up-filled::before {
    content: "\e843";
}

/*!sc*/
.mds-icon--statistics-time::before {
    content: "\e844";
}

/*!sc*/
.mds-icon--thumbs-down::before {
    content: "\e846";
}

/*!sc*/
.mds-icon--thumbs-up::before {
    content: "\e847";
}

/*!sc*/
.mds-icon--trash::before {
    content: "\e848";
}

/*!sc*/
.mds-icon--trophy::before {
    content: "\e849";
}

/*!sc*/
.mds-icon--unlock::before {
    content: "\e84a";
}

/*!sc*/
.mds-icon--video::before {
    content: "\e84b";
}

/*!sc*/
.mds-icon--viewer-list::before {
    content: "\e84c";
}

/*!sc*/
.mds-icon--more-24-1::before {
    content: "\e84d";
}

/*!sc*/
.mds-icon--input-delete::before {
    content: "\e84e";
}

/*!sc*/
.mds-icon--statistics-routine::before {
    content: "\e850";
}

/*!sc*/
.mds-icon--info::before {
    content: "\e851";
}

/*!sc*/
.mds-icon--question-mark::before {
    content: "\e852";
}

/*!sc*/
.mds-icon--text-24-1::before {
    content: "\e853";
}

/*!sc*/
.mds-icon--gnb_search::before {
    content: "\e854";
}

/*!sc*/
.mds-icon--sync-2::before {
    content: "\e855";
}

/*!sc*/
.mds-icon--alarm-2::before {
    content: "\e856";
}

/*!sc*/
data-styled.g1[id="sc-global-llMsfu1"] {
    content: "sc-global-llMsfu1,"
}

/*!sc*/
.yexVU {
    -webkit-text-decoration: none;
    text-decoration: none;
}

/*!sc*/
data-styled.g2[id="Link__InternalLink-sc-gpdhih-0"] {
    content: "yexVU,"
}

/*!sc*/
.eArUAj {
    -webkit-text-decoration: none;
    text-decoration: none;
}

/*!sc*/
data-styled.g3[id="Link__ExternalLink-sc-gpdhih-1"] {
    content: "eArUAj,"
}

/*!sc*/
.dfDrXB {
    max-width: 1204px;
    padding: 0 var(--inner-space);
    padding-left: max(var(--inner-space), env(safe-area-inset-left));
    padding-right: max(var(--inner-space), env(safe-area-inset-right));
    margin: 0 auto;
}

/*!sc*/
data-styled.g9[id="Inner-sc-zoh9d9-0"] {
    content: "dfDrXB,"
}

/*!sc*/
.dGRSHG {
    overflow: hidden;
}

/*!sc*/
data-styled.g10[id="Tabbar__Wrapper-sc-ae2mxl-0"] {
    content: "dGRSHG,"
}

/*!sc*/
.gQRKfw {
    overflow-x: auto;
    margin: 0 -24px;
}

/*!sc*/
.gQRKfw.touch-device {
    -ms-overflow-style: none;
    -webkit-scrollbar-width: none;
    -moz-scrollbar-width: none;
    -ms-scrollbar-width: none;
    scrollbar-width: none;
}

/*!sc*/
.gQRKfw.touch-device::-webkit-scrollbar {
    display: none;
}

/*!sc*/
data-styled.g11[id="Tabbar__Scrolling-sc-ae2mxl-1"] {
    content: "gQRKfw,"
}

/*!sc*/
.ibZxew {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 24px;
}

/*!sc*/
@media (max-width:1080px) {
    .ibZxew {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        gap: 52px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .ibZxew {
        gap: 32px;
    }
}

/*!sc*/
data-styled.g12[id="Tabbar__Tabs-sc-ae2mxl-2"] {
    content: "ibZxew,"
}

/*!sc*/
.fdqAsa {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 92px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    white-space: nowrap;
    color: var(--text-04);
}

/*!sc*/
.fdqAsa.is-active {
    color: var(--text-01);
}

/*!sc*/
.fdqAsa.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
}

/*!sc*/
@media (max-width:1080px) {
    .fdqAsa {
        font-size: 20px;
        line-height: 28px;
        height: 52px;
    }
}

/*!sc*/
@media (max-width:640px) {}

/*!sc*/
data-styled.g13[id="Tabbar__Tab-sc-ae2mxl-3"] {
    content: "fdqAsa,"
}

/*!sc*/
.pkkIO {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 111px;
    padding-bottom: 140px;
}

/*!sc*/
@media (max-width:1080px) {
    .pkkIO {
        padding-top: 72px;
        padding-bottom: 100px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .pkkIO {
        padding-top: 36px;
        padding-bottom: 80px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

/*!sc*/
data-styled.g14[id="Tabbar__Description-sc-ae2mxl-4"] {
    content: "pkkIO,"
}

/*!sc*/
.fsroXp {
    width: 28.54%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 24px;
}

/*!sc*/
@media (max-width:640px) {
    .fsroXp {
        width: 100%;
    }
}

/*!sc*/
data-styled.g15[id="Tabbar__Left-sc-ae2mxl-5"] {
    content: "fsroXp,"
}

/*!sc*/
.hcTTxQ {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/*!sc*/
data-styled.g16[id="Tabbar__Right-sc-ae2mxl-6"] {
    content: "hcTTxQ,"
}

/*!sc*/
.keGCDi {
    display: block;
    font-size: 26px;
    line-height: 130%;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 20px;
}

/*!sc*/
@media (max-width:1080px) {
    .keGCDi {
        font-size: 22px;
        margin-bottom: 24px;
    }
}

/*!sc*/
data-styled.g17[id="Tabbar__Title-sc-ae2mxl-7"] {
    content: "keGCDi,"
}

/*!sc*/
.wqiCo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #FFEB53;
}

/*!sc*/
@media (max-width:1080px) {
    .wqiCo {
        width: 140px;
        height: 140px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .wqiCo {
        width: 80px;
        height: 80px;
        margin: 0 0 24px;
    }

    .wqiCo svg {
        -webkit-transform: scale(0.56);
        -ms-transform: scale(0.56);
        transform: scale(0.56);
    }
}

/*!sc*/
data-styled.g19[id="Tabbar__Icon-sc-ae2mxl-9"] {
    content: "wqiCo,"
}

/*!sc*/
.fWApcA {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 16.95%;
}

/*!sc*/
@media (max-width:640px) {
    .fWApcA {
        display: block;
    }
}

/*!sc*/
data-styled.g20[id="Tabbar__Lists-sc-ae2mxl-10"] {
    content: "fWApcA,"
}

/*!sc*/
.eyIdnE {
    font-size: 20px;
    line-height: 32px;
    word-break: keep-all;
}

/*!sc*/
@media (max-width:1080px) {
    .eyIdnE {
        font-size: 16px;
        line-height: 160%;
    }
}

/*!sc*/
data-styled.g22[id="Tabbar__Item-sc-ae2mxl-12"] {
    content: "eyIdnE,"
}

/*!sc*/
.blIfGu {
    border-top: 1px solid #A0A0A0;
    border-bottom: 1px solid #A0A0A0;
    margin-top: -1px;
}

/*!sc*/
data-styled.g23[id="Accordion__Wrapper-sc-1tqkz2w-0"] {
    content: "blIfGu,"
}

/*!sc*/
.gAyEXe {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    padding: 41px 90px 38px 0;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.792993C-0.0976311 1.18352 -0.0976311 1.81668 0.292893 2.20721L7.29289 9.20721C7.68342 9.59773 8.31658 9.59773 8.70711 9.20721L15.7071 2.20721C16.0976 1.81668 16.0976 1.18352 15.7071 0.792993C15.3166 0.402469 14.6834 0.402469 14.2929 0.792993L8 7.08589L1.70711 0.792992C1.31658 0.402468 0.683417 0.402468 0.292893 0.792993Z' fill='%236F6F6F'/%3E%3C/svg%3E");
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*!sc*/
.is-expanded .Accordion__Summary-sc-1tqkz2w-1 {
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='10' viewBox='0 0 17 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.7032 9.20711C17.0937 8.81658 17.0937 8.18342 16.7032 7.79289L9.7032 0.792894C9.31268 0.402369 8.67951 0.402369 8.28899 0.792894L1.28899 7.79289C0.898464 8.18342 0.898464 8.81658 1.28899 9.20711C1.67951 9.59763 2.31268 9.59763 2.7032 9.20711L8.99609 2.91421L15.289 9.20711C15.6795 9.59763 16.3127 9.59763 16.7032 9.20711Z' fill='%236F6F6F'/%3E%3C/svg%3E%0A");
}

/*!sc*/
@media (max-width:1080px) {
    .gAyEXe {
        padding: 22px 32px 22px 0;
        font-size: 16px;
        line-height: 130%;
    }
}

/*!sc*/
data-styled.g24[id="Accordion__Summary-sc-1tqkz2w-1"] {
    content: "gAyEXe,"
}

/*!sc*/
.eXjFbB {
    display: block;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: var(--text-03);
    min-width: 118px;
}

/*!sc*/
@media (max-width:1080px) {
    .eXjFbB {
        font-size: 16px;
        line-height: 32px;
        min-width: 54px;
    }
}

/*!sc*/
data-styled.g25[id="Accordion__Subline-sc-1tqkz2w-2"] {
    content: "eXjFbB,"
}

/*!sc*/
.dZgraL {
    display: none;
    padding: 41px 86px 41px 118px;
    border-top: 1px solid #ECECEC;
    font-size: 20px;
    line-height: 32px;
}

/*!sc*/
.is-expanded .Accordion__Details-sc-1tqkz2w-3 {
    display: block;
}

/*!sc*/
@media (max-width:1080px) {
    .dZgraL {
        padding: 22px 52px 22px 54px;
        font-size: 16px;
        line-height: 160%;
    }
}

/*!sc*/
@media (max-width:640px) {
    .dZgraL {
        padding: 22px 0;
    }
}

/*!sc*/
data-styled.g26[id="Accordion__Details-sc-1tqkz2w-3"] {
    content: "dZgraL,"
}

/*!sc*/
.lfPqUZ {
    font-size: 44px;
}

/*!sc*/
@media (max-width:1080px) {
    .lfPqUZ {
        font-size: 32px;
    }
}

/*!sc*/
data-styled.g27[id="Heading__H1-sc-1q2uxxu-0"] {
    content: "lfPqUZ,"
}

/*!sc*/
.doPyMX {
    font-size: 44px;
}

/*!sc*/
@media (max-width:1080px) {
    .doPyMX {
        font-size: 32px;
    }
}

/*!sc*/
data-styled.g28[id="Heading__H2-sc-1q2uxxu-1"] {
    content: "doPyMX,"
}

/*!sc*/
.hBzUzq {
    font-size: 20px;
    line-height: 28px;
}

/*!sc*/
data-styled.g30[id="Heading__H4-sc-1q2uxxu-3"] {
    content: "hBzUzq,"
}

/*!sc*/
.jcVzmJ {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    -webkit-clip: rect(0, 0, 0, 0);
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/*!sc*/
data-styled.g31[id="SrOnly-sc-1w36qd2-0"] {
    content: "jcVzmJ,"
}

/*!sc*/
.ixxpYp {
    display: block;
    padding: 10px 24px;
    color: var(--text-01);
    text-align: center;
}

/*!sc*/
@media (max-width:768px) {
    .ixxpYp {
        padding: 16px 10px;
    }
}

/*!sc*/
.ixxpYp::before {
    content: attr(data-title);
    display: block;
    height: 0px;
    font-weight: 700;
    overflow: hidden;
    visibility: hidden;
}

/*!sc*/
.ixxpYp:hover,
.ixxpYp.is-current {
    font-weight: 700;
    color: var(--text-01) !important;
}

/*!sc*/
.ixxpYp:hover+ul,
.ixxpYp.is-current+ul {
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

/*!sc*/
data-styled.g32[id="Navlink__LinkStyled-sc-1ub27h3-0"] {
    content: "ixxpYp,"
}

/*!sc*/
.hxjVyH {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    margin-right: 11px;
}

/*!sc*/
@media (max-width:768px) {
    .hxjVyH {
        display: none;
    }
}

/*!sc*/
data-styled.g34[id="Navigation__DesktopList-sc-o5xf0x-1"] {
    content: "hxjVyH,"
}

/*!sc*/
.bXyjJi {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5L6 8L9 5' stroke='%236F6F6F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

/*!sc*/
.bXyjJi.is-open {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 9L8 6L5 9' stroke='%236F6F6F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

/*!sc*/
data-styled.g35[id="Navigation__SubArrow-sc-o5xf0x-2"] {
    content: "bXyjJi,"
}

/*!sc*/
.jYtnqt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

/*!sc*/
.jYtnqt .Navigation__DesktopList-sc-o5xf0x-1 {
    position: fixed;
    z-index: -1;
    right: -11px;
    top: 64px;
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-color: rgba(255, 255, 255, 1);
    opacity: 0;
    -webkit-transition: -webkit-transform .3s, opacity .14s;
    -webkit-transition: transform .3s, opacity .14s;
    transition: transform .3s, opacity .14s;
    -webkit-transform: translateY(-124%);
    -ms-transform: translateY(-124%);
    transform: translateY(-124%);
    pointer-events: none;
}

/*!sc*/
.jYtnqt .Navigation__DesktopList-sc-o5xf0x-1 a:not(.is-current) {
    color: var(--text-04, #8B8B8B);
}

/*!sc*/
.jYtnqt:hover>a {
    font-weight: 700;
}

/*!sc*/
.jYtnqt:hover>.Navigation__DesktopList-sc-o5xf0x-1 {
    z-index: 2;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: -webkit-transform .36s, opacity .34s;
    -webkit-transition: transform .36s, opacity .34s;
    transition: transform .36s, opacity .34s;
    background-color: rgba(255, 255, 255, 1);
}

/*!sc*/
data-styled.g36[id="Navigation__DesktopItem-sc-o5xf0x-3"] {
    content: "jYtnqt,"
}

/*!sc*/
.hxoUnk {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 64px;
    width: 100%;
    padding: 16px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-124%);
    -ms-transform: translateY(-124%);
    transform: translateY(-124%);
    -webkit-transition: -webkit-transform .36s;
    -webkit-transition: transform .36s;
    transition: transform .36s;
    background-color: var(--ui-background);
}

/*!sc*/
data-styled.g37[id="Navigation__NavList-sc-o5xf0x-4"] {
    content: "hxoUnk,"
}

/*!sc*/
.kovyAg .Navigation__NavList-sc-o5xf0x-4 {
    position: static;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

/*!sc*/
.kovyAg .Navigation__NavList-sc-o5xf0x-4 a:not(.is-current) {
    color: var(--text-04, #8B8B8B);
    padding: 12px 10px;
}

/*!sc*/
.kovyAg:hover>a {
    font-weight: 700;
}

/*!sc*/
data-styled.g38[id="Navigation__NavItem-sc-o5xf0x-5"] {
    content: "kovyAg,"
}

/*!sc*/
.hjeiGN {
    display: none;
    margin-right: 8px;
}

/*!sc*/
@media (max-width:768px) {
    .hjeiGN {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

/*!sc*/
.hjeiGN::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    pointer-events: none;
    background-color: transparent;
    -webkit-transition: background .16s .24s;
    transition: background .16s .24s;
}

/*!sc*/
.hjeiGN.is-open .Navigation__NavList-sc-o5xf0x-4 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/*!sc*/
.hjeiGN.is-open::before {
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: background 0s;
    transition: background 0s;
}

/*!sc*/
data-styled.g39[id="Navigation__Mobile-sc-o5xf0x-6"] {
    content: "hjeiGN,"
}

/*!sc*/
.hcujpD {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
}

/*!sc*/
.hcujpD::before,
.hcujpD .Navigation__Bar-sc-o5xf0x-7,
.hcujpD::after {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    margin: 0 auto;
    background-color: #333;
    border-radius: 1px;
    -webkit-transition: all .24s;
    transition: all .24s;
}

/*!sc*/
.hcujpD .Navigation__Bar-sc-o5xf0x-7 {
    margin: 4px auto;
}

/*!sc*/
.hcujpD.is-open::before {
    -webkit-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
}

/*!sc*/
.hcujpD.is-open .Navigation__Bar-sc-o5xf0x-7 {
    opacity: 0;
}

/*!sc*/
.hcujpD.is-open::after {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
}

/*!sc*/
data-styled.g41[id="Navigation__Hamburg-sc-o5xf0x-8"] {
    content: "hcujpD,"
}

/*!sc*/
.fKcdcq {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    pointer-events: none;
    height: 64px;
    padding-left: 24px;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: env(safe-area-inset-right);
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: color 350ms ease 0s, background 350ms ease 0s;
    transition: color 350ms ease 0s, background 350ms ease 0s;
}

/*!sc*/
[data-theme="dark"] .Header__Wrapper-sc-1ytm4f-0 {
    background-color: rgba(23, 23, 23, 0.9);
}

/*!sc*/
.fKcdcq:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--ui-06);
}

/*!sc*/
data-styled.g42[id="Header__Wrapper-sc-1ytm4f-0"] {
    content: "fKcdcq,"
}

/*!sc*/
.cPIdcb {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/*!sc*/
data-styled.g43[id="Header__Left-sc-1ytm4f-1"] {
    content: "cPIdcb,"
}

/*!sc*/
.bQuONR {
    pointer-events: auto;
}

/*!sc*/
data-styled.g44[id="Header__Right-sc-1ytm4f-2"] {
    content: "bQuONR,"
}

/*!sc*/
.jFDdcE {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 0;
}

/*!sc*/
data-styled.g45[id="Header__Branding-sc-1ytm4f-3"] {
    content: "jFDdcE,"
}

/*!sc*/
.iLrnVF {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/*!sc*/
data-styled.g47[id="Main__Wrapper-sc-bu0qth-0"] {
    content: "iLrnVF,"
}

/*!sc*/
.ilLTer {
    min-width: 24px;
    min-height: 24px;
}

/*!sc*/
data-styled.g48[id="Spacer-sc-19972yg-0"] {
    content: "ilLTer,"
}

/*!sc*/
.jXaSnJ {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 12px;
    height: 12px;
    font-size: 12px;
    font-weight: normal;
    line-height: 1;
    color: inherit;
}

/*!sc*/
.cfuKuH {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 12px;
    height: 12px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: inherit;
}

/*!sc*/
data-styled.g49[id="Icon__Wrapper-sc-1vy3ele-0"] {
    content: "jXaSnJ,cfuKuH,"
}

/*!sc*/
.loGBJo {
    position: relative;
    padding: 60px 0;
    border-top: 1px solid var(--ui-06);
    font-size: 14px;
    line-height: 20px;
}

/*!sc*/
data-styled.g50[id="Footer__Wrapper-sc-vbjbll-0"] {
    content: "loGBJo,"
}

/*!sc*/
.bQmtsb {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*!sc*/
data-styled.g51[id="Footer__Top-sc-vbjbll-1"] {
    content: "bQmtsb,"
}

/*!sc*/
.jnPNyL {
    position: relative;
    top: 2px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 8px;
    column-gap: 8px;
}

/*!sc*/
data-styled.g52[id="Footer__SNSList-sc-vbjbll-2"] {
    content: "jnPNyL,"
}

/*!sc*/
.dqqjTJ a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--ui-06);
    border-radius: 50%;
    background-color: var(--ui-background);
}

/*!sc*/
data-styled.g53[id="Footer__SNSItem-sc-vbjbll-3"] {
    content: "dqqjTJ,"
}

/*!sc*/
.eIllvx {
    margin-top: 34px;
    color: var(--text-04);
}

/*!sc*/
data-styled.g54[id="Footer__Details-sc-vbjbll-4"] {
    content: "eIllvx,"
}

/*!sc*/
.cETwId {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--text-02);
}

/*!sc*/
.cETwId::marker {
    content: "";
}

/*!sc*/
.cETwId::-webkit-details-marker {
    display: none;
}

/*!sc*/
data-styled.g55[id="Footer__Summary-sc-vbjbll-5"] {
    content: "cETwId,"
}

/*!sc*/
.iOqjHs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

/*!sc*/
data-styled.g56[id="Footer__DetailList-sc-vbjbll-6"] {
    content: "iOqjHs,"
}

/*!sc*/
.hmnNNi {
    white-space: nowrap;
    color: var(--text-02);
}

/*!sc*/
data-styled.g57[id="Footer__DetailItem-sc-vbjbll-7"] {
    content: "hmnNNi,"
}

/*!sc*/
.jrlcWI {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 18px;
    column-gap: 18px;
    row-gap: 8px;
    margin: 16px 0 34px 0;
}

/*!sc*/
@media (max-width:640px) {
    .jrlcWI {
        margin: 16px 0 30px 0;
    }
}

/*!sc*/
data-styled.g58[id="Footer__ServiceList-sc-vbjbll-8"] {
    content: "jrlcWI,"
}

/*!sc*/
.hLgMjR {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--text-01);
}

/*!sc*/
data-styled.g59[id="Footer__ServiceItem-sc-vbjbll-9"] {
    content: "hLgMjR,"
}

/*!sc*/
.bpploH {
    color: var(--text-02);
}

/*!sc*/
data-styled.g60[id="Footer__Copyright-sc-vbjbll-10"] {
    content: "bpploH,"
}

/*!sc*/
@media (min-width:640px) {
    .XFqli {
        display: none;
    }
}

/*!sc*/
data-styled.g61[id="Footer__MOBILEBR-sc-vbjbll-11"] {
    content: "XFqli,"
}

/*!sc*/
.gTIvjt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

/*!sc*/
data-styled.g62[id="StandardLayout__Wrapper-sc-fekk6l-0"] {
    content: "gTIvjt,"
}

/*!sc*/
.jSjXKM {
    font-size: 20px;
    overflow-wrap: break-word;
    word-break: keep-all;
}

/*!sc*/
@media (max-width:1080px) {
    .jSjXKM {
        font-size: 16px;
    }
}

/*!sc*/
data-styled.g63[id="Paragraph-sc-13icume-0"] {
    content: "jSjXKM,"
}

/*!sc*/
.bCzpo {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-04);
    margin-bottom: 3px;
}

/*!sc*/
@media (max-width:1080px) {
    .bCzpo {
        font-size: 16px;
        margin-bottom: 4px;
    }
}

/*!sc*/
data-styled.g64[id="Subline-sc-8imged-0"] {
    content: "bCzpo,"
}

/*!sc*/
.kFEbfv {
    display: none;
}

/*!sc*/
@media (max-width:640px) {
    .kFEbfv {
        display: block;
    }
}

/*!sc*/
data-styled.g65[id="Featured__MOBILE_BR-sc-1hhzmed-0"] {
    content: "kFEbfv,"
}

/*!sc*/
.cBizul {
    padding-top: 96px;
    padding-bottom: 111px;
}

/*!sc*/
@media (max-width:1080px) {
    .cBizul {
        padding-top: 76px;
        padding-bottom: 60px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .cBizul {
        padding-top: 56px;
        padding-bottom: 60px;
    }
}

/*!sc*/
data-styled.g66[id="Featured__Wrapper-sc-1hhzmed-1"] {
    content: "cBizul,"
}

/*!sc*/
.dXSVyV {
    position: relative;
}

/*!sc*/
.dXSVyV .Paragraph-sc-13icume-0 {
    margin-top: 16px;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-break: keep-all;
}

/*!sc*/
data-styled.g67[id="Featured__Description-sc-1hhzmed-2"] {
    content: "dXSVyV,"
}

/*!sc*/
.jsKygq {
    padding-bottom: 140px;
}

/*!sc*/
@media (max-width:1080px) {
    .jsKygq {
        padding-bottom: 120px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .jsKygq {
        padding-bottom: 80px;
    }
}

/*!sc*/
data-styled.g68[id="code__Wrapper-sc-oq1pp8-0"] {
    content: "jsKygq,"
}

/*!sc*/
.ijYGTR {
    padding-left: 20px;
    margin-left: -8px;
}

/*!sc*/
data-styled.g69[id="code__List-sc-oq1pp8-1"] {
    content: "ijYGTR,"
}

/*!sc*/
.dCbCgF {
    position: relative;
}

/*!sc*/
.dCbCgF::before {
    content: "";
    position: absolute;
    top: 12px;
    left: -10px;
    display: block;
    width: 4px;
    height: 4px;
    background-color: var(--text-01);
    border-radius: 50%;
}

/*!sc*/
data-styled.g70[id="code__Item-sc-oq1pp8-2"] {
    content: "dCbCgF,"
}

/*!sc*/


:focus-visible {
    outline: 2px auto var(--focus);
    outline-offset: 2px;
}

/*!sc*/
* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/*!sc*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*!sc*/
html,
body {
    height: 100%;
}

/*!sc*/
html {
    overflow-y: scroll;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*!sc*/
body {
    font-family: 'Spoqa Han Sans Neo', -apple-system, system-ui, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    -webkit-letter-spacing: -0.6px;
    -moz-letter-spacing: -0.6px;
    -ms-letter-spacing: -0.6px;
    letter-spacing: -0.6px;
    color: var(--text-01);
    background-color: var(--ui-background);
    -webkit-transition: color 350ms ease 0s, background 350ms ease 0s;
    transition: color 350ms ease 0s, background 350ms ease 0s;
    min-width: 320px;
}

/*!sc*/
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    word-break: keep-all;
    line-height: 1.3125;
}

/*!sc*/
a {
    color: inherit;
    -webkit-text-decoration: none;
    text-decoration: none;
    cursor: pointer;
}

/*!sc*/
button {
    border: 0;
    outline: 0;
    background-color: transparent;
    cursor: pointer;
}

/*!sc*/
img {
    max-width: 100%;
    vertical-align: top;
    object-fit: cover;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

/*!sc*/
input,
button,
textarea,
select {
    font: inherit;
}

/*!sc*/
svg {
    display: block;
}

/*!sc*/
i {
    font-style: normal;
}

/*!sc*/
li {
    list-style: none;
}

/*!sc*/
#root,
#__next {
    isolation: isolate;
}

/*!sc*/
:root {
    --inner-space: 24px;
}

/*!sc*/
:root[data-theme="light"] {
    --ui-background: #fff;
    --ui-01: #fafaf6;
    --ui-02: #f7f7f7;
    --ui-03: #f5f4f3;
    --ui-04: #f6f4ee;
    --ui-05: #ececec;
    --ui-06: #dfdfdf;
    --ui-07: #a7a39a;
    --ui-08: #555;
    --ui-09: #333;
    --ui-10: #242424;
    --ui-up: #fff;
    --ui-up-01: #fff;
    --ui-up-02: #fff;
    --ui-up-03: #fff;
    --ui-up-04: #fff;
    --primary: #ffeb60;
    --primary-press: #ffe04b;
    --secondary: #333;
    --secondary-press: #242424;
    --tertiary: #fff;
    --tertiary-press: #f7f7f7;
    --danger: #df1d1d;
    --danger-press: #bc1a1a;
    --cancel: #c1c1c1;
    --cancel-press: #a5a5a5;
    --success: #0073cb;
    --error: #f05c2e;
    --text-strong: #000;
    --text-01: #242424;
    --text-02: #555;
    --text-03: #6f6f6f;
    --text-04: #8b8b8b;
    --field-readonly: #ececec;
    --placeholder: #c1c1c1;
    --audio: #a451f7;
    --myaudio: #533670;
    --focus: #469fe3;
}

/*!sc*/
:root[data-theme="dark"] {
    --ui-background: #171717;
    --ui-01: #242424;
    --ui-02: #333;
    --ui-03: #3d3d3d;
    --ui-04: #555;
    --ui-05: #6f6f6f;
    --ui-06: #8b8b8b;
    --ui-07: #a5a5a5;
    --ui-08: #c1c1c1;
    --ui-09: #ececec;
    --ui-10: #f5f4f3;
    --ui-up: #242424;
    --ui-up-01: #333;
    --ui-up-02: #3d3d3d;
    --ui-up-03: #555;
    --ui-up-04: #6f6f6f;
    --primary: #fef08c;
    --primary-press: #fff7bf;
    --secondary: #fbfbfb;
    --secondary-press: #fff;
    --tertiary: #171717;
    --tertiary-press: #333;
    --danger: #f5511d;
    --danger-press: #eb683f;
    --cancel: #6f6f6f;
    --cancel-press: #8b8b8b;
    --success: #6ab6f0;
    --error: #ff784d;
    --text-strong: #fff;
    --text-01: #fbfbfb;
    --text-02: #dfdfdf;
    --text-03: #c1c1c1;
    --text-04: #a5a5a5;
    --field-readonly: #333;
    --placeholder: #8b8b8b;
    --audio: #b773fb;
    --myaudio: #6e5784;
    --focus: #81bfe;
}

/*!sc*/
.text-left {
    text-align: left;
}

/*!sc*/
.text-center {
    text-align: center;
}

/*!sc*/
.text-right {
    text-align: right;
}

/*!sc*/
.nowrap {
    white-space: nowrap;
}

/*!sc*/
.keep-all {
    word-break: keep-all;
}

/*!sc*/
.blur {
    -webkit-filter: blur(20px);
    filter: blur(20px);
}

/*!sc*/
.unblur {
    -webkit-animation: unblur 0.3s linear;
    animation: unblur 0.3s linear;
}

/*!sc*/
@-webkit-keyframes unblur {
    from {
        -webkit-filter: blur(20px);
        filter: blur(20px);
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

/*!sc*/
@keyframes unblur {
    from {
        -webkit-filter: blur(20px);
        filter: blur(20px);
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

/*!sc*/
[class^="mds-icon"]::before,
[class*=" mds-icon"]::before {
    font-family: icon;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*!sc*/
.mds-icon--add-post::before {
    content: "\e800";
}

/*!sc*/
.mds-icon--book::before {
    content: "\e801";
}

/*!sc*/
.mds-icon--add-shelf::before {
    content: "\e802";
}

/*!sc*/
.mds-icon--arrow-bottom::before {
    content: "\e803";
}

/*!sc*/
.mds-icon--arrow-left::before {
    content: "\e804";
}

/*!sc*/
.mds-icon--arrow-right::before {
    content: "\e805";
}

/*!sc*/
.mds-icon--arrow-top::before {
    content: "\e806";
}

/*!sc*/
.mds-icon--arrow2-left::before {
    content: "\e807";
}

/*!sc*/
.mds-icon--arrow2-right::before {
    content: "\e808";
}

/*!sc*/
.mds-icon--book-open::before {
    content: "\e809";
}

/*!sc*/
.mds-icon--book-plus::before {
    content: "\e80a";
}

/*!sc*/
.mds-icon--books-arrow::before {
    content: "\e80b";
}

/*!sc*/
.mds-icon--books::before {
    content: "\e80c";
}

/*!sc*/
.mds-icon--camera::before {
    content: "\e80d";
}

/*!sc*/
.mds-icon--clap-24-2::before {
    content: "\e80e";
}

/*!sc*/
.mds-icon--comment::before {
    content: "\e80f";
}

/*!sc*/
.mds-icon--crown::before {
    content: "\e810";
}

/*!sc*/
.mds-icon--delivering::before {
    content: "\e811";
}

/*!sc*/
.mds-icon--delivery-done::before {
    content: "\e812";
}

/*!sc*/
.mds-icon--delivery-exchange::before {
    content: "\e813";
}

/*!sc*/
.mds-icon--delivery-hand::before {
    content: "\e814";
}

/*!sc*/
.mds-icon--delivery-put::before {
    content: "\e815";
}

/*!sc*/
.mds-icon--delivery-refund::before {
    content: "\e816";
}

/*!sc*/
.mds-icon--download-fail::before {
    content: "\e817";
}

/*!sc*/
.mds-icon--download-success::before {
    content: "\e818";
}

/*!sc*/
.mds-icon--download::before {
    content: "\e819";
}

/*!sc*/
.mds-icon--downloaded-indesktop::before {
    content: "\e81a";
}

/*!sc*/
.mds-icon--filter::before {
    content: "\e81b";
}

/*!sc*/
.mds-icon--fullscreen-end::before {
    content: "\e81c";
}

/*!sc*/
.mds-icon--fullscreen-start::before {
    content: "\e81d";
}

/*!sc*/
.mds-icon--alert-filled::before {
    content: "\e81e";
}

/*!sc*/
.mds-icon--headphone::before {
    content: "\e81f";
}

/*!sc*/
.mds-icon--heart-1::before {
    content: "\e820";
}

/*!sc*/
.mds-icon--heart::before {
    content: "\e821";
}

/*!sc*/
.mds-icon--highlight::before {
    content: "\e822";
}

/*!sc*/
.mds-icon--check::before {
    content: "\e823";
}

/*!sc*/
.mds-icon--minus::before {
    content: "\e824";
}

/*!sc*/
.mds-icon--plus::before {
    content: "\e825";
}

/*!sc*/
.mds-icon--x::before {
    content: "\e826";
}

/*!sc*/
.mds-icon--setting::before {
    content: "\e827";
}

/*!sc*/
.mds-icon--import::before {
    content: "\e828";
}

/*!sc*/
.mds-icon--link::before {
    content: "\e829";
}

/*!sc*/
.mds-icon--list::before {
    content: "\e82a";
}

/*!sc*/
.mds-icon--lock::before {
    content: "\e82b";
}

/*!sc*/
.mds-icon--down-filled::before {
    content: "\e82c";
}

/*!sc*/
.mds-icon--mov::before {
    content: "\e82d";
}

/*!sc*/
.mds-icon--pay-autorenew::before {
    content: "\e82e";
}

/*!sc*/
.mds-icon--pay-cancel::before {
    content: "\e82f";
}

/*!sc*/
.mds-icon--pay-cancle-reservate::before {
    content: "\e830";
}

/*!sc*/
.mds-icon--pay-done::before {
    content: "\e831";
}

/*!sc*/
.mds-icon--pen::before {
    content: "\e832";
}

/*!sc*/
.mds-icon--picture::before {
    content: "\e833";
}

/*!sc*/
.mds-icon--post::before {
    content: "\e834";
}

/*!sc*/
.mds-icon--profile::before {
    content: "\e835";
}

/*!sc*/
.mds-icon--refresh::before {
    content: "\e836";
}

/*!sc*/
.mds-icon--report::before {
    content: "\e837";
}

/*!sc*/
.mds-icon--review::before {
    content: "\e838";
}

/*!sc*/
.mds-icon--routine::before {
    content: "\e839";
}

/*!sc*/
.mds-icon--searchbar::before {
    content: "\e83a";
}

/*!sc*/
.mds-icon--share::before {
    content: "\e83b";
}

/*!sc*/
.mds-icon--shelf::before {
    content: "\e83c";
}

/*!sc*/
.mds-icon--siren::before {
    content: "\e83d";
}

/*!sc*/
.mds-icon--sound-mute::before {
    content: "\e83e";
}

/*!sc*/
.mds-icon--sound-volume::before {
    content: "\e83f";
}

/*!sc*/
.mds-icon--sound::before {
    content: "\e840";
}

/*!sc*/
.mds-icon--star::before {
    content: "\e841";
}

/*!sc*/
.mds-icon--statistics-book::before {
    content: "\e842";
}

/*!sc*/
.mds-icon--up-filled::before {
    content: "\e843";
}

/*!sc*/
.mds-icon--statistics-time::before {
    content: "\e844";
}

/*!sc*/
.mds-icon--thumbs-down::before {
    content: "\e846";
}

/*!sc*/
.mds-icon--thumbs-up::before {
    content: "\e847";
}

/*!sc*/
.mds-icon--trash::before {
    content: "\e848";
}

/*!sc*/
.mds-icon--trophy::before {
    content: "\e849";
}

/*!sc*/
.mds-icon--unlock::before {
    content: "\e84a";
}

/*!sc*/
.mds-icon--video::before {
    content: "\e84b";
}

/*!sc*/
.mds-icon--viewer-list::before {
    content: "\e84c";
}

/*!sc*/
.mds-icon--more-24-1::before {
    content: "\e84d";
}

/*!sc*/
.mds-icon--input-delete::before {
    content: "\e84e";
}

/*!sc*/
.mds-icon--statistics-routine::before {
    content: "\e850";
}

/*!sc*/
.mds-icon--info::before {
    content: "\e851";
}

/*!sc*/
.mds-icon--question-mark::before {
    content: "\e852";
}

/*!sc*/
.mds-icon--text-24-1::before {
    content: "\e853";
}

/*!sc*/
.mds-icon--gnb_search::before {
    content: "\e854";
}

/*!sc*/
.mds-icon--sync-2::before {
    content: "\e855";
}

/*!sc*/
.mds-icon--alarm-2::before {
    content: "\e856";
}

/*!sc*/
data-styled.g1[id="sc-global-llMsfu1"] {
    content: "sc-global-llMsfu1,"
}

/*!sc*/
.yexVU {
    -webkit-text-decoration: none;
    text-decoration: none;
}

/*!sc*/
data-styled.g2[id="Link__InternalLink-sc-gpdhih-0"] {
    content: "yexVU,"
}

/*!sc*/
.eArUAj {
    -webkit-text-decoration: none;
    text-decoration: none;
}

/*!sc*/
data-styled.g3[id="Link__ExternalLink-sc-gpdhih-1"] {
    content: "eArUAj,"
}

/*!sc*/
.dfDrXB {
    max-width: 1204px;
    padding: 0 var(--inner-space);
    padding-left: max(var(--inner-space), env(safe-area-inset-left));
    padding-right: max(var(--inner-space), env(safe-area-inset-right));
    margin: 0 auto;
}

/*!sc*/
data-styled.g9[id="Inner-sc-zoh9d9-0"] {
    content: "dfDrXB,"
}

/*!sc*/
.dGRSHG {
    overflow: hidden;
}

/*!sc*/
data-styled.g10[id="Tabbar__Wrapper-sc-ae2mxl-0"] {
    content: "dGRSHG,"
}

/*!sc*/
.gQRKfw {
    overflow-x: auto;
    margin: 0 -24px;
}

/*!sc*/
.gQRKfw.touch-device {
    -ms-overflow-style: none;
    -webkit-scrollbar-width: none;
    -moz-scrollbar-width: none;
    -ms-scrollbar-width: none;
    scrollbar-width: none;
}

/*!sc*/
.gQRKfw.touch-device::-webkit-scrollbar {
    display: none;
}

/*!sc*/
data-styled.g11[id="Tabbar__Scrolling-sc-ae2mxl-1"] {
    content: "gQRKfw,"
}

/*!sc*/
.ibZxew {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 24px;
}

/*!sc*/
@media (max-width:1080px) {
    .ibZxew {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        gap: 52px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .ibZxew {
        gap: 32px;
    }
}

/*!sc*/
data-styled.g12[id="Tabbar__Tabs-sc-ae2mxl-2"] {
    content: "ibZxew,"
}

/*!sc*/
.fdqAsa {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 92px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    white-space: nowrap;
    color: var(--text-04);
}

/*!sc*/
.fdqAsa.is-active {
    color: var(--text-01);
}

/*!sc*/
.fdqAsa.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
}

/*!sc*/
@media (max-width:1080px) {
    .fdqAsa {
        font-size: 20px;
        line-height: 28px;
        height: 52px;
    }
}

/*!sc*/
@media (max-width:640px) {}

/*!sc*/
data-styled.g13[id="Tabbar__Tab-sc-ae2mxl-3"] {
    content: "fdqAsa,"
}

/*!sc*/
.pkkIO {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 111px;
    padding-bottom: 140px;
}

/*!sc*/
@media (max-width:1080px) {
    .pkkIO {
        padding-top: 72px;
        padding-bottom: 100px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .pkkIO {
        padding-top: 36px;
        padding-bottom: 80px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

/*!sc*/
data-styled.g14[id="Tabbar__Description-sc-ae2mxl-4"] {
    content: "pkkIO,"
}

/*!sc*/
.fsroXp {
    width: 28.54%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 24px;
}

/*!sc*/
@media (max-width:640px) {
    .fsroXp {
        width: 100%;
    }
}

/*!sc*/
data-styled.g15[id="Tabbar__Left-sc-ae2mxl-5"] {
    content: "fsroXp,"
}

/*!sc*/
.hcTTxQ {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/*!sc*/
data-styled.g16[id="Tabbar__Right-sc-ae2mxl-6"] {
    content: "hcTTxQ,"
}

/*!sc*/
.keGCDi {
    display: block;
    font-size: 26px;
    line-height: 130%;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 20px;
}

/*!sc*/
@media (max-width:1080px) {
    .keGCDi {
        font-size: 22px;
        margin-bottom: 24px;
    }
}

/*!sc*/
data-styled.g17[id="Tabbar__Title-sc-ae2mxl-7"] {
    content: "keGCDi,"
}

/*!sc*/
.eixgiy {
    font-size: 20px;
    line-height: 32px;
}

/*!sc*/
@media (max-width:1080px) {
    .eixgiy {
        font-size: 16px;
        line-height: 160%;
    }
}

/*!sc*/
data-styled.g18[id="Tabbar__Paragraph-sc-ae2mxl-8"] {
    content: "eixgiy,"
}

/*!sc*/
.wqiCo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #FFEB53;
}

/*!sc*/
@media (max-width:1080px) {
    .wqiCo {
        width: 140px;
        height: 140px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .wqiCo {
        width: 80px;
        height: 80px;
        margin: 0 0 24px;
    }

    .wqiCo svg {
        -webkit-transform: scale(0.56);
        -ms-transform: scale(0.56);
        transform: scale(0.56);
    }
}

/*!sc*/
data-styled.g19[id="Tabbar__Icon-sc-ae2mxl-9"] {
    content: "wqiCo,"
}

/*!sc*/
.lfPqUZ {
    font-size: 44px;
}

/*!sc*/
@media (max-width:1080px) {
    .lfPqUZ {
        font-size: 32px;
    }
}

/*!sc*/
data-styled.g23[id="Heading__H1-sc-1q2uxxu-0"] {
    content: "lfPqUZ,"
}

/*!sc*/
.doPyMX {
    font-size: 44px;
}

/*!sc*/
@media (max-width:1080px) {
    .doPyMX {
        font-size: 32px;
    }
}

/*!sc*/
data-styled.g24[id="Heading__H2-sc-1q2uxxu-1"] {
    content: "doPyMX,"
}

/*!sc*/
.hBzUzq {
    font-size: 20px;
    line-height: 28px;
}

/*!sc*/
data-styled.g26[id="Heading__H4-sc-1q2uxxu-3"] {
    content: "hBzUzq,"
}

/*!sc*/
.jcVzmJ {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    -webkit-clip: rect(0, 0, 0, 0);
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/*!sc*/
data-styled.g27[id="SrOnly-sc-1w36qd2-0"] {
    content: "jcVzmJ,"
}

/*!sc*/
.ixxpYp {
    display: block;
    padding: 10px 24px;
    color: var(--text-01);
    text-align: center;
}

/*!sc*/
@media (max-width:768px) {
    .ixxpYp {
        padding: 16px 10px;
    }
}

/*!sc*/
.ixxpYp::before {
    content: attr(data-title);
    display: block;
    height: 0px;
    font-weight: 700;
    overflow: hidden;
    visibility: hidden;
}

/*!sc*/
.ixxpYp:hover,
.ixxpYp.is-current {
    font-weight: 700;
    color: var(--text-01) !important;
}

/*!sc*/
.ixxpYp:hover+ul,
.ixxpYp.is-current+ul {
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

/*!sc*/
data-styled.g28[id="Navlink__LinkStyled-sc-1ub27h3-0"] {
    content: "ixxpYp,"
}

/*!sc*/
.hxjVyH {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    margin-right: 11px;
}

/*!sc*/
@media (max-width:768px) {
    .hxjVyH {
        display: none;
    }
}

/*!sc*/
data-styled.g30[id="Navigation__DesktopList-sc-o5xf0x-1"] {
    content: "hxjVyH,"
}

/*!sc*/
.bXyjJi {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5L6 8L9 5' stroke='%236F6F6F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

/*!sc*/
.bXyjJi.is-open {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 9L8 6L5 9' stroke='%236F6F6F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

/*!sc*/
data-styled.g31[id="Navigation__SubArrow-sc-o5xf0x-2"] {
    content: "bXyjJi,"
}

/*!sc*/
.jYtnqt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

/*!sc*/
.jYtnqt .Navigation__DesktopList-sc-o5xf0x-1 {
    position: fixed;
    z-index: -1;
    right: -11px;
    top: 64px;
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-color: rgba(255, 255, 255, 1);
    opacity: 0;
    -webkit-transition: -webkit-transform .3s, opacity .14s;
    -webkit-transition: transform .3s, opacity .14s;
    transition: transform .3s, opacity .14s;
    -webkit-transform: translateY(-124%);
    -ms-transform: translateY(-124%);
    transform: translateY(-124%);
    pointer-events: none;
}

/*!sc*/
.jYtnqt .Navigation__DesktopList-sc-o5xf0x-1 a:not(.is-current) {
    color: var(--text-04, #8B8B8B);
}

/*!sc*/
.jYtnqt:hover>a {
    font-weight: 700;
}

/*!sc*/
.jYtnqt:hover>.Navigation__DesktopList-sc-o5xf0x-1 {
    z-index: 2;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: -webkit-transform .36s, opacity .34s;
    -webkit-transition: transform .36s, opacity .34s;
    transition: transform .36s, opacity .34s;
    background-color: rgba(255, 255, 255, 1);
}

/*!sc*/
data-styled.g32[id="Navigation__DesktopItem-sc-o5xf0x-3"] {
    content: "jYtnqt,"
}

/*!sc*/
.hxoUnk {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 64px;
    width: 100%;
    padding: 16px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-124%);
    -ms-transform: translateY(-124%);
    transform: translateY(-124%);
    -webkit-transition: -webkit-transform .36s;
    -webkit-transition: transform .36s;
    transition: transform .36s;
    background-color: var(--ui-background);
}

/*!sc*/
data-styled.g33[id="Navigation__NavList-sc-o5xf0x-4"] {
    content: "hxoUnk,"
}

/*!sc*/
.kovyAg .Navigation__NavList-sc-o5xf0x-4 {
    position: static;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

/*!sc*/
.kovyAg .Navigation__NavList-sc-o5xf0x-4 a:not(.is-current) {
    color: var(--text-04, #8B8B8B);
    padding: 12px 10px;
}

/*!sc*/
.kovyAg:hover>a {
    font-weight: 700;
}

/*!sc*/
data-styled.g34[id="Navigation__NavItem-sc-o5xf0x-5"] {
    content: "kovyAg,"
}

/*!sc*/
.hjeiGN {
    display: none;
    margin-right: 8px;
}

/*!sc*/
@media (max-width:768px) {
    .hjeiGN {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

/*!sc*/
.hjeiGN::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    pointer-events: none;
    background-color: transparent;
    -webkit-transition: background .16s .24s;
    transition: background .16s .24s;
}

/*!sc*/
.hjeiGN.is-open .Navigation__NavList-sc-o5xf0x-4 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/*!sc*/
.hjeiGN.is-open::before {
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: background 0s;
    transition: background 0s;
}

/*!sc*/
data-styled.g35[id="Navigation__Mobile-sc-o5xf0x-6"] {
    content: "hjeiGN,"
}

/*!sc*/
.hcujpD {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
}

/*!sc*/
.hcujpD::before,
.hcujpD .Navigation__Bar-sc-o5xf0x-7,
.hcujpD::after {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    margin: 0 auto;
    background-color: #333;
    border-radius: 1px;
    -webkit-transition: all .24s;
    transition: all .24s;
}

/*!sc*/
.hcujpD .Navigation__Bar-sc-o5xf0x-7 {
    margin: 4px auto;
}

/*!sc*/
.hcujpD.is-open::before {
    -webkit-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
}

/*!sc*/
.hcujpD.is-open .Navigation__Bar-sc-o5xf0x-7 {
    opacity: 0;
}

/*!sc*/
.hcujpD.is-open::after {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
}

/*!sc*/
data-styled.g37[id="Navigation__Hamburg-sc-o5xf0x-8"] {
    content: "hcujpD,"
}

/*!sc*/
.fKcdcq {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    pointer-events: none;
    height: 64px;
    padding-left: 24px;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: env(safe-area-inset-right);
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: color 350ms ease 0s, background 350ms ease 0s;
    transition: color 350ms ease 0s, background 350ms ease 0s;
}

/*!sc*/
[data-theme="dark"] .Header__Wrapper-sc-1ytm4f-0 {
    background-color: rgba(23, 23, 23, 0.9);
}

/*!sc*/
.fKcdcq:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--ui-06);
}

/*!sc*/
data-styled.g38[id="Header__Wrapper-sc-1ytm4f-0"] {
    content: "fKcdcq,"
}

/*!sc*/
.cPIdcb {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/*!sc*/
data-styled.g39[id="Header__Left-sc-1ytm4f-1"] {
    content: "cPIdcb,"
}

/*!sc*/
.bQuONR {
    pointer-events: auto;
}

/*!sc*/
data-styled.g40[id="Header__Right-sc-1ytm4f-2"] {
    content: "bQuONR,"
}

/*!sc*/
.jFDdcE {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 0;
}

/*!sc*/
data-styled.g41[id="Header__Branding-sc-1ytm4f-3"] {
    content: "jFDdcE,"
}

/*!sc*/
.iLrnVF {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/*!sc*/
data-styled.g43[id="Main__Wrapper-sc-bu0qth-0"] {
    content: "iLrnVF,"
}

/*!sc*/
.ilLTer {
    min-width: 24px;
    min-height: 24px;
}

/*!sc*/
data-styled.g44[id="Spacer-sc-19972yg-0"] {
    content: "ilLTer,"
}

/*!sc*/
.jXaSnJ {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 12px;
    height: 12px;
    font-size: 12px;
    font-weight: normal;
    line-height: 1;
    color: inherit;
}

/*!sc*/
.cfuKuH {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 12px;
    height: 12px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: inherit;
}

/*!sc*/
data-styled.g45[id="Icon__Wrapper-sc-1vy3ele-0"] {
    content: "jXaSnJ,cfuKuH,"
}

/*!sc*/
.loGBJo {
    position: relative;
    padding: 60px 0;
    border-top: 1px solid var(--ui-06);
    font-size: 14px;
    line-height: 20px;
}

/*!sc*/
data-styled.g46[id="Footer__Wrapper-sc-vbjbll-0"] {
    content: "loGBJo,"
}

/*!sc*/
.bQmtsb {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*!sc*/
data-styled.g47[id="Footer__Top-sc-vbjbll-1"] {
    content: "bQmtsb,"
}

/*!sc*/
.jnPNyL {
    position: relative;
    top: 2px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 8px;
    column-gap: 8px;
}

/*!sc*/
data-styled.g48[id="Footer__SNSList-sc-vbjbll-2"] {
    content: "jnPNyL,"
}

/*!sc*/
.dqqjTJ a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--ui-06);
    border-radius: 50%;
    background-color: var(--ui-background);
}

/*!sc*/
data-styled.g49[id="Footer__SNSItem-sc-vbjbll-3"] {
    content: "dqqjTJ,"
}

/*!sc*/
.eIllvx {
    margin-top: 34px;
    color: var(--text-04);
}

/*!sc*/
data-styled.g50[id="Footer__Details-sc-vbjbll-4"] {
    content: "eIllvx,"
}

/*!sc*/
.cETwId {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--text-02);
}

/*!sc*/
.cETwId::marker {
    content: "";
}

/*!sc*/
.cETwId::-webkit-details-marker {
    display: none;
}

/*!sc*/
data-styled.g51[id="Footer__Summary-sc-vbjbll-5"] {
    content: "cETwId,"
}

/*!sc*/
.iOqjHs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

/*!sc*/
data-styled.g52[id="Footer__DetailList-sc-vbjbll-6"] {
    content: "iOqjHs,"
}

/*!sc*/
.hmnNNi {
    white-space: nowrap;
    color: var(--text-02);
}

/*!sc*/
data-styled.g53[id="Footer__DetailItem-sc-vbjbll-7"] {
    content: "hmnNNi,"
}

/*!sc*/
.jrlcWI {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 18px;
    column-gap: 18px;
    row-gap: 8px;
    margin: 16px 0 34px 0;
}

/*!sc*/
@media (max-width:640px) {
    .jrlcWI {
        margin: 16px 0 30px 0;
    }
}

/*!sc*/
data-styled.g54[id="Footer__ServiceList-sc-vbjbll-8"] {
    content: "jrlcWI,"
}

/*!sc*/
.hLgMjR {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--text-01);
}

/*!sc*/
data-styled.g55[id="Footer__ServiceItem-sc-vbjbll-9"] {
    content: "hLgMjR,"
}

/*!sc*/
.bpploH {
    color: var(--text-02);
}

/*!sc*/
data-styled.g56[id="Footer__Copyright-sc-vbjbll-10"] {
    content: "bpploH,"
}

/*!sc*/
@media (min-width:640px) {
    .XFqli {
        display: none;
    }
}

/*!sc*/
data-styled.g57[id="Footer__MOBILEBR-sc-vbjbll-11"] {
    content: "XFqli,"
}

/*!sc*/
.gTIvjt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

/*!sc*/
data-styled.g58[id="StandardLayout__Wrapper-sc-fekk6l-0"] {
    content: "gTIvjt,"
}

/*!sc*/
.jSjXKM {
    font-size: 20px;
    overflow-wrap: break-word;
    word-break: keep-all;
}

/*!sc*/
@media (max-width:1080px) {
    .jSjXKM {
        font-size: 16px;
    }
}

/*!sc*/
data-styled.g59[id="Paragraph-sc-13icume-0"] {
    content: "jSjXKM,"
}

/*!sc*/
.bCzpo {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-04);
    margin-bottom: 3px;
}

/*!sc*/
@media (max-width:1080px) {
    .bCzpo {
        font-size: 16px;
        margin-bottom: 4px;
    }
}

/*!sc*/
data-styled.g60[id="Subline-sc-8imged-0"] {
    content: "bCzpo,"
}

/*!sc*/
.kFEbfv {
    display: none;
}

/*!sc*/
@media (max-width:640px) {
    .kFEbfv {
        display: block;
    }
}

/*!sc*/
data-styled.g61[id="Featured__MOBILE_BR-sc-1hhzmed-0"] {
    content: "kFEbfv,"
}

/*!sc*/
.cBizul {
    padding-top: 96px;
    padding-bottom: 111px;
}

/*!sc*/
@media (max-width:1080px) {
    .cBizul {
        padding-top: 76px;
        padding-bottom: 60px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .cBizul {
        padding-top: 56px;
        padding-bottom: 60px;
    }
}

/*!sc*/
data-styled.g62[id="Featured__Wrapper-sc-1hhzmed-1"] {
    content: "cBizul,"
}

/*!sc*/
.dXSVyV {
    position: relative;
}

/*!sc*/
.dXSVyV .Paragraph-sc-13icume-0 {
    margin-top: 16px;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-break: keep-all;
}

/*!sc*/
data-styled.g63[id="Featured__Description-sc-1hhzmed-2"] {
    content: "dXSVyV,"
}

/*!sc*/
.llVolu {
    padding-bottom: 140px;
}

/*!sc*/
@media (max-width:1080px) {
    .llVolu {
        padding-bottom: 120px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .llVolu {
        padding-bottom: 80px;
    }
}

/*!sc*/
data-styled.g64[id="cyber__Wrapper-sc-cw7q6i-0"] {
    content: "llVolu,"
}

/*!sc*/
.fENAZW {
    border-top: 1px solid #000;
}

/*!sc*/
data-styled.g65[id="cyber__Reports-sc-cw7q6i-1"] {
    content: "fENAZW,"
}

/*!sc*/
.krdfRR {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 80px;
}

/*!sc*/
@media (max-width:1080px) {
    .krdfRR {
        padding-top: 75px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .krdfRR {
        display: block;
        padding-top: 60px;
    }
}

/*!sc*/
data-styled.g66[id="cyber__Report-sc-cw7q6i-2"] {
    content: "krdfRR,"
}

/*!sc*/
.htEMaw {
    display: block;
    white-space: nowrap;
    padding-right: 11%;
    font-style: normal;
    font-size: 26px;
    line-height: 150%;
    margin-bottom: 20px;
    font-weight: 700;
}

/*!sc*/
@media (max-width:1080px) {
    .htEMaw {
        font-size: 20px;
        line-height: 150%;
    }
}

/*!sc*/
data-styled.g67[id="cyber__Summary-sc-cw7q6i-3"] {
    content: "htEMaw,"
}

/*!sc*/
.dDVnjp {
    font-size: 20px;
    line-height: 32px;
}

/*!sc*/
@media (max-width:1080px) {
    .dDVnjp {
        font-size: 16px;
        line-height: 160%;
    }
}

/*!sc*/
data-styled.g68[id="cyber__Details-sc-cw7q6i-4"] {
    content: "dDVnjp,"
}

/*!sc*/
.kYQPYV {
    padding-left: 20px;
}

/*!sc*/
data-styled.g69[id="cyber__List-sc-cw7q6i-5"] {
    content: "kYQPYV,"
}

/*!sc*/
.bwYYXx {
    position: relative;
}

/*!sc*/
.bwYYXx::before {
    content: "";
    position: absolute;
    top: 12px;
    left: -10px;
    display: block;
    width: 4px;
    height: 4px;
    background-color: var(--text-01);
    border-radius: 50%;
}

/*!sc*/
data-styled.g70[id="cyber__Item-sc-cw7q6i-6"] {
    content: "bwYYXx,"
}

/*!sc*/
.felsc {
    font-size: 18px;
    line-height: 150%;
    color: var(--text-03);
    margin-top: 28px;
}

/*!sc*/
@media (max-width:1080px) {
    .felsc {
        font-size: 14px;
        line-height: 150%;
    }
}

/*!sc*/
data-styled.g71[id="cyber__Warning-sc-cw7q6i-7"] {
    content: "felsc,"
}

/*!sc*/
.jvOsxx {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    gap: 142px;
    padding-top: 72px;
}

/*!sc*/
@media (max-width:1080px) {
    .jvOsxx {
        display: block;
        padding-top: 52px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .jvOsxx {
        padding-top: 60px;
    }
}

/*!sc*/
data-styled.g72[id="cyber__Actions-sc-cw7q6i-8"] {
    content: "jvOsxx,"
}

/*!sc*/
.pMWjs {
    display: block;
    width: 92px;
    height: 92px;
    background-color: #F7F7F7;
    border-radius: 50%;
    padding-bottom: 28px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

/*!sc*/
@media (max-width:1080px) {
    .pMWjs {
        width: 60px;
        height: 60px;
    }
}

/*!sc*/
data-styled.g73[id="cyber__Symbol-sc-cw7q6i-9"] {
    content: "pMWjs,"
}

/*!sc*/
.jWRBh {
    width: 330px;
}

/*!sc*/
.jWRBh .cyber__Symbol-sc-cw7q6i-9 {
    background-image: url("data:image/svg+xml,%3Csvg width='41' height='35' viewBox='0 0 41 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.97656 7.49976H39.9766V26.4998C39.9766 30.3657 36.8426 33.4998 32.9766 33.4998H8.97656C5.11057 33.4998 1.97656 30.3657 1.97656 26.4998V7.49976Z' stroke='%23555555' stroke-width='2'/%3E%3Cpath d='M7.97656 13.5398L21.0164 20.994L34.0561 13.5398' stroke='%23555555' stroke-width='2' strokeLinecap='round'/%3E%3C/svg%3E%0A");
}

/*!sc*/
@media (max-width:1080px) {
    .jWRBh .cyber__Symbol-sc-cw7q6i-9 {
        background-image: url("data:image/svg+xml,%3Csvg width='28' height='22' viewBox='0 0 28 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.23047 3.42343H26.7689V16.1425C26.7689 18.7617 24.6457 20.885 22.0265 20.885H5.97295C3.35375 20.885 1.23047 18.7617 1.23047 16.1425V3.42343Z' stroke='%23555555'/%3E%3Cpath d='M5.37305 8.57581L14.0247 13.4781L22.6763 8.57581' stroke='%23555555' strokeLinecap='round'/%3E%3C/svg%3E%0A");
    }
}

/*!sc*/
@media (max-width:375px) {
    .jWRBh {
        width: 100%;
    }
}

/*!sc*/
data-styled.g74[id="cyber__Post-sc-cw7q6i-10"] {
    content: "jWRBh,"
}

/*!sc*/
.dFNA-Dx {
    width: 330px;
}

/*!sc*/
.dFNA-Dx .cyber__Symbol-sc-cw7q6i-9 {
    background-image: url("data:image/svg+xml,%3Csvg width='43' height='42' viewBox='0 0 43 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.0298 38.5H23.4844C13.8194 38.5 5.98438 30.665 5.98438 21V19.5C5.98438 10.6634 13.1478 3.5 21.9844 3.5V3.5C30.8209 3.5 37.9844 10.6634 37.9844 19.5V31C37.9844 32.933 36.4174 34.5 34.4844 34.5V34.5C32.5514 34.5 30.9844 32.933 30.9844 31V21.5' stroke='%23555555' stroke-width='2'/%3E%3Cpath d='M12.9844 19.5C12.9844 14.5294 17.0138 10.5 21.9844 10.5C26.9549 10.5 30.9844 14.5294 30.9844 19.5V22.5C30.9844 27.4706 26.9549 31.5 21.9844 31.5C17.0138 31.5 12.9844 27.4706 12.9844 22.5V19.5Z' stroke='%23555555' stroke-width='2'/%3E%3C/svg%3E%0A");
}

/*!sc*/
@media (max-width:1080px) {
    .dFNA-Dx {
        padding-top: 56px;
    }

    .dFNA-Dx .cyber__Symbol-sc-cw7q6i-9 {
        background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.5957 24.1957L12.8147 24.2151C6.40509 24.2411 1.19531 19.0523 1.19531 12.6427V11.86C1.19531 5.94336 5.96303 1.13189 11.8794 1.07785V1.07785C17.8728 1.0231 22.7605 5.86644 22.7605 11.86V18.9132C22.7605 20.1739 21.7386 21.1958 20.4779 21.1958V21.1958C19.2173 21.1958 18.1953 20.1739 18.1953 18.9132V12.7176' stroke='%23555555'/%3E%3Cpath d='M6.19531 11.1959C6.19531 7.88215 8.8816 5.19586 12.1953 5.19586C15.509 5.19586 18.1953 7.88215 18.1953 11.1959V13.1959C18.1953 16.5096 15.509 19.1959 12.1953 19.1959C8.8816 19.1959 6.19531 16.5096 6.19531 13.1959V11.1959Z' stroke='%23555555'/%3E%3C/svg%3E%0A");
    }
}

/*!sc*/
@media (max-width:375px) {
    .dFNA-Dx {
        width: 100%;
    }
}

/*!sc*/
data-styled.g75[id="cyber__Mail-sc-cw7q6i-11"] {
    content: "dFNA-Dx,"
}

/*!sc*/
.laIaCi {
    display: block;
    font-size: 26px;
    font-style: normal;
    line-height: 130%;
    padding: 28px 0 8px 0;
    border-top: 1px solid #FFE04B;
    margin-top: 28px;
    font-weight: 700;
}

/*!sc*/
@media (max-width:1080px) {
    .laIaCi {
        font-size: 22px;
        padding: 20px 0 8px 0;
        margin-top: 20px;
    }
}

/*!sc*/
data-styled.g76[id="cyber__Title-sc-cw7q6i-12"] {
    content: "laIaCi,"
}

/*!sc*/
.cLWkKz {
    font-size: 20px;
    line-height: 32px;
}

/*!sc*/
@media (max-width:1080px) {
    .cLWkKz {
        font-size: 16px;
        line-height: 160%;
    }
}

/*!sc*/
data-styled.g77[id="cyber__Paragraph-sc-cw7q6i-13"] {
    content: "cLWkKz,"
}

/*!sc*/
.iOrcfB {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 160px;
    height: 32px;
    background-color: #FFEB60;
    font-size: 12px;
    line-height: 18px;
    margin-top: 12px;
    border-radius: 100px;
}

/*!sc*/
.iOrcfB:hover {
    background-color: #FFE04B;
}

/*!sc*/
data-styled.g78[id="cyber__MailLink-sc-cw7q6i-14"] {
    content: "iOrcfB,"
}

/*!sc*/

:focus-visible {
    outline: 2px auto var(--focus);
    outline-offset: 2px;
}

/*!sc*/
* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/*!sc*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*!sc*/
html,
body {
    height: 100%;
}

/*!sc*/
html {
    overflow-y: scroll;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*!sc*/
body {
    font-family: 'Spoqa Han Sans Neo', -apple-system, system-ui, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    -webkit-letter-spacing: -0.6px;
    -moz-letter-spacing: -0.6px;
    -ms-letter-spacing: -0.6px;
    letter-spacing: -0.6px;
    color: var(--text-01);
    background-color: var(--ui-background);
    -webkit-transition: color 350ms ease 0s, background 350ms ease 0s;
    transition: color 350ms ease 0s, background 350ms ease 0s;
    min-width: 320px;
}

/*!sc*/
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    word-break: keep-all;
    line-height: 1.3125;
}

/*!sc*/
a {
    color: inherit;
    -webkit-text-decoration: none;
    text-decoration: none;
    cursor: pointer;
}

/*!sc*/
button {
    border: 0;
    outline: 0;
    background-color: transparent;
    cursor: pointer;
}

/*!sc*/
img {
    max-width: 100%;
    vertical-align: top;
    object-fit: cover;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

/*!sc*/
input,
button,
textarea,
select {
    font: inherit;
}

/*!sc*/
svg {
    display: block;
}

/*!sc*/
i {
    font-style: normal;
}

/*!sc*/
li {
    list-style: none;
}

/*!sc*/
#root,
#__next {
    isolation: isolate;
}

/*!sc*/
:root {
    --inner-space: 24px;
}

/*!sc*/
:root[data-theme="light"] {
    --ui-background: #fff;
    --ui-01: #fafaf6;
    --ui-02: #f7f7f7;
    --ui-03: #f5f4f3;
    --ui-04: #f6f4ee;
    --ui-05: #ececec;
    --ui-06: #dfdfdf;
    --ui-07: #a7a39a;
    --ui-08: #555;
    --ui-09: #333;
    --ui-10: #242424;
    --ui-up: #fff;
    --ui-up-01: #fff;
    --ui-up-02: #fff;
    --ui-up-03: #fff;
    --ui-up-04: #fff;
    --primary: #ffeb60;
    --primary-press: #ffe04b;
    --secondary: #333;
    --secondary-press: #242424;
    --tertiary: #fff;
    --tertiary-press: #f7f7f7;
    --danger: #df1d1d;
    --danger-press: #bc1a1a;
    --cancel: #c1c1c1;
    --cancel-press: #a5a5a5;
    --success: #0073cb;
    --error: #f05c2e;
    --text-strong: #000;
    --text-01: #242424;
    --text-02: #555;
    --text-03: #6f6f6f;
    --text-04: #8b8b8b;
    --field-readonly: #ececec;
    --placeholder: #c1c1c1;
    --audio: #a451f7;
    --myaudio: #533670;
    --focus: #469fe3;
}

/*!sc*/
:root[data-theme="dark"] {
    --ui-background: #171717;
    --ui-01: #242424;
    --ui-02: #333;
    --ui-03: #3d3d3d;
    --ui-04: #555;
    --ui-05: #6f6f6f;
    --ui-06: #8b8b8b;
    --ui-07: #a5a5a5;
    --ui-08: #c1c1c1;
    --ui-09: #ececec;
    --ui-10: #f5f4f3;
    --ui-up: #242424;
    --ui-up-01: #333;
    --ui-up-02: #3d3d3d;
    --ui-up-03: #555;
    --ui-up-04: #6f6f6f;
    --primary: #fef08c;
    --primary-press: #fff7bf;
    --secondary: #fbfbfb;
    --secondary-press: #fff;
    --tertiary: #171717;
    --tertiary-press: #333;
    --danger: #f5511d;
    --danger-press: #eb683f;
    --cancel: #6f6f6f;
    --cancel-press: #8b8b8b;
    --success: #6ab6f0;
    --error: #ff784d;
    --text-strong: #fff;
    --text-01: #fbfbfb;
    --text-02: #dfdfdf;
    --text-03: #c1c1c1;
    --text-04: #a5a5a5;
    --field-readonly: #333;
    --placeholder: #8b8b8b;
    --audio: #b773fb;
    --myaudio: #6e5784;
    --focus: #81bfe;
}

/*!sc*/
.text-left {
    text-align: left;
}

/*!sc*/
.text-center {
    text-align: center;
}

/*!sc*/
.text-right {
    text-align: right;
}

/*!sc*/
.nowrap {
    white-space: nowrap;
}

/*!sc*/
.keep-all {
    word-break: keep-all;
}

/*!sc*/
.blur {
    -webkit-filter: blur(20px);
    filter: blur(20px);
}

/*!sc*/
.unblur {
    -webkit-animation: unblur 0.3s linear;
    animation: unblur 0.3s linear;
}

/*!sc*/
@-webkit-keyframes unblur {
    from {
        -webkit-filter: blur(20px);
        filter: blur(20px);
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

/*!sc*/
@keyframes unblur {
    from {
        -webkit-filter: blur(20px);
        filter: blur(20px);
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

/*!sc*/
[class^="mds-icon"]::before,
[class*=" mds-icon"]::before {
    font-family: icon;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*!sc*/
.mds-icon--add-post::before {
    content: "\e800";
}

/*!sc*/
.mds-icon--book::before {
    content: "\e801";
}

/*!sc*/
.mds-icon--add-shelf::before {
    content: "\e802";
}

/*!sc*/
.mds-icon--arrow-bottom::before {
    content: "\e803";
}

/*!sc*/
.mds-icon--arrow-left::before {
    content: "\e804";
}

/*!sc*/
.mds-icon--arrow-right::before {
    content: "\e805";
}

/*!sc*/
.mds-icon--arrow-top::before {
    content: "\e806";
}

/*!sc*/
.mds-icon--arrow2-left::before {
    content: "\e807";
}

/*!sc*/
.mds-icon--arrow2-right::before {
    content: "\e808";
}

/*!sc*/
.mds-icon--book-open::before {
    content: "\e809";
}

/*!sc*/
.mds-icon--book-plus::before {
    content: "\e80a";
}

/*!sc*/
.mds-icon--books-arrow::before {
    content: "\e80b";
}

/*!sc*/
.mds-icon--books::before {
    content: "\e80c";
}

/*!sc*/
.mds-icon--camera::before {
    content: "\e80d";
}

/*!sc*/
.mds-icon--clap-24-2::before {
    content: "\e80e";
}

/*!sc*/
.mds-icon--comment::before {
    content: "\e80f";
}

/*!sc*/
.mds-icon--crown::before {
    content: "\e810";
}

/*!sc*/
.mds-icon--delivering::before {
    content: "\e811";
}

/*!sc*/
.mds-icon--delivery-done::before {
    content: "\e812";
}

/*!sc*/
.mds-icon--delivery-exchange::before {
    content: "\e813";
}

/*!sc*/
.mds-icon--delivery-hand::before {
    content: "\e814";
}

/*!sc*/
.mds-icon--delivery-put::before {
    content: "\e815";
}

/*!sc*/
.mds-icon--delivery-refund::before {
    content: "\e816";
}

/*!sc*/
.mds-icon--download-fail::before {
    content: "\e817";
}

/*!sc*/
.mds-icon--download-success::before {
    content: "\e818";
}

/*!sc*/
.mds-icon--download::before {
    content: "\e819";
}

/*!sc*/
.mds-icon--downloaded-indesktop::before {
    content: "\e81a";
}

/*!sc*/
.mds-icon--filter::before {
    content: "\e81b";
}

/*!sc*/
.mds-icon--fullscreen-end::before {
    content: "\e81c";
}

/*!sc*/
.mds-icon--fullscreen-start::before {
    content: "\e81d";
}

/*!sc*/
.mds-icon--alert-filled::before {
    content: "\e81e";
}

/*!sc*/
.mds-icon--headphone::before {
    content: "\e81f";
}

/*!sc*/
.mds-icon--heart-1::before {
    content: "\e820";
}

/*!sc*/
.mds-icon--heart::before {
    content: "\e821";
}

/*!sc*/
.mds-icon--highlight::before {
    content: "\e822";
}

/*!sc*/
.mds-icon--check::before {
    content: "\e823";
}

/*!sc*/
.mds-icon--minus::before {
    content: "\e824";
}

/*!sc*/
.mds-icon--plus::before {
    content: "\e825";
}

/*!sc*/
.mds-icon--x::before {
    content: "\e826";
}

/*!sc*/
.mds-icon--setting::before {
    content: "\e827";
}

/*!sc*/
.mds-icon--import::before {
    content: "\e828";
}

/*!sc*/
.mds-icon--link::before {
    content: "\e829";
}

/*!sc*/
.mds-icon--list::before {
    content: "\e82a";
}

/*!sc*/
.mds-icon--lock::before {
    content: "\e82b";
}

/*!sc*/
.mds-icon--down-filled::before {
    content: "\e82c";
}

/*!sc*/
.mds-icon--mov::before {
    content: "\e82d";
}

/*!sc*/
.mds-icon--pay-autorenew::before {
    content: "\e82e";
}

/*!sc*/
.mds-icon--pay-cancel::before {
    content: "\e82f";
}

/*!sc*/
.mds-icon--pay-cancle-reservate::before {
    content: "\e830";
}

/*!sc*/
.mds-icon--pay-done::before {
    content: "\e831";
}

/*!sc*/
.mds-icon--pen::before {
    content: "\e832";
}

/*!sc*/
.mds-icon--picture::before {
    content: "\e833";
}

/*!sc*/
.mds-icon--post::before {
    content: "\e834";
}

/*!sc*/
.mds-icon--profile::before {
    content: "\e835";
}

/*!sc*/
.mds-icon--refresh::before {
    content: "\e836";
}

/*!sc*/
.mds-icon--report::before {
    content: "\e837";
}

/*!sc*/
.mds-icon--review::before {
    content: "\e838";
}

/*!sc*/
.mds-icon--routine::before {
    content: "\e839";
}

/*!sc*/
.mds-icon--searchbar::before {
    content: "\e83a";
}

/*!sc*/
.mds-icon--share::before {
    content: "\e83b";
}

/*!sc*/
.mds-icon--shelf::before {
    content: "\e83c";
}

/*!sc*/
.mds-icon--siren::before {
    content: "\e83d";
}

/*!sc*/
.mds-icon--sound-mute::before {
    content: "\e83e";
}

/*!sc*/
.mds-icon--sound-volume::before {
    content: "\e83f";
}

/*!sc*/
.mds-icon--sound::before {
    content: "\e840";
}

/*!sc*/
.mds-icon--star::before {
    content: "\e841";
}

/*!sc*/
.mds-icon--statistics-book::before {
    content: "\e842";
}

/*!sc*/
.mds-icon--up-filled::before {
    content: "\e843";
}

/*!sc*/
.mds-icon--statistics-time::before {
    content: "\e844";
}

/*!sc*/
.mds-icon--thumbs-down::before {
    content: "\e846";
}

/*!sc*/
.mds-icon--thumbs-up::before {
    content: "\e847";
}

/*!sc*/
.mds-icon--trash::before {
    content: "\e848";
}

/*!sc*/
.mds-icon--trophy::before {
    content: "\e849";
}

/*!sc*/
.mds-icon--unlock::before {
    content: "\e84a";
}

/*!sc*/
.mds-icon--video::before {
    content: "\e84b";
}

/*!sc*/
.mds-icon--viewer-list::before {
    content: "\e84c";
}

/*!sc*/
.mds-icon--more-24-1::before {
    content: "\e84d";
}

/*!sc*/
.mds-icon--input-delete::before {
    content: "\e84e";
}

/*!sc*/
.mds-icon--statistics-routine::before {
    content: "\e850";
}

/*!sc*/
.mds-icon--info::before {
    content: "\e851";
}

/*!sc*/
.mds-icon--question-mark::before {
    content: "\e852";
}

/*!sc*/
.mds-icon--text-24-1::before {
    content: "\e853";
}

/*!sc*/
.mds-icon--gnb_search::before {
    content: "\e854";
}

/*!sc*/
.mds-icon--sync-2::before {
    content: "\e855";
}

/*!sc*/
.mds-icon--alarm-2::before {
    content: "\e856";
}

/*!sc*/
data-styled.g1[id="sc-global-llMsfu1"] {
    content: "sc-global-llMsfu1,"
}

/*!sc*/
.yexVU {
    -webkit-text-decoration: none;
    text-decoration: none;
}

/*!sc*/
data-styled.g2[id="Link__InternalLink-sc-gpdhih-0"] {
    content: "yexVU,"
}

/*!sc*/
.eArUAj {
    -webkit-text-decoration: none;
    text-decoration: none;
}

/*!sc*/
data-styled.g3[id="Link__ExternalLink-sc-gpdhih-1"] {
    content: "eArUAj,"
}

/*!sc*/
.dfDrXB {
    max-width: 1204px;
    padding: 0 var(--inner-space);
    padding-left: max(var(--inner-space), env(safe-area-inset-left));
    padding-right: max(var(--inner-space), env(safe-area-inset-right));
    margin: 0 auto;
}

/*!sc*/
data-styled.g9[id="Inner-sc-zoh9d9-0"] {
    content: "dfDrXB,"
}

/*!sc*/
.dGRSHG {
    overflow: hidden;
}

/*!sc*/
data-styled.g10[id="Tabbar__Wrapper-sc-ae2mxl-0"] {
    content: "dGRSHG,"
}

/*!sc*/
.gQRKfw {
    overflow-x: auto;
    margin: 0 -24px;
}

/*!sc*/
.gQRKfw.touch-device {
    -ms-overflow-style: none;
    -webkit-scrollbar-width: none;
    -moz-scrollbar-width: none;
    -ms-scrollbar-width: none;
    scrollbar-width: none;
}

/*!sc*/
.gQRKfw.touch-device::-webkit-scrollbar {
    display: none;
}

/*!sc*/
data-styled.g11[id="Tabbar__Scrolling-sc-ae2mxl-1"] {
    content: "gQRKfw,"
}

/*!sc*/
.ibZxew {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 24px;
}

/*!sc*/
@media (max-width:1080px) {
    .ibZxew {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        gap: 52px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .ibZxew {
        gap: 32px;
    }
}

/*!sc*/
data-styled.g12[id="Tabbar__Tabs-sc-ae2mxl-2"] {
    content: "ibZxew,"
}

/*!sc*/
.fdqAsa {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 92px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    white-space: nowrap;
    color: var(--text-04);
}

/*!sc*/
.fdqAsa.is-active {
    color: var(--text-01);
}

/*!sc*/
.fdqAsa.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
}

/*!sc*/
@media (max-width:1080px) {
    .fdqAsa {
        font-size: 20px;
        line-height: 28px;
        height: 52px;
    }
}

/*!sc*/
@media (max-width:640px) {}

/*!sc*/
data-styled.g13[id="Tabbar__Tab-sc-ae2mxl-3"] {
    content: "fdqAsa,"
}

/*!sc*/
.pkkIO {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 111px;
    padding-bottom: 140px;
}

/*!sc*/
@media (max-width:1080px) {
    .pkkIO {
        padding-top: 72px;
        padding-bottom: 100px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .pkkIO {
        padding-top: 36px;
        padding-bottom: 80px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

/*!sc*/
data-styled.g14[id="Tabbar__Description-sc-ae2mxl-4"] {
    content: "pkkIO,"
}

/*!sc*/
.fsroXp {
    width: 28.54%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 24px;
}

/*!sc*/
@media (max-width:640px) {
    .fsroXp {
        width: 100%;
    }
}

/*!sc*/
data-styled.g15[id="Tabbar__Left-sc-ae2mxl-5"] {
    content: "fsroXp,"
}

/*!sc*/
.hcTTxQ {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/*!sc*/
data-styled.g16[id="Tabbar__Right-sc-ae2mxl-6"] {
    content: "hcTTxQ,"
}

/*!sc*/
.keGCDi {
    display: block;
    font-size: 26px;
    line-height: 130%;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 20px;
}

/*!sc*/
@media (max-width:1080px) {
    .keGCDi {
        font-size: 22px;
        margin-bottom: 24px;
    }
}

/*!sc*/
data-styled.g17[id="Tabbar__Title-sc-ae2mxl-7"] {
    content: "keGCDi,"
}

/*!sc*/
.wqiCo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #FFEB53;
}

/*!sc*/
@media (max-width:1080px) {
    .wqiCo {
        width: 140px;
        height: 140px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .wqiCo {
        width: 80px;
        height: 80px;
        margin: 0 0 24px;
    }

    .wqiCo svg {
        -webkit-transform: scale(0.56);
        -ms-transform: scale(0.56);
        transform: scale(0.56);
    }
}

/*!sc*/
data-styled.g19[id="Tabbar__Icon-sc-ae2mxl-9"] {
    content: "wqiCo,"
}

/*!sc*/
.eyIdnE {
    font-size: 20px;
    line-height: 32px;
    word-break: keep-all;
}

/*!sc*/
@media (max-width:1080px) {
    .eyIdnE {
        font-size: 16px;
        line-height: 160%;
    }
}

/*!sc*/
data-styled.g22[id="Tabbar__Item-sc-ae2mxl-12"] {
    content: "eyIdnE,"
}

/*!sc*/
.lfPqUZ {
    font-size: 44px;
}

/*!sc*/
@media (max-width:1080px) {
    .lfPqUZ {
        font-size: 32px;
    }
}

/*!sc*/
data-styled.g23[id="Heading__H1-sc-1q2uxxu-0"] {
    content: "lfPqUZ,"
}

/*!sc*/
.doPyMX {
    font-size: 44px;
}

/*!sc*/
@media (max-width:1080px) {
    .doPyMX {
        font-size: 32px;
    }
}

/*!sc*/
data-styled.g24[id="Heading__H2-sc-1q2uxxu-1"] {
    content: "doPyMX,"
}

/*!sc*/
.hBzUzq {
    font-size: 20px;
    line-height: 28px;
}

/*!sc*/
data-styled.g26[id="Heading__H4-sc-1q2uxxu-3"] {
    content: "hBzUzq,"
}

/*!sc*/
.jcVzmJ {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    -webkit-clip: rect(0, 0, 0, 0);
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/*!sc*/
data-styled.g27[id="SrOnly-sc-1w36qd2-0"] {
    content: "jcVzmJ,"
}

/*!sc*/
.ixxpYp {
    display: block;
    padding: 10px 24px;
    color: var(--text-01);
    text-align: center;
}

/*!sc*/
@media (max-width:768px) {
    .ixxpYp {
        padding: 16px 10px;
    }
}

/*!sc*/
.ixxpYp::before {
    content: attr(data-title);
    display: block;
    height: 0px;
    font-weight: 700;
    overflow: hidden;
    visibility: hidden;
}

/*!sc*/
.ixxpYp:hover,
.ixxpYp.is-current {
    font-weight: 700;
    color: var(--text-01) !important;
}

/*!sc*/
.ixxpYp:hover+ul,
.ixxpYp.is-current+ul {
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

/*!sc*/
data-styled.g28[id="Navlink__LinkStyled-sc-1ub27h3-0"] {
    content: "ixxpYp,"
}

/*!sc*/
.hxjVyH {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    margin-right: 11px;
}

/*!sc*/
@media (max-width:768px) {
    .hxjVyH {
        display: none;
    }
}

/*!sc*/
data-styled.g30[id="Navigation__DesktopList-sc-o5xf0x-1"] {
    content: "hxjVyH,"
}

/*!sc*/
.bXyjJi {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5L6 8L9 5' stroke='%236F6F6F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

/*!sc*/
.bXyjJi.is-open {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 9L8 6L5 9' stroke='%236F6F6F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

/*!sc*/
data-styled.g31[id="Navigation__SubArrow-sc-o5xf0x-2"] {
    content: "bXyjJi,"
}

/*!sc*/
.jYtnqt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

/*!sc*/
.jYtnqt .Navigation__DesktopList-sc-o5xf0x-1 {
    position: fixed;
    z-index: -1;
    right: -11px;
    top: 64px;
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-color: rgba(255, 255, 255, 1);
    opacity: 0;
    -webkit-transition: -webkit-transform .3s, opacity .14s;
    -webkit-transition: transform .3s, opacity .14s;
    transition: transform .3s, opacity .14s;
    -webkit-transform: translateY(-124%);
    -ms-transform: translateY(-124%);
    transform: translateY(-124%);
    pointer-events: none;
}

/*!sc*/
.jYtnqt .Navigation__DesktopList-sc-o5xf0x-1 a:not(.is-current) {
    color: var(--text-04, #8B8B8B);
}

/*!sc*/
.jYtnqt:hover>a {
    font-weight: 700;
}

/*!sc*/
.jYtnqt:hover>.Navigation__DesktopList-sc-o5xf0x-1 {
    z-index: 2;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: -webkit-transform .36s, opacity .34s;
    -webkit-transition: transform .36s, opacity .34s;
    transition: transform .36s, opacity .34s;
    background-color: rgba(255, 255, 255, 1);
}

/*!sc*/
data-styled.g32[id="Navigation__DesktopItem-sc-o5xf0x-3"] {
    content: "jYtnqt,"
}

/*!sc*/
.hxoUnk {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 64px;
    width: 100%;
    padding: 16px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-124%);
    -ms-transform: translateY(-124%);
    transform: translateY(-124%);
    -webkit-transition: -webkit-transform .36s;
    -webkit-transition: transform .36s;
    transition: transform .36s;
    background-color: var(--ui-background);
}

/*!sc*/
data-styled.g33[id="Navigation__NavList-sc-o5xf0x-4"] {
    content: "hxoUnk,"
}

/*!sc*/
.kovyAg .Navigation__NavList-sc-o5xf0x-4 {
    position: static;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

/*!sc*/
.kovyAg .Navigation__NavList-sc-o5xf0x-4 a:not(.is-current) {
    color: var(--text-04, #8B8B8B);
    padding: 12px 10px;
}

/*!sc*/
.kovyAg:hover>a {
    font-weight: 700;
}

/*!sc*/
data-styled.g34[id="Navigation__NavItem-sc-o5xf0x-5"] {
    content: "kovyAg,"
}

/*!sc*/
.hjeiGN {
    display: none;
    margin-right: 8px;
}

/*!sc*/
@media (max-width:768px) {
    .hjeiGN {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

/*!sc*/
.hjeiGN::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    pointer-events: none;
    background-color: transparent;
    -webkit-transition: background .16s .24s;
    transition: background .16s .24s;
}

/*!sc*/
.hjeiGN.is-open .Navigation__NavList-sc-o5xf0x-4 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/*!sc*/
.hjeiGN.is-open::before {
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: background 0s;
    transition: background 0s;
}

/*!sc*/
data-styled.g35[id="Navigation__Mobile-sc-o5xf0x-6"] {
    content: "hjeiGN,"
}

/*!sc*/
.hcujpD {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
}

/*!sc*/
.hcujpD::before,
.hcujpD .Navigation__Bar-sc-o5xf0x-7,
.hcujpD::after {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    margin: 0 auto;
    background-color: #333;
    border-radius: 1px;
    -webkit-transition: all .24s;
    transition: all .24s;
}

/*!sc*/
.hcujpD .Navigation__Bar-sc-o5xf0x-7 {
    margin: 4px auto;
}

/*!sc*/
.hcujpD.is-open::before {
    -webkit-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
}

/*!sc*/
.hcujpD.is-open .Navigation__Bar-sc-o5xf0x-7 {
    opacity: 0;
}

/*!sc*/
.hcujpD.is-open::after {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
}

/*!sc*/
data-styled.g37[id="Navigation__Hamburg-sc-o5xf0x-8"] {
    content: "hcujpD,"
}

/*!sc*/
.fKcdcq {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    pointer-events: none;
    height: 64px;
    padding-left: 24px;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: env(safe-area-inset-right);
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: color 350ms ease 0s, background 350ms ease 0s;
    transition: color 350ms ease 0s, background 350ms ease 0s;
}

/*!sc*/
[data-theme="dark"] .Header__Wrapper-sc-1ytm4f-0 {
    background-color: rgba(23, 23, 23, 0.9);
}

/*!sc*/
.fKcdcq:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--ui-06);
}

/*!sc*/
data-styled.g38[id="Header__Wrapper-sc-1ytm4f-0"] {
    content: "fKcdcq,"
}

/*!sc*/
.cPIdcb {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/*!sc*/
data-styled.g39[id="Header__Left-sc-1ytm4f-1"] {
    content: "cPIdcb,"
}

/*!sc*/
.bQuONR {
    pointer-events: auto;
}

/*!sc*/
data-styled.g40[id="Header__Right-sc-1ytm4f-2"] {
    content: "bQuONR,"
}

/*!sc*/
.jFDdcE {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 0;
}

/*!sc*/
data-styled.g41[id="Header__Branding-sc-1ytm4f-3"] {
    content: "jFDdcE,"
}

/*!sc*/
.iLrnVF {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/*!sc*/
data-styled.g43[id="Main__Wrapper-sc-bu0qth-0"] {
    content: "iLrnVF,"
}

/*!sc*/
.ilLTer {
    min-width: 24px;
    min-height: 24px;
}

/*!sc*/
data-styled.g44[id="Spacer-sc-19972yg-0"] {
    content: "ilLTer,"
}

/*!sc*/
.jXaSnJ {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 12px;
    height: 12px;
    font-size: 12px;
    font-weight: normal;
    line-height: 1;
    color: inherit;
}

/*!sc*/
.cfuKuH {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 12px;
    height: 12px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: inherit;
}

/*!sc*/
data-styled.g45[id="Icon__Wrapper-sc-1vy3ele-0"] {
    content: "jXaSnJ,cfuKuH,"
}

/*!sc*/
.loGBJo {
    position: relative;
    padding: 60px 0;
    border-top: 1px solid var(--ui-06);
    font-size: 14px;
    line-height: 20px;
}

/*!sc*/
data-styled.g46[id="Footer__Wrapper-sc-vbjbll-0"] {
    content: "loGBJo,"
}

/*!sc*/
.bQmtsb {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*!sc*/
data-styled.g47[id="Footer__Top-sc-vbjbll-1"] {
    content: "bQmtsb,"
}

/*!sc*/
.jnPNyL {
    position: relative;
    top: 2px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 8px;
    column-gap: 8px;
}

/*!sc*/
data-styled.g48[id="Footer__SNSList-sc-vbjbll-2"] {
    content: "jnPNyL,"
}

/*!sc*/
.dqqjTJ a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--ui-06);
    border-radius: 50%;
    background-color: var(--ui-background);
}

/*!sc*/
data-styled.g49[id="Footer__SNSItem-sc-vbjbll-3"] {
    content: "dqqjTJ,"
}

/*!sc*/
.eIllvx {
    margin-top: 34px;
    color: var(--text-04);
}

/*!sc*/
data-styled.g50[id="Footer__Details-sc-vbjbll-4"] {
    content: "eIllvx,"
}

/*!sc*/
.cETwId {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--text-02);
}

/*!sc*/
.cETwId::marker {
    content: "";
}

/*!sc*/
.cETwId::-webkit-details-marker {
    display: none;
}

/*!sc*/
data-styled.g51[id="Footer__Summary-sc-vbjbll-5"] {
    content: "cETwId,"
}

/*!sc*/
.iOqjHs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

/*!sc*/
data-styled.g52[id="Footer__DetailList-sc-vbjbll-6"] {
    content: "iOqjHs,"
}

/*!sc*/
.hmnNNi {
    white-space: nowrap;
    color: var(--text-02);
}

/*!sc*/
data-styled.g53[id="Footer__DetailItem-sc-vbjbll-7"] {
    content: "hmnNNi,"
}

/*!sc*/
.jrlcWI {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 18px;
    column-gap: 18px;
    row-gap: 8px;
    margin: 16px 0 34px 0;
}

/*!sc*/
@media (max-width:640px) {
    .jrlcWI {
        margin: 16px 0 30px 0;
    }
}

/*!sc*/
data-styled.g54[id="Footer__ServiceList-sc-vbjbll-8"] {
    content: "jrlcWI,"
}

/*!sc*/
.hLgMjR {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--text-01);
}

/*!sc*/
data-styled.g55[id="Footer__ServiceItem-sc-vbjbll-9"] {
    content: "hLgMjR,"
}

/*!sc*/
.bpploH {
    color: var(--text-02);
}

/*!sc*/
data-styled.g56[id="Footer__Copyright-sc-vbjbll-10"] {
    content: "bpploH,"
}

/*!sc*/
@media (min-width:640px) {
    .XFqli {
        display: none;
    }
}

/*!sc*/
data-styled.g57[id="Footer__MOBILEBR-sc-vbjbll-11"] {
    content: "XFqli,"
}

/*!sc*/
.gTIvjt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

/*!sc*/
data-styled.g58[id="StandardLayout__Wrapper-sc-fekk6l-0"] {
    content: "gTIvjt,"
}

/*!sc*/
.jSjXKM {
    font-size: 20px;
    overflow-wrap: break-word;
    word-break: keep-all;
}

/*!sc*/
@media (max-width:1080px) {
    .jSjXKM {
        font-size: 16px;
    }
}

/*!sc*/
data-styled.g59[id="Paragraph-sc-13icume-0"] {
    content: "jSjXKM,"
}

/*!sc*/
.bCzpo {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-04);
    margin-bottom: 3px;
}

/*!sc*/
@media (max-width:1080px) {
    .bCzpo {
        font-size: 16px;
        margin-bottom: 4px;
    }
}

/*!sc*/
data-styled.g60[id="Subline-sc-8imged-0"] {
    content: "bCzpo,"
}

/*!sc*/
.kFEbfv {
    display: none;
}

/*!sc*/
@media (max-width:640px) {
    .kFEbfv {
        display: block;
    }
}

/*!sc*/
data-styled.g61[id="Featured__MOBILE_BR-sc-1hhzmed-0"] {
    content: "kFEbfv,"
}

/*!sc*/
.cBizul {
    padding-top: 96px;
    padding-bottom: 111px;
}

/*!sc*/
@media (max-width:1080px) {
    .cBizul {
        padding-top: 76px;
        padding-bottom: 60px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .cBizul {
        padding-top: 56px;
        padding-bottom: 60px;
    }
}

/*!sc*/
data-styled.g62[id="Featured__Wrapper-sc-1hhzmed-1"] {
    content: "cBizul,"
}

/*!sc*/
.dXSVyV {
    position: relative;
}

/*!sc*/
.dXSVyV .Paragraph-sc-13icume-0 {
    margin-top: 16px;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-break: keep-all;
}

/*!sc*/
data-styled.g63[id="Featured__Description-sc-1hhzmed-2"] {
    content: "dXSVyV,"
}

/*!sc*/
.blIfGu {
    border-top: 1px solid #A0A0A0;
    border-bottom: 1px solid #A0A0A0;
    margin-top: -1px;
}

/*!sc*/
data-styled.g97[id="Accordion__Wrapper-sc-1tqkz2w-0"] {
    content: "blIfGu,"
}

/*!sc*/
.gAyEXe {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    padding: 41px 90px 38px 0;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.792993C-0.0976311 1.18352 -0.0976311 1.81668 0.292893 2.20721L7.29289 9.20721C7.68342 9.59773 8.31658 9.59773 8.70711 9.20721L15.7071 2.20721C16.0976 1.81668 16.0976 1.18352 15.7071 0.792993C15.3166 0.402469 14.6834 0.402469 14.2929 0.792993L8 7.08589L1.70711 0.792992C1.31658 0.402468 0.683417 0.402468 0.292893 0.792993Z' fill='%236F6F6F'/%3E%3C/svg%3E");
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*!sc*/
.is-expanded .Accordion__Summary-sc-1tqkz2w-1 {
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='10' viewBox='0 0 17 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.7032 9.20711C17.0937 8.81658 17.0937 8.18342 16.7032 7.79289L9.7032 0.792894C9.31268 0.402369 8.67951 0.402369 8.28899 0.792894L1.28899 7.79289C0.898464 8.18342 0.898464 8.81658 1.28899 9.20711C1.67951 9.59763 2.31268 9.59763 2.7032 9.20711L8.99609 2.91421L15.289 9.20711C15.6795 9.59763 16.3127 9.59763 16.7032 9.20711Z' fill='%236F6F6F'/%3E%3C/svg%3E%0A");
}

/*!sc*/
@media (max-width:1080px) {
    .gAyEXe {
        padding: 22px 32px 22px 0;
        font-size: 16px;
        line-height: 130%;
    }
}

/*!sc*/
data-styled.g98[id="Accordion__Summary-sc-1tqkz2w-1"] {
    content: "gAyEXe,"
}

/*!sc*/
.eXjFbB {
    display: block;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: var(--text-03);
    min-width: 118px;
}

/*!sc*/
@media (max-width:1080px) {
    .eXjFbB {
        font-size: 16px;
        line-height: 32px;
        min-width: 54px;
    }
}

/*!sc*/
data-styled.g99[id="Accordion__Subline-sc-1tqkz2w-2"] {
    content: "eXjFbB,"
}

/*!sc*/
.dZgraL {
    display: none;
    padding: 41px 86px 41px 118px;
    border-top: 1px solid #ECECEC;
    font-size: 20px;
    line-height: 32px;
}

/*!sc*/
.is-expanded .Accordion__Details-sc-1tqkz2w-3 {
    display: block;
}

/*!sc*/
@media (max-width:1080px) {
    .dZgraL {
        padding: 22px 52px 22px 54px;
        font-size: 16px;
        line-height: 160%;
    }
}

/*!sc*/
@media (max-width:640px) {
    .dZgraL {
        padding: 22px 0;
    }
}

/*!sc*/
data-styled.g100[id="Accordion__Details-sc-1tqkz2w-3"] {
    content: "dZgraL,"
}

/*!sc*/
.OvYWH {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 130%;
    padding-top: 72px;
    padding-bottom: 41px;
    word-break: keep-all;
}

/*!sc*/
@media (max-width:1080px) {
    .OvYWH {
        font-size: 20px;
        line-height: 130%;
        padding-top: 52px;
        padding-bottom: 22px;
    }
}

/*!sc*/
data-styled.g101[id="guideline__Title-sc-6korc5-0"] {
    content: "OvYWH,"
}

/*!sc*/
.eszQYL {
    padding-bottom: 140px;
}

/*!sc*/
@media (max-width:1080px) {
    .eszQYL {
        padding-bottom: 120px;
    }
}

/*!sc*/
@media (max-width:640px) {
    .eszQYL {
        padding-bottom: 80px;
    }
}

/*!sc*/
.eszQYL .guideline__Title-sc-6korc5-0:first-of-type {
    padding-top: 80px;
    border-top: 1px solid #000;
}

/*!sc*/
data-styled.g102[id="guideline__Wrapper-sc-6korc5-1"] {
    content: "eszQYL,"
}

/*!sc*/