@charset "UTF-8";

@font-face {
    font-family: "NotoSansKR";
    font-style: light;
    font-weight: 300;
    src: url("../fonts/NotoSansKR-Light.woff") format("woff"), url("../fonts/NotoSansKR-Light.otf") format("openType");
}

@font-face {
    font-family: "NotoSansKR";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/NotoSansKR-Regular.woff") format("woff"), url("../fonts/NotoSansKR-Regular.otf") format("openType");
}

@font-face {
    font-family: "NotoSansKR";
    font-style: medium;
    font-weight: 500;
    src: url("../fonts/NotoSansKR-Medium.woff") format("woff"), url("../fonts/NotoSansKR-Medium.otf") format("openType");
}

@font-face {
    font-family: "NotoSansKR";
    font-style: bold;
    font-weight: 700;
    src: url("../fonts/NotoSansKR-Bold.woff") format("woff"), url("../fonts/NotoSansKR-Bold.otf") format("openType");
}

@font-face {
    font-family: "Pretendard";
    font-weight: 100;
    src: url("../fonts/Pretendard-Thin.woff") format("woff");
}

@font-face {
    font-family: "Pretendard";
    font-weight: 300;
    src: url("../fonts/Pretendard-Light.woff") format("woff");
}

@font-face {
    font-family: "Pretendard";
    font-weight: 400;
    src: url("../fonts/Pretendard-Regular.woff") format("woff");
}

@font-face {
    font-family: "Pretendard";
    font-weight: 500;
    src: url("../fonts/Pretendard-Medium.woff") format("woff");
}

@font-face {
    font-family: "Pretendard";
    font-weight: 600;
    src: url("../fonts/Pretendard-SemiBold.woff") format("woff");
}

@font-face {
    font-family: "Pretendard";
    font-weight: 700;
    src: url("../fonts/Pretendard-Bold.woff") format("woff");
}

@font-face {
    font-family: "Pretendard";
    font-weight: 800;
    src: url("../fonts/Pretendard-ExtraBold.woff") format("woff");
}

@font-face {
    font-family: "Pretendard";
    font-weight: 900;
    src: url("../fonts/Pretendard-Black.woff") format("woff");
}

@font-face {
    font-family: "GmarketSans";
    font-weight: 300;
    src: url("../fonts/GmarketSansLight.woff") format("woff");
}

@font-face {
    font-family: "GmarketSans";
    font-weight: 500;
    src: url("../fonts/GmarketSansMedium.woff") format("woff");
}

@font-face {
    font-family: "GmarketSans";
    font-weight: 700;
    src: url("../fonts/GmarketSansBold.woff") format("woff");
}
/* reset */
/* 최대 화면 크기 설정 */
/* 전역 스위치: 딱 1번만 선언 */
/* 
모바일에서만 vw를 사용할 경우 vw함수만 사용해도 무방
pc와 모바일 둘다 vw를 사용할경우 pc에서는 vw함수를
모바일에서는 vw-mo함수를 사용
*/
/* rem 설정을 위한 폰트 */
html {
    font-size: calc(100vw / 720 * 20);
}

@media (min-width: 721px) {
    html {
        font-size: 20px;
    }
}

@media (max-width: 720px) {
    html {
        font-size: calc(100vw / 720 * 20);
    }
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
input,
textarea,
button,
select,
pre {
    -webkit-text-size-adjust: none;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #000;
    font-family: "Pretendard", arial, sans-serif, Arial, dotum, "돋움";
    font-size: 20px;
}

/*-webkit-text-size-adjust: none(글자크기 자동조정 방지) , auto (화면의 폭에 맞추어서 텍스트의 크기를 자동으로 조절 , 100%(폰트크기를 지정된사이즈로 변경);*/
html,
body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
table,
tr,
td,
dl,
dt,
dd,
a,
img,
input,
button,
select,
textarea {
    margin: 0px;
    padding: 0px;
    list-style: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input {
    -webkit-border-radius: 0;
}

header,
hgroup,
article,
nav,
footer,
figure,
figcaption,
canvas,
section,
main,
menu {
    display: block;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #000;
}

img,
fieldset,
iframe {
    border: 0 none;
}

fieldset {
    width: auto;
    min-width: 0;
    max-width: none;
    border: 0;
    margin: 0;
    padding: 0;
}

legend {
    position: absolute !important;
    display: block;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: -1px !important;
    border: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
}

    legend.focusable:active, legend.focusable:focus {
        position: static;
        height: auto;
        width: auto;
        margin: 0;
        clip: auto;
        overflow: visible;
    }

img {
    max-width: 100%;
    border: 0px;
    vertical-align: top;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption {
    display: none;
}

button {
    cursor: pointer;
    border: 0;
    background-color: transparent;
}

/* reset */
.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #ddd;
    text-align: center;
    cursor: pointer;
}

    .btn.small {
        height: 1.75rem;
        padding: 0 0.5rem;
        font-size: 0.65rem;
    }

    .btn.medium {
        height: 2.8rem;
        padding: 0 0.65rem;
        font-size: 0.75rem;
    }

    .btn.large {
        height: 3.4rem;
        padding: 0 0.8rem;
        font-weight: 400;
        font-size: 1rem;
    }

    .btn.xlarge {
        height: 4.4rem;
        padding: 0 1rem;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .btn.primary {
        background-color: #2546cd;
        border-color: #2546cd;
        color: #fff;
    }

    .btn.slightly {
        background-color: #666;
        border-color: #666;
        color: #fff;
    }

    .btn.lightSlightly {
        background-color: #989898;
        border-color: #989898;
        color: #fff;
    }

    .btn.dark {
        background-color: #222;
        border-color: #222;
        color: #fff;
    }

    .btn.danger {
        background-color: #e0012b;
        border-color: #e0012b;
        color: #fff;
    }

    .btn.warning {
        background-color: #ff9582;
        border-color: #ff9582;
        color: #fff;
    }

    .btn.round.small {
        border-radius: 50px;
    }

    .btn.round.medium {
        border-radius: 40px;
    }

    .btn.round.large {
        border-radius: 30px;
    }

    .btn.round.xlarge {
        border-radius: 30px;
    }

    .btn.border {
        border: 1px solid #222;
    }

        .btn.border.primary {
            color: #2546cd;
            border-color: #2546cd;
            background-color: transparent;
        }

        .btn.border.slightly {
            border-color: #888;
            color: #888;
            background-color: transparent;
        }

        .btn.border.lightSlightly {
            border-color: #a1a1a1;
            color: #a1a1a1;
            background-color: transparent;
        }

        .btn.border.dark {
            border-color: #222;
            color: #222;
            background-color: transparent;
        }

        .btn.border.warning {
            border-color: #ff9582;
            color: #ff9582;
            background-color: transparent;
        }

        .btn.border.danger {
            border-color: #e0012b;
            color: #e0012b;
            background-color: transparent;
        }

.data-table table {
    table-layout: fixed;
    width: 100%;
    border-top: 1px solid #ddd;
}

.data-table th,
.data-table td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    font-size: 14px;
}

@media (max-width: 720px) {
    .data-table th,
    .data-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
}

.data-table th.left,
.data-table td.left {
    text-align: left;
}

.data-table th.center,
.data-table td.center {
    text-align: center;
}

.data-table th {
    background-color: #f1f1f1;
    border-bottom: 1px solid #ddd;
}

.data-table td {
    border-bottom: 1px solid #ddd;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.6rem;
    overflow: hidden;
    margin-top: 2rem;
}

    .pagination button {
        display: block;
    }

    .pagination .paging {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 1.2rem;
        height: 1.2rem;
    }

        .pagination .paging.current .page-link {
            font-weight: 900;
            color: #2546cd;
        }

    .pagination .page-link {
        display: block;
        width: 100%;
        height: 100%;
        font-size: 0.75rem;
        font-weight: 700;
        color: #666666;
        letter-spacing: -0.02em;
        text-align: center;
    }

    .pagination .controller {
        width: 1.2rem;
        height: 1.2rem;
    }

        .pagination .controller .page-link {
            display: block;
            width: 100%;
            height: 100%;
            text-indent: -9999px;
            background-repeat: no-repeat;
            background-position: 50% 50%;
            background-size: cover;
        }

        .pagination .controller.prev .page-link {
            background-image: url("../images/components/icon-pagination-prev.png");
        }

        .pagination .controller.next .page-link {
            background-image: url("../images/components/icon-pagination-next.png");
        }

        .pagination .controller.first .page-link {
            background-image: url("../images/components/icon-pagination-first.png");
        }

        .pagination .controller.last .page-link {
            background-image: url("../images/components/icon-pagination-last.png");
        }

        .pagination .controller.disabled {
            opacity: 0.4;
        }

            .pagination .controller.disabled .page-link {
                pointer-events: none;
            }

.input-cover {
    position: relative;
}

    .input-cover.float {
        position: relative;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        .input-cover.float.active .form-label {
            padding: 0 0.2rem;
            left: 0.8rem;
            -webkit-transform: translate3d(0, -26px, 0) scale(0.75);
            transform: translate3d(0, -26px, 0) scale(0.75);
            color: #000;
            background-color: #fff;
        }

        .input-cover.float.active .required {
            color: #000;
        }

        .input-cover.float.active .form-input[type=date] {
            color: #000;
        }

        .input-cover.float.active .form-input::-webkit-input-placeholder {
            color: #999;
            opacity: 1;
        }

        .input-cover.float.active .form-input::-moz-placeholder {
            color: #999;
            opacity: 1;
        }

        .input-cover.float.active .form-input:-ms-input-placeholder {
            color: #999;
            opacity: 1;
        }

        .input-cover.float.active .form-input:-moz-placeholder {
            color: #999;
            opacity: 1;
        }

        .input-cover.float.active .form-input::-ms-input-placeholder {
            color: #999;
            opacity: 1;
        }

        .input-cover.float.active .form-input::placeholder {
            color: #999;
            opacity: 1;
        }

        .input-cover.float .form-label {
            position: absolute;
            top: 0.85rem;
            left: 1rem;
            z-index: 2;
            width: auto;
            margin-bottom: 0;
            -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
            -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            -webkit-transform-origin: left top;
            transform-origin: left top;
            overflow: hidden;
            white-space: nowrap;
            -ms-text-overflow: ellipsis;
            text-overflow: ellipsis;
            background-color: #fff;
        }

        .input-cover.float .etc-right {
            top: 50%;
            bottom: auto;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }

    .input-cover.focus, .input-cover.open-datepicker {
        border-color: #2c599d;
    }

        .input-cover.focus .form-label,
        .input-cover.focus .required, .input-cover.open-datepicker .form-label,
        .input-cover.open-datepicker .required {
            color: #2c599d !important;
        }

        .input-cover.focus .form-input, .input-cover.open-datepicker .form-input {
            border-color: #2c599d;
        }

    .input-cover.right-space.small .form-input {
        padding-right: 2.8rem;
    }

    .input-cover.right-space .form-input {
        padding-right: 4.6rem;
    }

    .input-cover.error .icon-error {
        display: block;
    }

    .input-cover.error .form-input {
        padding-right: 2.5rem;
        border-color: #e0012b;
    }

    .input-cover.active .onetype-file-wrapper .btn-result-file-input-delete {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .input-cover .cover-inner {
        position: relative;
    }

    .input-cover .form-input {
        display: block;
        position: relative;
        z-index: 1;
        width: 100%;
        min-height: 2.8rem;
        line-height: 2.7rem;
        padding: 0 1rem;
        border: 1px solid #e0e0e3;
        border-radius: 0.2rem;
        font-size: 0.8rem;
        background-color: #fff;
    }

        .input-cover .form-input::-webkit-input-placeholder {
            color: #999;
            opacity: 1;
        }

        .input-cover .form-input::-moz-placeholder {
            color: #999;
            opacity: 1;
        }

        .input-cover .form-input:-ms-input-placeholder {
            color: #999;
            opacity: 1;
        }

        .input-cover .form-input:-moz-placeholder {
            color: #999;
            opacity: 1;
        }

        .input-cover .form-input::-ms-input-placeholder {
            color: #999;
            opacity: 1;
        }

        .input-cover .form-input::placeholder {
            color: #999;
            opacity: 1;
        }

        .input-cover .form-input:-moz-read-only, .input-cover .form-input:disabled {
            color: #999 !important;
            background-color: #fafafa;
        }

        .input-cover .form-input:read-only, .input-cover .form-input:disabled {
            color: #999 !important;
            background-color: #fafafa;
        }

            .input-cover .form-input:-moz-read-only.datepicker-input, .input-cover .form-input:disabled.datepicker-input {
                color: #000 !important;
                background-color: transparent;
            }

            .input-cover .form-input:read-only.datepicker-input, .input-cover .form-input:disabled.datepicker-input {
                color: #000 !important;
                background-color: transparent;
            }

            .input-cover .form-input:-moz-read-only.result-file-input, .input-cover .form-input:disabled.result-file-input {
                color: #000 !important;
                background-color: transparent;
            }

            .input-cover .form-input:read-only.result-file-input, .input-cover .form-input:disabled.result-file-input {
                color: #000 !important;
                background-color: transparent;
            }

    .input-cover .form-label {
        display: block;
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
        color: #999;
    }

    .input-cover .required {
        display: inline-block;
        vertical-align: middle;
        font-size: 0.8rem;
        color: #999;
    }

    .input-cover .etc-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 0.4rem;
        position: absolute;
        z-index: 2;
        bottom: 0.75rem;
        right: 1rem;
    }

    .input-cover .mode-text {
        font-size: 0.8rem;
    }

    .input-cover .btn-type-change {
        width: 1.2rem;
        height: 1.2rem;
        background-image: url("../images/icon/icon-eye-off.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 0 0;
        text-indent: -9999px;
        color: transparent;
    }

        .input-cover .btn-type-change.type-text {
            background-image: url("../images/icon/icon-eye-on.png");
        }

    .input-cover .file-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 0.4rem;
        position: relative;
    }

        .input-cover .file-wrapper .file-input {
            position: absolute !important;
            display: block;
            width: 0 !important;
            height: 0 !important;
            padding: 0 !important;
            margin: -1px !important;
            border: 0 !important;
            overflow: hidden !important;
            clip: rect(0 0 0 0) !important;
            top: 0;
            right: 0;
            z-index: 1;
        }

            .input-cover .file-wrapper .file-input.focusable:active, .input-cover .file-wrapper .file-input.focusable:focus {
                position: static;
                height: auto;
                width: auto;
                margin: 0;
                clip: auto;
                overflow: visible;
            }

            .input-cover .file-wrapper .file-input:focus-visible + .btn {
                outline: 2px solid #000;
            }

        .input-cover .file-wrapper .btn {
            -ms-flex-negative: 0;
            flex-shrink: 0;
            width: 100%;
            max-width: 6rem;
            font-size: 0.8rem;
        }

        .input-cover .file-wrapper.onetype-file-wrapper {
            width: 100%;
            gap: 0.25rem;
        }

            .input-cover .file-wrapper.onetype-file-wrapper .file-label {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                width: 4.25rem;
                height: 1.7rem;
                background: #000;
                border: 1px solid #000;
                color: #fff;
                font-size: 0.85rem;
                font-weight: 500;
                border-radius: 0.25rem;
                -ms-flex-negative: 0;
                flex-shrink: 0;
            }

            .input-cover .file-wrapper.onetype-file-wrapper .file-input--wrap {
                position: relative;
                width: 100%;
            }

            .input-cover .file-wrapper.onetype-file-wrapper .result-file-input {
                width: 100%;
                overflow: hidden;
                white-space: nowrap;
                -ms-text-overflow: ellipsis;
                text-overflow: ellipsis;
                padding-right: 2.5rem;
                min-height: 1.7rem;
                line-height: 1.7rem;
                background: #fff !important;
                border-color: #6c6c6c !important;
                padding-left: 0.5rem;
                color: #292929 !important;
            }

            .input-cover .file-wrapper.onetype-file-wrapper .btn-result-file-input-delete {
                display: none;
                position: absolute;
                top: 50%;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
                right: 0.8rem;
                width: 0.8rem;
                height: 0.8rem;
                text-indent: -9999px;
                background-repeat: no-repeat;
                background-position: center center;
                background-size: contain;
                background-image: url("../images/icon/icon-remove-16x16-gray.png");
                z-index: 10;
            }

    .input-cover.disable-active.float .form-label {
        padding: 0 0.2rem;
        left: 0.8rem;
        -webkit-transform: translate3d(0, -26px, 0) scale(0.75);
        transform: translate3d(0, -26px, 0) scale(0.75);
        color: #999;
    }

    .input-cover.disable-active .required {
        color: #999;
    }

.form-btn-with-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.4rem;
}

    .form-btn-with-container .input-cover,
    .form-btn-with-container .selectric-container {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .form-btn-with-container .btn {
        width: 100%;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .form-btn-with-container.medium .btn {
        max-width: 6rem;
    }

.selector-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 0.5rem;
}

    .selector-wrapper.horizontal {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-column-gap: 1rem;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }

.selector-cover {
    line-height: 1;
    font-size: 0;
}

    .selector-cover input {
        position: absolute;
        position: absolute !important;
        display: block;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: -1px !important;
        border: 0 !important;
        overflow: hidden !important;
        clip: rect(0 0 0 0) !important;
    }

        .selector-cover input.focusable:active, .selector-cover input.focusable:focus {
            position: static;
            height: auto;
            width: auto;
            margin: 0;
            clip: auto;
            overflow: visible;
        }

        .selector-cover input:focus-visible + .selector-text {
            outline: auto;
            outline-color: -webkit-focus-ring-color;
        }

    .selector-cover .label {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        position: relative;
        cursor: pointer;
    }

    .selector-cover .selector-text {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 0.8rem;
        word-break: keep-all;
    }

    .selector-cover .selector {
        position: absolute;
        top: 0;
        left: 0;
        border: 1px solid #e0e0e3;
        background-color: transparent;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        .selector-cover .selector:after {
            display: block;
            content: "";
            position: absolute;
        }

    .selector-cover.checkbox .selector {
        border-radius: 0.2rem;
    }

        .selector-cover.checkbox .selector:after {
            display: none;
            left: calc(50% - 0.25rem);
            top: 50%;
            width: 0.25rem;
            height: 0.5rem;
            border: solid #000;
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(45deg) translate(-50%, -50%);
            transform: rotate(45deg) translate(-50%, -50%);
        }

    .selector-cover.checkbox.round .selector-text {
        padding-left: 1.6rem;
        min-height: 1.2rem;
    }

    .selector-cover.checkbox.round .selector {
        width: 1.2rem;
        height: 1.2rem;
        border: 0;
        border-radius: 0;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-size: cover;
        background-image: url("../images/components/icon-checkbox-round-off.png");
    }

    .selector-cover.checkbox.round input:checked + .selector-text .selector {
        background-image: url("../images/components/icon-checkbox-round-on.png");
    }

        .selector-cover.checkbox.round input:checked + .selector-text .selector:after {
            display: none;
        }

    .selector-cover.checkbox.square .selector-text {
        padding-left: 1.6rem;
        min-height: 1.2rem;
    }

    .selector-cover.checkbox.square .selector {
        width: 1.2rem;
        height: 1.2rem;
        border: 0;
        border-radius: 0;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-size: cover;
        background-image: url("../images/components/icon-checkbox-square-off.png");
    }

    .selector-cover.checkbox.square input:checked + .selector-text .selector {
        background-image: url("../images/components/icon-checkbox-square-on.png");
    }

        .selector-cover.checkbox.square input:checked + .selector-text .selector:after {
            display: none;
        }

    .selector-cover.checkbox.solo .selector-text {
        padding-left: 1.2rem;
    }

    .selector-cover.radio input:checked + .selector-text .selector {
        background-color: #fff;
        border-color: #000;
    }

        .selector-cover.radio input:checked + .selector-text .selector:after {
            background-color: #000;
        }

    .selector-cover.radio .selector-text {
        padding-left: 1.4rem;
        min-height: 1rem;
    }

    .selector-cover.radio .selector {
        height: 1rem;
        width: 1rem;
        border-radius: 50%;
    }

        .selector-cover.radio .selector:after {
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0.4rem;
            height: 0.4rem;
            border-radius: 50%;
            background-color: #fff;
        }

    .selector-cover.radio.solo .selector-text {
        padding-left: 1.6rem;
    }

.form-guide-text {
    display: block;
    font-weight: 300;
    margin-top: 0.6rem;
    font-size: 0.75rem;
}

    .form-guide-text + .form-guide-text {
        margin-top: 0.2rem;
    }

.form-textarea {
    display: block;
    height: 6rem;
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0.4rem;
    font-size: 0.8rem;
    resize: none;
    overflow: auto;
}

    .form-textarea::-webkit-input-placeholder {
        color: #999;
        opacity: 1;
    }

    .form-textarea::-moz-placeholder {
        color: #999;
        opacity: 1;
    }

    .form-textarea:-ms-input-placeholder {
        color: #999;
        opacity: 1;
    }

    .form-textarea:-moz-placeholder {
        color: #999;
        opacity: 1;
    }

    .form-textarea::-ms-input-placeholder {
        color: #999;
        opacity: 1;
    }

    .form-textarea::placeholder {
        color: #999;
        opacity: 1;
    }

    .form-textarea.error {
        border-color: #2546cd;
    }

    .form-textarea.sm {
        height: 4rem;
        font-size: 0.7rem;
    }

    .form-textarea.md {
        height: 6rem;
    }

    .form-textarea.lg {
        height: 10rem;
    }

    .form-textarea.xl {
        height: 15rem;
    }

    .form-textarea.full {
        width: 100% !important;
    }

    .form-textarea:-moz-read-only, .form-textarea:disabled {
        background-color: #f1f1f1;
    }

    .form-textarea:read-only, .form-textarea:disabled {
        background-color: #f1f1f1;
    }

.length-check-cover .count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 0.6rem;
    font-size: 0.7rem;
    color: #999;
}

.selectric-container {
    position: relative;
}

    .selectric-container.active.init-before .selectric .label {
        color: #999;
    }

    .selectric-container.active.open .select-label {
        z-index: 5;
        color: #2c599d;
    }

        .selectric-container.active.open .select-label .required {
            color: #2c599d;
        }

    .selectric-container.active .select-label {
        z-index: 3;
        left: 0.8rem;
        -webkit-transform: translate3d(0, -8px, 0) scale(0.75);
        transform: translate3d(0, -8px, 0) scale(0.75);
        padding: 0 0.2rem;
        background-color: #fff;
    }

    .selectric-container.active .selectric .label {
        color: #000;
    }

    .selectric-container.disabled .select-label {
        color: #999;
        background-color: transparent;
    }

        .selectric-container.disabled .select-label .required {
            color: #999;
        }

    .selectric-container.error .selectric {
        border-color: #e0012b;
    }

    .selectric-container .selectric-wrapper {
        position: relative;
        z-index: 2;
    }

    .selectric-container .selectric {
        border: 1px solid #e0e0e3;
        padding-left: 1rem;
        padding-right: 2.6rem;
        border-radius: 0.2rem;
        background-color: #fff;
    }

        .selectric-container .selectric .button {
            position: absolute;
            top: 50%;
            right: 1rem;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            width: 1rem;
            height: 1rem;
            text-indent: -9999px;
            background-color: transparent;
        }

            .selectric-container .selectric .button:after {
                width: 1rem;
                height: 1rem;
                border: 0;
                background: url("../images/components/icon-selectbox-arrow.png") no-repeat 0 0;
                background-size: cover;
            }

        .selectric-container .selectric .label {
            margin: 0;
            color: #999;
        }

        .selectric-container .selectric .icon-error {
            display: none;
            width: 1.2rem;
            height: 1.2rem;
            position: absolute;
            top: 50%;
            right: 2.6rem;
            z-index: 2;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            background: url("../images/icon/icon-alert-triangle-red-24x24.png") no-repeat 0 0;
            background-size: cover;
        }

    .selectric-container .selectric-above .selectric-items {
        margin-bottom: 0.35rem;
    }

    .selectric-container .required {
        display: inline-block;
        font-size: 0.8rem;
        vertical-align: middle;
        color: #999;
    }

    .selectric-container .selectric-open {
        z-index: 4;
    }

        .selectric-container .selectric-open .selectric {
            border-color: #2c599d;
        }

            .selectric-container .selectric-open .selectric .label,
            .selectric-container .selectric-open .selectric .required {
                color: #2c599d;
            }

        .selectric-container .selectric-open .button {
            overflow: hidden;
        }

            .selectric-container .selectric-open .button:after {
                -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
            }

    .selectric-container .selectric-disabled {
        opacity: 1;
    }

        .selectric-container .selectric-disabled .selectric {
            background-color: #fafafa;
        }

            .selectric-container .selectric-disabled .selectric .label {
                color: #999;
            }

    .selectric-container .selectric-first-show .selectric-scroll li:first-child {
        display: block;
    }

    .selectric-container .selectric-scroll li:first-child {
        display: none;
    }

    .selectric-container .select-label {
        position: absolute;
        top: 0;
        left: 1rem;
        z-index: 1;
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        -webkit-transform-origin: left top;
        transform-origin: left top;
        font-size: 0.8rem;
        color: #000;
        overflow: hidden;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

        .selectric-container .select-label .required {
            color: #000;
        }

    .selectric-container .selectric-items {
        max-height: 11.25rem;
        overflow: auto;
        border-radius: 5px;
        border: 0;
        background-color: #fff;
        -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1607843137);
        box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1607843137);
    }

        .selectric-container .selectric-items li.selected {
            background-color: #2c599d !important;
            color: #fff !important;
        }

        .selectric-container .selectric-items li:hover {
            background-color: #fafafa;
        }

    .selectric-container .selectric-small .label {
        height: 1.5rem;
        line-height: 1.5rem;
        font-size: 0.7rem;
    }

    .selectric-container .selectric-small .selectric-items li {
        padding: 0.6rem;
        font-weight: 300;
        font-size: 0.7rem;
    }

    .selectric-container .selectric-medium .label {
        height: 2.7rem;
        line-height: 2.7rem;
        font-size: 0.8rem;
    }

    .selectric-container .selectric-medium .selectric-items li {
        padding: 0.85rem 1rem;
        font-size: 0.8rem;
    }

    .selectric-container .selectric-large .label {
        height: 2.6rem;
        line-height: 2.6rem;
        font-size: 0.9rem;
    }

    .selectric-container .selectric-large .selectric-items li {
        padding: 0.8rem 0.9rem;
        font-weight: 300;
        font-size: 0.9rem;
    }

.select-box-container .form-label {
    display: block;
    padding-bottom: 0.15rem;
    font-size: 0.8rem;
}

    .select-box-container .form-label .required {
        display: inline-block;
        margin-left: 0.15rem;
        font-weight: 700;
        font-size: 0.8rem;
        color: #2546cd;
        vertical-align: middle;
    }

.select-box-container .form-select {
    width: 100%;
    padding-right: 1rem;
    border: 0;
    border-bottom: 1px solid #dbdee5;
    color: #000;
    background: url("../images/components/icon-selectbox-arrow.svg") no-repeat 0 0;
    background-position: center right;
    background-size: 0.5rem 0.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-box-container.small .form-select {
    height: 1.6rem;
    line-height: 1.6rem;
    font-size: 0.65rem;
}

    .select-box-container.small .form-select option {
        font-size: 0.65rem;
    }

.select-box-container.medium .form-select {
    height: 2.1rem;
    line-height: 2.1rem;
    font-size: 0.8rem;
}

    .select-box-container.medium .form-select option {
        font-size: 0.8rem;
    }

.select-box-container.large .form-select {
    height: 2.6rem;
    line-height: 2.6rem;
    font-size: 0.9rem;
}

    .select-box-container.large .form-select option {
        font-size: 0.9rem;
    }

.select-box-container.active.float .form-label {
    -webkit-transform: translate3d(0, -20px, 0) scale(0.8);
    transform: translate3d(0, -20px, 0) scale(0.8);
}

.select-box-container.float {
    position: relative;
}

    .select-box-container.float .form-label {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
        width: 100%;
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        -webkit-transform-origin: left top;
        transform-origin: left top;
        font-size: 0.9rem;
        color: #000;
        overflow: hidden;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

    .select-box-container.float .form-select {
        position: relative;
        z-index: 2;
        background-color: #fff;
    }

        .select-box-container.float .form-select option:first-child {
            display: none;
        }

.font.warning {
    color: #ff9582;
}

.font.slightly {
    color: #888;
}

.font.primary {
    color: #2546cd;
}

.font.danger {
    color: #e0012b;
}

.font.dark {
    color: #222;
}

.font.lightSlightly {
    color: #a1a1a1;
}

.font.chuncheonMarathon {
    color: #008cbd;
}

.font.congdu50 {
    color: #23211e;
}

.font.pocketmonrun {
    color: #002d49;
}

.font.kojacha {
    color: #0d1c3d;
}

.switch-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .switch-container .switch-icon {
        position: relative;
    }

    .switch-container .switch-input {
        position: absolute !important;
        display: block;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: -1px !important;
        border: 0 !important;
        overflow: hidden !important;
        clip: rect(0 0 0 0) !important;
    }

        .switch-container .switch-input.focusable:active, .switch-container .switch-input.focusable:focus {
            position: static;
            height: auto;
            width: auto;
            margin: 0;
            clip: auto;
            overflow: visible;
        }

        .switch-container .switch-input:focus-visible + .switch-label {
            outline: auto;
            outline-color: -webkit-focus-ring-color;
        }

        .switch-container .switch-input:checked + .switch-label .switch-button {
            background: #2546cd;
        }

        .switch-container .switch-input:checked + .switch-label .btn-on-off {
            left: 0.85rem;
        }

    .switch-container .switch-label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .switch-container .switch-button {
        -webkit-transition: 0.2s;
        transition: 0.2s;
        display: block;
        width: 1.6rem;
        height: 0.9rem;
        position: relative;
        cursor: pointer;
        background: #999;
        border-radius: 50px;
    }

    .switch-container .btn-on-off {
        -webkit-transition: 0.2s;
        transition: 0.2s;
        position: absolute;
        top: 50%;
        left: 0.15rem;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        display: inline-block;
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 50%;
        background: #fff;
        text-indent: -9999px;
    }

    .switch-container .switch-text {
        margin-left: 0.4rem;
        font-size: 0.75rem;
        cursor: pointer;
    }

.rating-select-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .rating-select-container input {
        position: absolute !important;
        display: block;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: -1px !important;
        border: 0 !important;
        overflow: hidden !important;
        clip: rect(0 0 0 0) !important;
    }

        .rating-select-container input.focusable:active, .rating-select-container input.focusable:focus {
            position: static;
            height: auto;
            width: auto;
            margin: 0;
            clip: auto;
            overflow: visible;
        }

    .rating-select-container label {
        -webkit-transition: 0.1s;
        transition: 0.1s;
        display: block;
        position: relative;
        width: 2.3rem;
        height: 2.2rem;
        margin-left: 0.4rem;
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: cover;
        background-image: url("../images/components/icon-star-empty.svg");
        text-indent: -9999px;
        cursor: pointer;
    }

        .rating-select-container label.checked {
            background-image: url("../images/components/icon-star-full.svg");
        }

        .rating-select-container label:nth-of-type(1) {
            margin-left: 0;
        }

.layer-popup {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    padding: 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .layer-popup.open {
        visibility: visible;
        opacity: 1;
    }

    .layer-popup.all-show {
        opacity: 1;
        visibility: visible;
        width: auto;
        height: auto;
        position: static;
        border-top: 2px solid #000;
    }

    .layer-popup .popup-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        width: 100%;
        max-height: 100%;
        border-radius: 1rem;
        overflow: hidden;
        -webkit-box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2509803922);
        box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2509803922);
    }

        .layer-popup .popup-container.medium {
            max-width: 32rem;
        }

        .layer-popup .popup-container.small {
            max-width: 23rem;
        }

@media screen and (max-width: 720px) {
    .layer-popup .popup-container.small {
        max-width: 473px;
    }
}

.layer-popup .popup-header {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    background-color: #fff;
}

    .layer-popup .popup-header .btn-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 2;
        width: 1.5rem;
        height: 1.5rem;
        text-indent: -9999px;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-size: 1.15rem 1.15rem;
        background-image: url("../images/icon/icon-close-bk-23x23.png");
    }

.layer-popup .popup-title {
    padding: 1rem;
    text-align: center;
}

    .layer-popup .popup-title strong {
        font-size: 1rem;
    }

.layer-popup .popup-content {
    height: 100%;
    overflow: auto;
    position: relative;
    background-color: #fff;
}

.layer-popup .popup-inner {
    padding: 2rem;
    position: relative;
}

.layer-popup .popup-footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 0 0 1rem 1rem;
    overflow: hidden;
}

    .layer-popup .popup-footer .btn-area .btn {
        width: 100%;
        height: 3rem;
        line-height: 3rem;
        text-align: center;
        border: 0;
        font-weight: 700;
        font-size: 0.9rem;
        color: #fff;
    }

    .layer-popup .popup-footer .btn-area .btn-close {
        background-color: #666;
    }

    .layer-popup .popup-footer .btn-area .btn-ok {
        background-color: #2546cd;
    }

    .layer-popup .popup-footer .btn-area.half {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .layer-popup .popup-footer .btn-area.half .btn {
            width: 50%;
        }

.layer-popup.full-scroll {
    display: block;
    overflow: auto;
    text-align: center;
    font-size: 0;
}

    .layer-popup.full-scroll:before {
        display: inline-block;
        content: "";
        height: 100%;
        vertical-align: middle;
    }

    .layer-popup.full-scroll .popup-container {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        margin: 0 auto;
        max-height: none;
        border-radius: 1rem;
        font-size: initial;
    }

    .layer-popup.full-scroll .popup-content {
        height: auto;
        position: relative;
        overflow: visible;
        text-align: left;
    }

.layer-popup-dim {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    background-color: rgba(0, 0, 0, 0.5);
}

    .layer-popup-dim.show {
        -webkit-animation: dimShow 0.3s forwards;
        animation: dimShow 0.3s forwards;
    }

@-webkit-keyframes dimShow {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes dimShow {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

.common-style-popup .popup-container {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 1.5rem;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}

@media screen and (max-width: 720px) {
    .common-style-popup .popup-container {
        border-radius: 30px;
    }
}

.common-style-popup .popup-container.small {
    max-width: 473px;
}

.common-style-popup .popup-inner {
    padding: 2.875rem 1.5rem;
}

@media screen and (max-width: 720px) {
    .common-style-popup .popup-inner {
        padding: 57.5px 16px;
    }
}

.common-style-popup .popup-common--text {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
}

@media screen and (max-width: 720px) {
    .common-style-popup .popup-common--text {
        font-size: 20px;
    }
}

.common-style-popup .popup-common-small--text {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
    color: #292929;
    margin-top: 0.5rem;
}

@media screen and (max-width: 720px) {
    .common-style-popup .popup-common-small--text {
        font-size: 18px;
        margin-top: 10px;
    }
}

.common-style-popup .popup-common-small--text strong {
    font-weight: 700;
    color: #500094;
}

.common-style-popup .popup-footer {
    margin-top: 2rem;
    border-radius: 0;
}

@media screen and (max-width: 720px) {
    .common-style-popup .popup-footer {
        margin-top: 40px;
    }
}

.common-style-popup .popup-footer .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .common-style-popup .popup-footer .btn-area .btn {
        background: #000;
        border-radius: 1.25rem;
        width: 8.45rem;
        height: 2.45rem;
        font-size: 0.9rem;
        line-height: 2.45rem;
        font-weight: 700;
        letter-spacing: 0;
        text-align: center;
        color: #fff;
    }

@media screen and (max-width: 720px) {
    .common-style-popup .popup-footer .btn-area .btn {
        border-radius: 25px;
        width: 169px;
        height: 49px;
        font-size: 18px;
        line-height: 49px;
    }
}

.apply-benefit-popup .popup-inner {
    padding: 1.5rem 1.375rem 3rem 1.375rem;
}

@media screen and (max-width: 720px) {
    .apply-benefit-popup .popup-inner {
        padding: 30px 27.5px 60px 27.5px;
    }
}

.apply-benefit-popup .selected-benefit--wrap .title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 720px) {
    .apply-benefit-popup .selected-benefit--wrap .title {
        font-size: 25px;
        margin-bottom: 30px;
    }
}

.apply-benefit-popup .selected-benefit--wrap .selected-benefit-item--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.9rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (max-width: 720px) {
    .apply-benefit-popup .selected-benefit--wrap .selected-benefit-item--wrap {
        gap: 18px;
    }
}

.apply-benefit-popup .selected-benefit--wrap .selected-benefit--item .selected-benefit--text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
    color: #500094;
    margin-top: 0.5rem;
}

@media screen and (max-width: 720px) {
    .apply-benefit-popup .selected-benefit--wrap .selected-benefit--item .selected-benefit--text {
        font-size: 16px;
        margin-top: 10px;
    }
}

.apply-benefit-popup .selected-benefit--wrap .selected-text {
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    margin-top: 1.4rem;
}

@media screen and (max-width: 720px) {
    .apply-benefit-popup .selected-benefit--wrap .selected-text {
        font-size: 21px;
        margin-top: 28px;
    }
}

.apply-benefit-popup .selected-benefit--wrap .selected-text strong {
    color: #500094;
}

.apply-benefit-popup .popup-footer {
    margin-top: 2rem;
    border-radius: 0;
}

@media screen and (max-width: 720px) {
    .apply-benefit-popup .popup-footer {
        margin-top: 40px;
    }
}

.apply-benefit-popup .popup-footer .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.8rem;
}

@media screen and (max-width: 720px) {
    .apply-benefit-popup .popup-footer .btn-area {
        gap: 16px;
    }
}

.apply-benefit-popup .popup-footer .btn-area .btn {
    background: #000;
    border-radius: 1.25rem;
    width: 8.45rem;
    height: 2.45rem;
    font-size: 0.9rem;
    line-height: 2.45rem;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 720px) {
    .apply-benefit-popup .popup-footer .btn-area .btn {
        border-radius: 25px;
        width: 169px;
        height: 49px;
        font-size: 18px;
        line-height: 49px;
    }
}

.apply-policy-popup .popup-inner {
    padding-top: 4.65rem;
    padding-bottom: 3rem;
}

@media screen and (max-width: 720px) {
    .apply-policy-popup .popup-inner {
        padding-top: 93px;
        padding-bottom: 60px;
    }
}

.apply-policy-popup .apply-policy--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.4rem;
}

@media screen and (max-width: 720px) {
    .apply-policy-popup .apply-policy--wrap {
        gap: 28px;
    }
}

.apply-policy-popup .apply-policy--item .policy-item--title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #292929;
}

@media screen and (max-width: 720px) {
    .apply-policy-popup .apply-policy--item .policy-item--title {
        font-size: 21px;
    }
}

.apply-policy-popup .apply-policy--item .popup-policy-scroll--wrap {
    padding: 0.7rem 0.85rem;
    border: 1px solid #666666;
}

@media screen and (max-width: 720px) {
    .apply-policy-popup .apply-policy--item .popup-policy-scroll--wrap {
        padding: 14px 17px;
    }
}

.apply-policy-popup .apply-policy--item .popup-policy-scroll--wrap .scroll-box--text {
    font-family: "GmarketSans";
    height: 5.85rem;
    font-size: 0.7rem;
    font-weight: 300;
    line-height: 1.2;
    overflow: auto;
    word-break: keep-all;
}

@media screen and (max-width: 720px) {
    .apply-policy-popup .apply-policy--item .popup-policy-scroll--wrap .scroll-box--text {
        height: 117px;
        font-size: 14px;
    }
}

.apply-policy-popup .apply-policy--item .popup-policy-scroll--wrap .scroll-box--text::-webkit-scrollbar {
    display: none;
}

.apply-policy-popup .apply-policy--item .popup-policy-scroll--wrap .scroll-box--text a {
    word-break: break-all;
}

.apply-policy-popup .apply-policy--item .popup-policy-check--wrap {
    padding: 0.45rem 0.4rem;
}

@media screen and (max-width: 720px) {
    .apply-policy-popup .apply-policy--item .popup-policy-check--wrap {
        padding: 9px 8px;
    }
}

.apply-policy-popup .apply-policy--item .popup-policy-check--wrap .check-item + .check-item {
    margin-top: 1.5rem;
}

@media screen and (max-width: 720px) {
    .apply-policy-popup .apply-policy--item .popup-policy-check--wrap .check-item + .check-item {
        margin-top: 30px;
    }
}

.apply-policy-popup .apply-policy--item .popup-policy-check--wrap .check-item .selector-cover.checkbox.square .selector-text {
    font-size: 0.8rem;
    font-weight: 500;
    padding-left: 0;
}

@media screen and (max-width: 720px) {
    .apply-policy-popup .apply-policy--item .popup-policy-check--wrap .check-item .selector-cover.checkbox.square .selector-text {
        font-size: 16px;
    }
}

.apply-policy-popup .apply-policy--item .popup-policy-check--wrap .check-item .selector-cover.checkbox.square .selector {
    position: relative;
    width: 0.9rem;
    height: 0.9rem;
    margin-right: 0.4rem;
}

@media screen and (max-width: 720px) {
    .apply-policy-popup .apply-policy--item .popup-policy-check--wrap .check-item .selector-cover.checkbox.square .selector {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
}

.apply-policy-popup .apply-policy--item .popup-policy-check--wrap .check-item .selector-cover.checkbox.square .selector::before {
    content: "";
    position: absolute;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 1.075rem;
    height: 0.775rem;
    left: 0;
    bottom: 0.175rem;
    background-image: url("../images/components/icon-checkbox-square-on--checked.png");
    opacity: 0;
}

@media screen and (max-width: 720px) {
    .apply-policy-popup .apply-policy--item .popup-policy-check--wrap .check-item .selector-cover.checkbox.square .selector::before {
        width: 21.5px;
        height: 15.5px;
        bottom: 3.5px;
    }
}

.apply-policy-popup .apply-policy--item .popup-policy-check--wrap .check-item .selector-cover.checkbox.square input:checked + .selector-text .selector {
    background-image: url("../images/components/icon-checkbox-square-off.png");
}

    .apply-policy-popup .apply-policy--item .popup-policy-check--wrap .check-item .selector-cover.checkbox.square input:checked + .selector-text .selector::before {
        opacity: 1;
    }

.apply-policy-popup .popup-footer {
    margin-top: 2rem;
    border-radius: 0;
}

@media screen and (max-width: 720px) {
    .apply-policy-popup .popup-footer {
        margin-top: 40px;
    }
}

.apply-policy-popup .popup-footer .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

@media screen and (max-width: 720px) {
    .apply-policy-popup .popup-footer .btn-area {
        gap: 8px;
    }
}

.apply-policy-popup .popup-footer .btn-area .btn {
    background: #000;
    border-radius: 1.25rem;
    width: 8.45rem;
    height: 2.45rem;
    font-size: 0.9rem;
    line-height: 2.45rem;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 720px) {
    .apply-policy-popup .popup-footer .btn-area .btn {
        border-radius: 25px;
        width: auto;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        height: 49px;
        font-size: 18px;
        line-height: 49px;
    }
}

.benefit-detail-popup .popup-inner {
    padding-top: 2.525rem;
    padding-bottom: 2.525rem;
}

@media screen and (max-width: 720px) {
    .benefit-detail-popup .popup-inner {
        padding-top: 50.5px;
        padding-bottom: 50.5px;
    }
}

.benefit-detail-popup .benefit-detail-view--wrap .selected-beneift--icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 10rem;
    margin: 0 auto;
}

@media screen and (max-width: 720px) {
    .benefit-detail-popup .benefit-detail-view--wrap .selected-beneift--icon {
        max-width: 200px;
    }
}

.benefit-detail-popup .benefit-detail-view--wrap .benefit-detail-info-desc--wrap {
    margin-top: 0.5rem;
}

@media screen and (max-width: 720px) {
    .benefit-detail-popup .benefit-detail-view--wrap .benefit-detail-info-desc--wrap {
        margin-top: 10px;
    }
}

.benefit-detail-popup .benefit-detail-view--wrap .benefit-detail-info-desc--wrap p {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
}

@media screen and (max-width: 720px) {
    .benefit-detail-popup .benefit-detail-view--wrap .benefit-detail-info-desc--wrap p {
        font-size: 20px;
    }
}

.benefit-detail-popup .benefit-detail-view--wrap .benefit-detail-info-desc--wrap p + p {
    margin-top: 0.75rem;
}

@media screen and (max-width: 720px) {
    .benefit-detail-popup .benefit-detail-view--wrap .benefit-detail-info-desc--wrap p + p {
        margin-top: 15px;
    }
}

.benefit-detail-popup .benefit-detail-view--wrap .benefit-detail-info-desc--wrap strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
    margin-top: 0.1rem;
}

@media screen and (max-width: 720px) {
    .benefit-detail-popup .benefit-detail-view--wrap .benefit-detail-info-desc--wrap strong {
        font-size: 25px;
        margin-top: 2px;
    }
}

.benefit-detail-popup .benefit-detail-view--wrap .benefit-date--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0.95rem;
}

@media screen and (max-width: 720px) {
    .benefit-detail-popup .benefit-detail-view--wrap .benefit-date--wrap {
        margin-top: 19px;
    }
}

.benefit-detail-popup .benefit-detail-view--wrap .benefit-date--wrap big {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
}

@media screen and (max-width: 720px) {
    .benefit-detail-popup .benefit-detail-view--wrap .benefit-date--wrap big {
        font-size: 20px;
    }
}

.benefit-detail-popup .benefit-detail-view--wrap .benefit-date--wrap small {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    color: #292929;
}

@media screen and (max-width: 720px) {
    .benefit-detail-popup .benefit-detail-view--wrap .benefit-date--wrap small {
        font-size: 18px;
    }
}

.benefit-detail-popup .popup-footer {
    margin-top: 1.15rem;
    border-radius: 0;
}

@media screen and (max-width: 720px) {
    .benefit-detail-popup .popup-footer {
        margin-top: 23px;
    }
}

.benefit-detail-popup .popup-footer .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .benefit-detail-popup .popup-footer .btn-area .btn {
        background: #000;
        border-radius: 1.25rem;
        width: 8.45rem;
        height: 2.45rem;
        font-size: 0.9rem;
        line-height: 2.45rem;
        font-weight: 700;
        letter-spacing: 0;
        text-align: center;
        color: #fff;
    }

@media screen and (max-width: 720px) {
    .benefit-detail-popup .popup-footer .btn-area .btn {
        border-radius: 25px;
        width: 169px;
        height: 49px;
        font-size: 18px;
        line-height: 49px;
    }
}

.change-double-popup .popup-inner {
    padding: 2.8rem 0.95rem 2.25rem 0.95rem;
}

@media screen and (max-width: 720px) {
    .change-double-popup .popup-inner {
        padding: 56px 8px 45px 8px;
    }
}

.change-double-popup .change-double--wrap .title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 1.35rem;
}

@media screen and (max-width: 720px) {
    .change-double-popup .change-double--wrap .title {
        font-size: 22px;
        margin-bottom: 27px;
    }
}

.change-double-popup .change-double--wrap .change-double--text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
}

@media screen and (max-width: 720px) {
    .change-double-popup .change-double--wrap .change-double--text {
        font-size: 18px;
    }
}

.change-double-popup .change-double--wrap .change-double--text span {
    color: #500094;
}

.change-double-popup .file-attach--wrap {
    margin-top: 1.15rem;
}

@media screen and (max-width: 720px) {
    .change-double-popup .file-attach--wrap {
        margin-top: 23px;
    }
}

.change-double-popup .file-attach--wrap .file-input--text {
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 0;
    color: #292929;
    margin-top: 0.2rem;
}

@media screen and (max-width: 720px) {
    .change-double-popup .file-attach--wrap .file-input--text {
        font-size: 11px;
        margin-top: 4px;
    }
}

@media screen and (max-width: 720px) {
    .change-double-popup .input-cover .file-wrapper.onetype-file-wrapper .file-label {
        min-height: 34px;
        width: auto;
        min-width: 85px;
        font-size: 14px;
    }
}

@media screen and (max-width: 720px) {
    .change-double-popup .input-cover .file-wrapper.onetype-file-wrapper .result-file-input {
        padding-right: 50px;
        min-height: 34px;
        line-height: 34px;
        padding-left: 10px;
        font-size: 16px;
    }
}

@media screen and (max-width: 720px) {
    .change-double-popup .input-cover .file-wrapper.onetype-file-wrapper .btn-result-file-input-delete {
        width: 16px;
        height: 16px;
    }
}

.change-double-popup .popup-footer {
    margin-top: 2rem;
    border-radius: 0;
    text-align: center;
}

@media screen and (max-width: 720px) {
    .change-double-popup .popup-footer {
        margin-top: 40px;
    }
}

.change-double-popup .popup-footer .btn-area {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 0.8rem;
}

@media screen and (max-width: 720px) {
    .change-double-popup .popup-footer .btn-area {
        gap: 8px;
    }
}

.change-double-popup .popup-footer .btn-area .btn {
    background: #000;
    border-radius: 1.25rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: 8.45rem;
    height: 2.45rem;
    padding: 0 0.8rem;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 720px) {
    .change-double-popup .popup-footer .btn-area .btn {
        border-radius: 25px;
        min-width: 156px;
        height: 49px;
        padding: 0 16px;
        font-size: 18px;
    }
}

.change-double-popup .popup-footer .btn-area .btn.cancel-small {
    min-width: auto;
    width: 7rem;
}

@media screen and (max-width: 720px) {
    .change-double-popup .popup-footer .btn-area .btn.cancel-small {
        width: 140px;
    }
}

.change-double-popup .popup-footer .btn-area .btn.small {
    padding: 0 0.8rem;
}

@media screen and (max-width: 720px) {
    .change-double-popup .popup-footer .btn-area .btn.small {
        padding: 0 16px;
    }
}

.change-double-popup .popup-footer .btn-area .btn.pc-show {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (max-width: 720px) {
    .change-double-popup .popup-footer .btn-area .btn.pc-show {
        display: none !important;
    }
}

.change-double-popup .popup-footer .btn-area .btn.mobile-show {
    display: none !important;
}

@media (max-width: 720px) {
    .change-double-popup .popup-footer .btn-area .btn.mobile-show {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.scroll-animate {
    opacity: 0;
}

    .scroll-animate.show {
        opacity: 1;
    }

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes shake-horizontal {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%, 40%, 60% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    80% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    90% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }
}

@keyframes shake-horizontal {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%, 40%, 60% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    80% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    90% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }
}

@-webkit-keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes hithere {
    30% {
        -webkit-transform: scale(1.03);
        transform: scale(1.03);
    }

    40%, 60% {
        -webkit-transform: rotate(-10deg) scale(1.03);
        transform: rotate(-10deg) scale(1.03);
    }

    50% {
        -webkit-transform: rotate(10deg) scale(1.03);
        transform: rotate(10deg) scale(1.03);
    }

    70% {
        -webkit-transform: rotate(0deg) scale(1.03);
        transform: rotate(0deg) scale(1.03);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes hithere {
    30% {
        -webkit-transform: scale(1.03);
        transform: scale(1.03);
    }

    40%, 60% {
        -webkit-transform: rotate(-10deg) scale(1.03);
        transform: rotate(-10deg) scale(1.03);
    }

    50% {
        -webkit-transform: rotate(10deg) scale(1.03);
        transform: rotate(10deg) scale(1.03);
    }

    70% {
        -webkit-transform: rotate(0deg) scale(1.03);
        transform: rotate(0deg) scale(1.03);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes pulseSmall {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        -webkit-transform: scale(1.03);
        transform: scale(1.03);
    }
}

@keyframes pulseSmall {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        -webkit-transform: scale(1.03);
        transform: scale(1.03);
    }
}

@-webkit-keyframes floating {
    from {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    65% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    to {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes floating {
    from {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    65% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    to {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    15% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }

    30% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }

    45% {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }

    60% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }

    75% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    15% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }

    30% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }

    45% {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }

    60% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }

    75% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes bounce {
    70% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    80% {
        -webkit-transform: translateY(-15%);
        transform: translateY(-15%);
    }

    90% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    95% {
        -webkit-transform: translateY(-7%);
        transform: translateY(-7%);
    }

    97% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    99% {
        -webkit-transform: translateY(-3%);
        transform: translateY(-3%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounce {
    70% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    80% {
        -webkit-transform: translateY(-15%);
        transform: translateY(-15%);
    }

    90% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    95% {
        -webkit-transform: translateY(-7%);
        transform: translateY(-7%);
    }

    97% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    99% {
        -webkit-transform: translateY(-3%);
        transform: translateY(-3%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.event-scroll-animate {
    opacity: 0;
}

    .event-scroll-animate.show {
        opacity: 1;
    }

@-webkit-keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes reveral {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes reveral {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in-top {
    -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-bottom {
    -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-right {
    -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-left {
    -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.shake-horizontal {
    -webkit-animation: shake-horizontal 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
    animation: shake-horizontal 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

::-webkit-scrollbar {
    width: 8px;
    height: 4px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.1); /*스크롤바의 색상*/
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ddd; /*스크롤바 트랙 색상*/
}

.swiper-container {
    position: relative;
    overflow: hidden;
}

    .swiper-container .swiper-button-next,
    .swiper-container .swiper-button-prev {
        width: 70px;
        height: 70px;
        text-indent: -9999px;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-size: cover;
    }

        .swiper-container .swiper-button-next:after,
        .swiper-container .swiper-button-prev:after {
            display: none;
        }

    .swiper-container .swiper-button-next {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        background-image: url("../images/icon/icon-slider-arrow-next-bk-70x70.png");
    }

    .swiper-container .swiper-button-prev {
        background-image: url("../images/icon/icon-slider-arrow-prev-bk-70x70.png");
    }

    .swiper-container .swiper-pagination {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        bottom: 0 !important;
        margin-top: 20px;
    }

        .swiper-container .swiper-pagination .swiper-pagination-bullet {
            display: block;
        }

html,
body {
    -webkit-overflow-scrolling: touch;
}

    html.scroll-disable,
    body.scroll-disable {
        overflow: hidden !important;
    }

@media (min-width: 961px) {
    html.scroll-disable.responsive-scroll,
    body.scroll-disable.responsive-scroll {
        overflow: visible !important;
    }
}

.accordion-list {
    overflow: hidden;
}

    .accordion-list.active .accordion-header:after {
        -webkit-transform: translateY(-50%) rotate(180deg);
        transform: translateY(-50%) rotate(180deg);
    }

    .accordion-list .accordion-header {
        display: block;
        position: relative;
        width: 100%;
        padding: 1rem 3rem 1rem 1rem;
        text-align: left;
    }

        .accordion-list .accordion-header:after {
            display: block;
            content: "";
            width: 1rem;
            height: 1rem;
            position: absolute;
            top: 50%;
            right: 1.2rem;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            background-image: url("../images/icon/icon-arrow-down-bk-18x18.png");
            background-size: cover;
            background-repeat: no-repeat;
            background-position: 50% 50%;
        }

    .accordion-list .accordion-body {
        display: none;
    }

.mobile-show {
    display: none;
}

@media (max-width: 720px) {
    .pc-show {
        display: none;
    }

    .mobile-show {
        display: block;
    }
}

.ui-tab-content {
    display: none;
}

    .ui-tab-content:nth-of-type(1) {
        display: block;
    }

.tui-datetime-input {
    width: 100%;
    height: auto;
}

.tui-datepicker {
    z-index: 10;
    font-size: 0.7rem;
}

    .tui-datepicker.tui-hidden {
        display: none;
    }

    .tui-datepicker * {
        font-size: inherit;
    }

    .tui-datepicker .tui-datepicker-footer .tui-timepicker {
        padding: 10px;
    }

    .tui-datepicker .tui-timepicker-select {
        width: 64px;
        height: 32px;
    }

    .tui-datepicker .tui-calendar-sat {
        color: #1c74bc;
    }

    .tui-datepicker .tui-calendar-sun {
        color: #fc2222;
    }

    .tui-datepicker .tui-is-blocked {
        color: #ddd !important;
    }

    .tui-datepicker .tui-calendar-today {
        font-weight: bold;
        background-color: transparent;
        border: 1px solid rgba(37, 70, 205, 0.4);
        border-radius: 50%;
        color: #2546cd;
    }

        .tui-datepicker .tui-calendar-today:hover {
            background-color: #fff;
        }

    .tui-datepicker .tui-is-selectable.tui-is-selected,
    .tui-datepicker .tui-is-selectable.tui-is-selected {
        background-color: #2546cd !important;
        border: 0 !important;
        border-radius: 0 !important;
        color: #fff !important;
    }

.tui-timepicker-select {
    font-size: 0.7rem !important;
}

.tui-datepicker-input {
    border: 0;
}

    .tui-datepicker-input .datepicker-input {
        font-size: 0.75rem;
    }

    .tui-datepicker-input .tui-ico-date {
        right: 0.6rem;
        bottom: 0.5rem;
        background-position: -17px -14px !important;
    }

.tui-datepicker-type-date {
    width: 245px;
}

.tui-calendar {
    width: 100%;
}

    .tui-calendar th,
    .tui-calendar td {
        height: 35px;
    }

.tui-datepicker-body .tui-timepicker,
.tui-datepicker-footer .tui-timepicker {
    width: 100%;
}

#content .fr-view html,
#content .fr-view body,
#content .fr-view p,
#content .fr-view h1,
#content .fr-view h2,
#content .fr-view h3,
#content .fr-view h4,
#content .fr-view h5,
#content .fr-view h6,
#content .fr-view ul,
#content .fr-view ol,
#content .fr-view li,
#content .fr-view table,
#content .fr-view tr,
#content .fr-view td,
#content .fr-view dl,
#content .fr-view dt,
#content .fr-view dd,
#content .fr-view a,
#content .fr-view img,
#content .fr-view input,
#content .fr-view button,
#content .fr-view select,
#content .fr-view textarea {
    list-style: revert-layer;
    font-family: "Pretendard", arial, sans-serif, Arial, dotum, "돋움";
    font-size: revert;
    font-weight: revert;
    line-height: revert;
    -webkit-text-decoration: revert;
    text-decoration: revert;
    letter-spacing: revert;
}

#content .fr-view h1 {
    font-size: 2em;
}

#content .fr-view ol,
#content .fr-view ul {
    -webkit-padding-start: 0.75rem;
    padding-inline-start: 0.75rem;
}

.c-button {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 2.674rem;
    height: 5.2rem;
    font-size: 1.85rem;
    font-weight: 700;
    background: #fff;
    border: 1px solid transparent;
}

    .c-button.pc-show {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

@media (max-width: 720px) {
    .c-button.pc-show {
        display: none !important;
    }
}

.c-button.mobile-show {
    display: none !important;
}

@media (max-width: 720px) {
    .c-button.mobile-show {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.c-button.primary {
    background: #3f00a7;
    color: #fff;
    border-color: #3f00a7;
}

.c-button.primary-border {
    background: #fff;
    border-color: #3f00a7;
    color: #3f00a7;
}

.c-button.hover-ani {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform-origin: center;
    transform-origin: center;
}

    .c-button.hover-ani:hover {
        -webkit-transform: scale(0.97);
        transform: scale(0.97);
    }

body {
    /* 프로젝트 마무리후 비밀번호 삽입시 주석 제거 */
}

html,
body {
    height: 100%;
    overscroll-behavior: none;
}

.content-box {
    max-width: 36rem;
    margin: 0 auto;
}

.section-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0px 2rem;
}

#header {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.mobile-navigation-menu {
    width: 1.4rem;
    height: 1.1rem;
    position: relative;
    cursor: pointer;
}

    .mobile-navigation-menu .icon {
        display: block;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 2px;
        background-color: #666;
        -webkit-transition: 0.25s;
        transition: 0.25s;
    }

        .mobile-navigation-menu .icon:before, .mobile-navigation-menu .icon:after {
            -webkit-transition: 0.25s;
            transition: 0.25s;
            display: block;
            content: "";
            width: 100%;
            height: 2px;
            position: absolute;
            left: 0;
            background-color: #666;
        }

        .mobile-navigation-menu .icon:before {
            top: -8px;
        }

        .mobile-navigation-menu .icon:after {
            top: 8px;
        }

    .mobile-navigation-menu.active .icon {
        background-color: transparent;
    }

        .mobile-navigation-menu.active .icon:before {
            top: 0;
            -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
        }

        .mobile-navigation-menu.active .icon:after {
            top: 0;
            -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
        }

#contentWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 100dvh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
}

#footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-top: 1.55rem;
    padding-bottom: 7.4rem;
    background: #000;
}

    #footer .footer-inner {
        padding: 0 1.4rem;
    }

    #footer .footer-link {
        display: block;
        font-size: 0.95rem;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0;
        color: #fff;
        margin-bottom: 0.4rem;
    }

    #footer p {
        font-size: 0.8rem;
        font-weight: 300;
        line-height: 1.2rem;
        color: #fff;
    }

#content {
    font-size: 2rem;
}

@media (max-width: 720px) {
    #content {
        font-size: 1rem;
    }
}

.floating-button--wrap {
    position: fixed;
    top: 4.1rem;
    left: 50%;
    margin-left: 12.5rem;
    z-index: -20;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}

    .floating-button--wrap.active {
        opacity: 1;
        z-index: 20;
    }

    .floating-button--wrap .floating-button--box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
        background: #fff9f9;
        border-radius: 1.5rem;
        padding: 0.95rem 0.5rem;
    }

    .floating-button--wrap .floating-button--item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        padding: 0.6rem 0;
    }

        .floating-button--wrap .floating-button--item.kakao-share {
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding-top: 0;
            padding-bottom: 0.4rem;
        }

            .floating-button--wrap .floating-button--item.kakao-share .icon {
                width: 1.65rem;
                height: 1.65rem;
            }

            .floating-button--wrap .floating-button--item.kakao-share .text {
                font-size: 0.6rem;
                font-weight: 600;
                line-height: 1.14;
                letter-spacing: 0;
                text-align: center;
            }

        .floating-button--wrap .floating-button--item:last-child {
            padding-bottom: 0;
        }

        .floating-button--wrap .floating-button--item.search-store .text {
            font-size: 0.8rem;
            font-weight: 800;
            line-height: 1.14;
            text-align: center;
            color: #3617ce;
        }

        .floating-button--wrap .floating-button--item.t-direct-shop .text {
            font-size: 0.75rem;
            font-weight: 800;
            line-height: 1.14;
            text-align: center;
            letter-spacing: -0.04em;
            color: #ff404e;
        }

        .floating-button--wrap .floating-button--item.pc-show {
            display: -webkit-box !important;
            display: -ms-flexbox !important;
            display: flex !important;
            padding-bottom: 0;
        }

@media (max-width: 720px) {
    .floating-button--wrap .floating-button--item.pc-show {
        display: none !important;
    }
}

.floating-button--wrap .floating-button--item.mobile-show {
    display: none !important;
}

@media (max-width: 720px) {
    .floating-button--wrap .floating-button--item.mobile-show {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

.floating-button--wrap .dash {
    width: 100%;
    height: 0.05rem;
    background: rgba(0, 0, 0, 0.5);
}

.visual {
    position: relative;
    padding-top: 1.3rem;
    padding-bottom: 3rem;
    background: #3f00a7;
    z-index: 1;
}

    .visual::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 0 0;
        background-image: url("../images/common/bg-visual.png");
        z-index: -1;
    }

    .visual .logo {
        width: 6.1rem;
        height: 2.55rem;
        margin-left: auto;
        margin-right: -0.4rem;
    }

    .visual .visaul-logo {
        width: 100%;
        max-width: 29.925rem;
        margin: 0 auto;
        margin-top: 0.45rem;
        opacity: 0;
        -webkit-animation: fade-in-bottom 0.8s ease 0.5s forwards, hithere 0.8s ease 1.3s forwards;
        animation: fade-in-bottom 0.8s ease 0.5s forwards, hithere 0.8s ease 1.3s forwards;
    }

    .visual .visaul-list--wrap {
        margin-top: 2.5rem;
    }

        .visual .visaul-list--wrap .visual-list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            gap: 0.65rem 0.5rem;
        }

        .visual .visaul-list--wrap .visual-list--item {
            width: calc((100% - 0.5rem) / 2);
            -webkit-box-shadow: 0px 2px 10px 5px rgba(212, 154, 223, 0.1490196078);
            box-shadow: 0px 2px 10px 5px rgba(212, 154, 223, 0.1490196078);
            border-radius: 0.7rem;
        }

            .visual .visaul-list--wrap .visual-list--item img {
                overflow: hidden;
                border-radius: 0.7rem;
            }

    .visual .visual-info--wrap {
        margin-top: 2.75rem;
    }

        .visual .visual-info--wrap .visual-info--item {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            padding: 0.7rem 0;
            border-bottom: 1px solid #fff;
            color: #fff;
            font-size: 1.05rem;
            gap: 3.15rem;
        }

            .visual .visual-info--wrap .visual-info--item:first-child {
                padding-top: 0;
            }

            .visual .visual-info--wrap .visual-info--item:last-child {
                padding-bottom: 0;
                border-bottom: none;
            }

            .visual .visual-info--wrap .visual-info--item .cate {
                min-width: 4.8rem;
                font-weight: 700;
            }

            .visual .visual-info--wrap .visual-info--item .value {
                font-weight: 500;
            }

    .visual .common-button--wrap {
        margin-top: 2.7rem;
    }

        .visual .common-button--wrap .c-button {
            border: 1px solid #ffe100;
        }

.raeple-benefit {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #fef4f4;
    z-index: 1;
}

    .raeple-benefit .section-inner {
        position: relative;
    }

        .raeple-benefit .section-inner::after {
            content: "";
            position: absolute;
            top: 2.5rem;
            right: 2.05rem;
            width: 12.525rem;
            height: 11rem;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            background-image: url("../images/common/img-benefit-row-deco.png");
            z-index: -1;
            -webkit-animation: pulseSmall 1s infinite ease-in-out alternate;
            animation: pulseSmall 1s infinite ease-in-out alternate;
        }

    .raeple-benefit .heading .title {
        width: 100%;
        max-width: 12.95rem;
        margin-bottom: 0.75rem;
    }

    .raeple-benefit .heading .desc {
        font-size: 1.35rem;
        font-weight: 700;
        color: #1d1d1d;
    }

        .raeple-benefit .heading .desc span {
            color: #3f00a7;
        }

    .raeple-benefit .heading small {
        display: block;
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.4;
        letter-spacing: -0.01em;
        color: #1d1d1d;
    }

    .raeple-benefit .benefit-option--wrap {
        margin-top: 3.25rem;
    }

        .raeple-benefit .benefit-option--wrap .benefit-option-row--item.marathon-running .benefit-top--wrap .btn-view-info-popup {
            background-image: url("../images/common/btn-detail-info01.png");
        }

        .raeple-benefit .benefit-option--wrap .benefit-option-row--item.marathon-running input:checked + .option-label .icon-deco {
            background-image: url("../images/common/icon-check-active-run.png");
        }

        .raeple-benefit .benefit-option--wrap .benefit-option-row--item.dining .benefit-option-sub--item.after-apply .option-img--wrap .join-mission {
            cursor: auto;
            border-color: #b2b2b2;
            background: #4b4b4b;
            -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
        }

        .raeple-benefit .benefit-option--wrap .benefit-option-row--item.dining .option-text--wrap .option-text--deco {
            color: #00ce53;
        }

        .raeple-benefit .benefit-option--wrap .benefit-option-row--item.dining .check-option--box {
            background: #00ce53;
        }

        .raeple-benefit .benefit-option--wrap .benefit-option-row--item.dining .benefit-top--wrap p {
            color: #00ce53;
            border-color: #00ce53;
        }

        .raeple-benefit .benefit-option--wrap .benefit-option-row--item.dining .benefit-top--wrap .btn-view-info-popup {
            background-image: url("../images/common/btn-detail-info02.png");
        }

        .raeple-benefit .benefit-option--wrap .benefit-option-row--item.dining input:checked + .option-label .icon-deco {
            background-image: url("../images/common/icon-check-active-eat.png");
        }

        .raeple-benefit .benefit-option--wrap .benefit-option-row--item + .benefit-option-row--item {
            margin-top: 1.5rem;
        }

        .raeple-benefit .benefit-option--wrap .benefit-option-sub--item {
            position: relative;
            width: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 1.45rem;
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
            padding-left: 0.65rem;
            padding-right: 1.5rem;
            background: #fff;
            border-radius: 0.75rem;
            border: 2px solid #a878f6;
            overflow: hidden;
        }

            .raeple-benefit .benefit-option--wrap .benefit-option-sub--item.after-apply::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.6);
            }

            .raeple-benefit .benefit-option--wrap .benefit-option-sub--item.after-apply-mission::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.6);
            }

            .raeple-benefit .benefit-option--wrap .benefit-option-sub--item.after-apply-mission .option-img--wrap .join-mission {
                cursor: auto;
                border-color: #b2b2b2;
                background: #4b4b4b;
                -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
                box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
            }

            .raeple-benefit .benefit-option--wrap .benefit-option-sub--item.disabled::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.6);
            }

        .raeple-benefit .benefit-option--wrap .option-img--wrap {
            position: relative;
            width: 14rem;
            -ms-flex-negative: 0;
            flex-shrink: 0;
        }

            .raeple-benefit .benefit-option--wrap .option-img--wrap .sub-info {
                position: absolute;
                bottom: 0.95rem;
                right: 0.75rem;
                padding: 0.317rem 0.712rem;
                border-radius: 1.042rem;
                border: 1px solid #000000;
                background: rgba(255, 255, 255, 0.8);
                font-size: 1.05rem;
                font-weight: 700;
                letter-spacing: -0.01em;
                z-index: 20;
            }

            .raeple-benefit .benefit-option--wrap .option-img--wrap .join-mission {
                position: absolute;
                top: 50%;
                left: 50%;
                -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                width: 12.5rem;
                height: 6.5rem;
                font-size: 1.6rem;
                font-weight: 700;
                letter-spacing: -0.01em;
                text-align: center;
                background: #a878f6;
                color: #fff;
                border: 1px solid #ffffff;
                -webkit-box-shadow: 0px 4px 8px 3px rgba(255, 255, 255, 0.75);
                box-shadow: 0px 4px 8px 3px rgba(255, 255, 255, 0.75);
                border-radius: 0.684rem;
                z-index: 10;
            }

                .raeple-benefit .benefit-option--wrap .option-img--wrap .join-mission small {
                    display: block;
                    font-size: 1.1rem;
                    line-height: 1.6;
                    letter-spacing: -0.01em;
                    text-align: center;
                }

                .raeple-benefit .benefit-option--wrap .option-img--wrap .join-mission .small {
                    font-size: 1.5rem;
                }

            .raeple-benefit .benefit-option--wrap .option-img--wrap .text {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                gap: 0.35rem;
            }

                .raeple-benefit .benefit-option--wrap .option-img--wrap .text big {
                    font-size: 1.75rem;
                    font-weight: 800;
                    text-align: center;
                    letter-spacing: -0.01em;
                    color: #fff;
                }

                .raeple-benefit .benefit-option--wrap .option-img--wrap .text small {
                    font-weight: 700;
                    font-size: 0.8215rem;
                    letter-spacing: -0.01em;
                    color: #fff;
                    text-align: center;
                }

        .raeple-benefit .benefit-option--wrap .option-text--wrap {
            width: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

            .raeple-benefit .benefit-option--wrap .option-text--wrap .option-text--deco {
                font-size: 1.274rem;
                font-weight: 700;
                line-height: 1.3;
                letter-spacing: 0;
                color: #3f00a7;
                margin-bottom: 0.35rem;
            }

            .raeple-benefit .benefit-option--wrap .option-text--wrap .option-title {
                font-size: 2rem;
                font-weight: 700;
                line-height: 1.3;
                letter-spacing: 0;
            }

            .raeple-benefit .benefit-option--wrap .option-text--wrap .benefit-top--wrap {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                gap: 0.3rem;
                z-index: 20;
                margin-top: 0.35rem;
            }

                .raeple-benefit .benefit-option--wrap .option-text--wrap .benefit-top--wrap p {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    width: 3.85rem;
                    height: 1.75rem;
                    font-size: 1.1rem;
                    font-weight: 700;
                    color: #a878f6;
                    background: #fdfdfd;
                    border-radius: 0.875rem;
                    text-align: center;
                    line-height: 1.3;
                    border: 2px solid #a878f6;
                }

                .raeple-benefit .benefit-option--wrap .option-text--wrap .benefit-top--wrap .btn-view-info-popup {
                    text-indent: -9999px;
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-position: center center;
                    width: 1.75rem;
                    height: 1.75rem;
                    -ms-flex-negative: 0;
                    flex-shrink: 0;
                }

            .raeple-benefit .benefit-option--wrap .option-text--wrap .sub-info {
                font-size: 1.1rem;
                font-weight: 700;
                line-height: 1.3;
                letter-spacing: 0;
                margin-top: 0.6rem;
            }

            .raeple-benefit .benefit-option--wrap .option-text--wrap .event-date {
                font-size: 0.836rem;
                font-weight: 600;
                line-height: 1.3;
                letter-spacing: 0;
                color: rgba(0, 0, 0, 0.7);
                margin-top: 2rem;
            }

                .raeple-benefit .benefit-option--wrap .option-text--wrap .event-date .underline {
                    text-decoration: underline;
                }

        .raeple-benefit .benefit-option--wrap input {
            position: absolute;
            position: absolute !important;
            display: block;
            width: 0 !important;
            height: 0 !important;
            padding: 0 !important;
            margin: -1px !important;
            border: 0 !important;
            overflow: hidden !important;
            clip: rect(0 0 0 0) !important;
        }

            .raeple-benefit .benefit-option--wrap input.focusable:active, .raeple-benefit .benefit-option--wrap input.focusable:focus {
                position: static;
                height: auto;
                width: auto;
                margin: 0;
                clip: auto;
                overflow: visible;
            }

        .raeple-benefit .benefit-option--wrap .check-option--box {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            height: 3.35rem;
            border-radius: 0.5rem;
            background: #a878f6;
            overflow: hidden;
            margin-top: 0.35rem;
        }

            .raeple-benefit .benefit-option--wrap .check-option--box .option-label {
                position: relative;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                -webkit-box-flex: 1;
                -ms-flex: 1;
                flex: 1;
                cursor: pointer;
            }

                .raeple-benefit .benefit-option--wrap .check-option--box .option-label .icon-deco {
                    position: relative;
                    -ms-flex-item-align: center;
                    align-self: center;
                    width: 1.675rem;
                    height: 1.675rem;
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-position: center center;
                    background-image: url("../images/common/icon-check-default.png");
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                }

                .raeple-benefit .benefit-option--wrap .check-option--box .option-label .option-text {
                    font-size: 1.5rem;
                    font-weight: 700;
                    line-height: 3.35rem;
                    letter-spacing: 0;
                    color: #fff;
                    min-height: 3.35rem;
                    margin-left: 0.1795rem;
                }

        .raeple-benefit .benefit-option--wrap .benefit-info-text--wrap {
            margin-top: 0.25rem;
        }

            .raeple-benefit .benefit-option--wrap .benefit-info-text--wrap p {
                font-size: 0.8rem;
                font-weight: 400;
            }

    .raeple-benefit .common-button--wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.3rem;
        margin-top: 1.65rem;
    }

.mission-section {
    position: relative;
    padding-top: 5.1rem;
    padding-bottom: 4.1rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#b68bfd), to(#7736e2));
    background: linear-gradient(180deg, #b68bfd 0%, #7736e2 100%);
    overflow: hidden;
    z-index: 1;
}

    .mission-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        background-image: url("../images/common/bg-mission.png");
        z-index: -1;
    }

    .mission-section .section-inner {
        padding: 0 1.95rem;
    }

    .mission-section .bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .mission-section .heading {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .mission-section .heading .title {
            width: 100%;
            max-width: 17.15rem;
            margin-bottom: 0.3705rem;
        }

        .mission-section .heading .desc {
            font-size: 1.35rem;
            font-weight: 400;
            color: #fff;
            text-align: center;
        }

            .mission-section .heading .desc span {
                font-weight: 700;
            }

    .mission-section .mission-item--wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 0.6rem;
        margin-top: 3.251rem;
    }

        .mission-section .mission-item--wrap .mission-item {
            position: relative;
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            -webkit-box-shadow: 0px 2px 10px 5px rgba(212, 154, 223, 0.3019607843);
            box-shadow: 0px 2px 10px 5px rgba(212, 154, 223, 0.3019607843);
            border-radius: 1rem;
        }

            .mission-section .mission-item--wrap .mission-item img {
                border-radius: 1rem;
                overflow: hidden;
            }

            .mission-section .mission-item--wrap .mission-item::after {
                content: "";
                position: absolute;
                top: -1.4rem;
                left: 50%;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
                border-radius: 2.8rem;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                width: 11.6rem;
                height: 3.25rem;
                border: 3px solid #a878f6;
                font-size: 1.5rem;
                font-weight: 700;
                line-height: 1;
                letter-spacing: 0;
                text-align: center;
                background: #fff;
            }

            .mission-section .mission-item--wrap .mission-item:nth-child(1)::after {
                content: "춘천마라톤";
            }

            .mission-section .mission-item--wrap .mission-item:nth-child(2)::after {
                content: "포켓몬 런";
            }

            .mission-section .mission-item--wrap .mission-item .mission-item--link {
                position: absolute;
                bottom: 1.2805rem;
                left: 50%;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
                width: 100%;
                font-size: 0.65rem;
                font-weight: 500;
                line-height: 1;
                letter-spacing: 0;
                color: #a878f6;
                text-align: center;
            }

.bonus-section {
    position: relative;
    padding-top: 2.294rem;
    padding-bottom: 3.95rem;
    background: #05e861;
    z-index: 10;
}

    .bonus-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center 2.7rem;
        background-image: url("../images/common/bg-bonus.png");
        z-index: -1;
    }

    .bonus-section .section-inner {
        padding: 0 1.95rem;
    }

    .bonus-section .heading {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 2.709rem;
    }

        .bonus-section .heading .title {
            position: relative;
            width: 100%;
            max-width: 22.825rem;
            margin-bottom: 0.579rem;
            z-index: 1;
        }

            .bonus-section .heading .title::after {
                content: "";
                position: absolute;
                bottom: -0.3rem;
                right: -0.75rem;
                width: 100%;
                max-width: 23.55rem;
                height: 1.55rem;
                background-repeat: no-repeat;
                background-size: contain;
                background-position: center center;
                background-image: url("../images/common/img-title-deco.png");
                z-index: -1;
            }

        .bonus-section .heading .desc {
            font-size: 1.35rem;
            font-weight: 400;
            text-align: center;
        }

            .bonus-section .heading .desc span {
                font-weight: 700;
            }

    .bonus-section .bonus-box {
        background: #fff;
        border-radius: 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1.919rem;
        height: 9.65rem;
    }

        .bonus-section .bonus-box .icon-bonus--img {
            width: 7.75rem;
            height: 6.45rem;
        }

        .bonus-section .bonus-box .bonus-text--wrap {
            width: 100%;
            max-width: 15.87rem;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -ms-flex-negative: 0;
            flex-shrink: 0;
        }

            .bonus-section .bonus-box .bonus-text--wrap .title {
                font-size: 1.3rem;
                font-weight: 800;
                line-height: 1.19;
                letter-spacing: 0;
                margin-bottom: 0.25rem;
            }

            .bonus-section .bonus-box .bonus-text--wrap .date {
                font-size: 0.7rem;
                font-weight: 500;
                text-align: center;
                margin-bottom: 0.8rem;
            }

            .bonus-section .bonus-box .bonus-text--wrap .btn-apply {
                width: 100%;
                border-radius: 1.781rem;
                font-size: 1.1rem;
                font-weight: 700;
                line-height: 1.36;
                letter-spacing: 0;
                text-align: center;
                background: #000;
                color: #fff;
                padding: 0.55rem 0;
            }

    .bonus-section .common-button--wrap {
        margin-top: 2.35rem;
    }

        .bonus-section .common-button--wrap .c-button {
            border-color: #ffe100;
        }

.galaxy-benefit-section {
    position: relative;
    padding-top: 4.2935rem;
    padding-bottom: 4.2775rem;
}

    .galaxy-benefit-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        background-image: url("../images/common/bg-galaxy-benefit.png");
        z-index: -1;
    }

    .galaxy-benefit-section .left-object {
        position: absolute;
        width: 10.125rem;
        height: 24.35rem;
        bottom: -0.585rem;
        left: 0;
        -webkit-animation: floating 3s ease-in-out infinite 0.5s;
        animation: floating 3s ease-in-out infinite 0.5s;
    }

    .galaxy-benefit-section .right-object {
        position: absolute;
        width: 11.45rem;
        height: 21.575rem;
        top: 2.9755rem;
        right: 0;
        -webkit-animation: floating 3s ease-in-out infinite;
        animation: floating 3s ease-in-out infinite;
    }

    .galaxy-benefit-section .heading {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        z-index: 10;
    }

        .galaxy-benefit-section .heading .title {
            width: 100%;
            max-width: 20.35rem;
            margin-bottom: 3.5rem;
        }

    .galaxy-benefit-section .galaxy-benefit-item--wrap {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0.6rem;
        z-index: 10;
    }

    .galaxy-benefit-section .galaxy-benefit--item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 9.05rem;
        border: 1px solid #500094;
        border-radius: 1rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #fff;
    }

        .galaxy-benefit-section .galaxy-benefit--item .cate {
            min-width: 9.75rem;
            font-size: 1.45rem;
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: 0;
            text-align: center;
            color: #3f00a7;
        }

        .galaxy-benefit-section .galaxy-benefit--item .dash {
            width: 0.05rem;
            height: 6.5rem;
            background: #500094;
            margin-right: 1.6rem;
        }

        .galaxy-benefit-section .galaxy-benefit--item .value-wrap {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

            .galaxy-benefit-section .galaxy-benefit--item .value-wrap .value-title {
                font-size: 1.2rem;
                font-weight: 700;
                letter-spacing: 0;
                margin-bottom: 0.6rem;
            }

            .galaxy-benefit-section .galaxy-benefit--item .value-wrap .desc-wrap p {
                font-size: 0.7rem;
                font-weight: 500;
                letter-spacing: 0;
            }

                .galaxy-benefit-section .galaxy-benefit--item .value-wrap .desc-wrap p small {
                    font-size: 0.6rem;
                }

        .galaxy-benefit-section .galaxy-benefit--item:last-child .value-wrap .value-title {
            font-size: 1rem;
        }

.caution-section {
    padding: 2.5rem 0;
    background: #d4d4d4;
}

    .caution-section .section-inner {
        padding: 0 2.45rem;
    }

    .caution-section .caution-list--box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2rem;
    }

    .caution-section .caution-list--item .caution-list--title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0;
        margin-bottom: 1.5rem;
    }

        .caution-section .caution-list--item .caution-list--title small {
            display: block;
            font-size: 0.7rem;
            font-weight: 400;
            line-height: 1.6;
            letter-spacing: 0;
        }

    .caution-section .caution-list--item .c-info--wrap {
        display: grid;
        grid-template-rows: -webkit-min-content 0fr;
        grid-template-rows: min-content 0fr;
        -webkit-transition: grid-template-rows 500ms;
        transition: grid-template-rows 500ms;
        transition: grid-template-rows 500ms, -ms-grid-rows 500ms;
        margin-top: 1rem;
    }

        .caution-section .caution-list--item .c-info--wrap .info-flex--wrap {
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-column-gap: 0.25rem;
            -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
            align-items: center;
            margin-bottom: 0.5rem;
        }

            .caution-section .caution-list--item .c-info--wrap .info-flex--wrap .arrow-btn {
                font-size: 1rem;
                font-weight: 500;
                line-height: 1.1;
                letter-spacing: 0;
                text-decoration: underline;
            }

                .caution-section .caution-list--item .c-info--wrap .info-flex--wrap .arrow-btn .default {
                    display: block;
                }

                .caution-section .caution-list--item .c-info--wrap .info-flex--wrap .arrow-btn .active {
                    display: none;
                }

            .caution-section .caution-list--item .c-info--wrap .info-flex--wrap .info-target--btn {
                cursor: pointer;
            }

        .caution-section .caution-list--item .c-info--wrap .info-title {
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: 0;
            color: #070707;
        }

        .caution-section .caution-list--item .c-info--wrap .info-desc {
            overflow: hidden;
        }

        .caution-section .caution-list--item .c-info--wrap.active {
            grid-template-rows: -webkit-min-content 1fr;
            grid-template-rows: min-content 1fr;
        }

            .caution-section .caution-list--item .c-info--wrap.active .info-flex--wrap .arrow-btn .default {
                display: none;
            }

            .caution-section .caution-list--item .c-info--wrap.active .info-flex--wrap .arrow-btn .active {
                display: block;
            }

    .caution-section .caution-list--item ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 0.25rem;
    }

        .caution-section .caution-list--item ul li span {
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 0;
            color: #000000;
            word-break: keep-all;
        }

            .caution-section .caution-list--item ul li span.radius {
                position: relative;
                top: 0.6rem;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                width: 0.2rem;
                height: 0.2rem;
                -ms-flex-negative: 0;
                flex-shrink: 0;
                background: #000000;
                border-radius: 100%;
            }

        .caution-section .caution-list--item ul li + li {
            margin-top: 0.5rem;
        }

.toast-alarm--box {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 1.375rem 0;
    display: inline-block;
    max-width: 25.95rem;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #000;
    border-radius: 1.781rem;
    z-index: 50;
}

    .toast-alarm--box .toast-alarm--text {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0;
        color: #fff;
        text-align: center;
    }

    .toast-alarm--box.show {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

.common-fixed-button--wrap {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    width: 100%;
    max-width: 32rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    z-index: -1;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}

    .common-fixed-button--wrap .c-button {
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
        -webkit-transform-origin: center;
        transform-origin: center;
    }

    .common-fixed-button--wrap.active {
        opacity: 1;
        z-index: 100;
    }

        .common-fixed-button--wrap.active .c-button {
            -webkit-animation: bounce 2s ease infinite both;
            animation: bounce 2s ease infinite both;
        }
