@charset "utf-8";

:root {
    /* --system 변수 사용 예: 컬러값에 opacity를 넣어야하는 경우 rgba(var(--system-black), .8) */
    --system-white: 255, 255, 255; /* #fff */
    --system-black: 0, 0, 0; /* #000 */
    --system-point-blue: 40, 115, 227; /* #2873e3 */
    --system-positive-blue: 22, 84, 209; /* #1654d1 */
    --system-notice-orange: 200, 80, 0; /* #c85000 */

    /* 공통변수 추가 기준은 2개이상 반복시 */
    --ibk-blue: #4393f0;
    --point-blue: rgb(var(--system-point-blue));
    --positive-blue: rgb(var(--system-positive-blue));
    --nagative-red: #e32502;
    --informative-green: #158463;

    --sub-white: rgb(var(--system-white));
    --sub-black: rgb(var(--system-black));
    --sub-blue-50: #f3f9ff;
    --sub-blue-700: #2873e3;
    --sub-light-blue: #e4f2ff;
    --sub-orange: #e8652d;
    --sub-deepblue-700: #5149c1;
    --sub-aquablue-700: #197298;
    --sub-purple-700: #903bb5;
    --sub-pink-700: #a5315c;
    --sub-green-700: #156753;
    --sub-red-700: #b70b0c;
    --sub-light-orange: #f9ecdf;
    --sub-light-red: #f9e6e7;
    --sub-orange-700: #c83000;
    --sub-red-700: #aa3331;
    --sub-green-700: #366b20;
    --sub-gray-50: #f3f4f7;
    --sub-gray-100: #e1e3ea;
    --sub-gray-150: #d3d6de;
    --sub-gray-200: #c5c8d3;
    --sub-gray-300: #b1b5c3;
    --sub-gray-400: #979baa;
    --sub-gray-500: #737684;
    --sub-gray-600: #5a5e6c;
    --sub-gray-700: #454855;
    --sub-gray-800: #30323b;
    --sub-gray-850: #1f2128;
    --sub-gray-900: #101116;

    --button-fill-pressed: #234eaa;
    --button-tint-pressed: #c1e0fc;

    --font-ibk: 'IBKIDream'; /* ibk 폰트 필요시 따로 적용함 */
    --animation-speed: 0.3s; /* animation 기본 스피드 */
    --animation-timing-smooth: cubic-bezier(
        0.62,
        0.16,
        0.13,
        1.01
    ); /* animation-timing-function */
    --content-padding-x: 24px; /* 컨텐츠 기본 좌우 여백 */
    --tong-img-size: 34.3rem; /* 배너 통이미지 사이즈 */
}

/* 로딩창 겹침 방지 */
body.loading-one {
    overflow: hidden;
}
body.loading-one .ibk-loading {
    display: none !important;
}

/* 건너띄기 */
.skip-nav {
    position: absolute;
    inset: -40px 0 auto;
    background-color: var(--sub-black);
    color: var(--sub-white);
    padding: 8px 16px;
    z-index: 30;
    transition: top var(--animation-speed) ease;
    text-align: center;
}
.skip-nav:focus {
    top: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 62.5%;
}
/* 가로 330, 280 사이즈시 화면 작아짐 적용 */
@media (max-width: 330px) {
    html {
        font-size: 52.5%;
    }
}
@media (max-width: 280px) {
    html {
        font-size: 45.5%;
    }
}

body {
    background-color: var(--sub-white);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Pretendard', -apple-system, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--sub-gray-900);
}
body.scrollSave {
    overflow: hidden;
    width: 100%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul,
li {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    cursor: pointer;
}
button {
    border: none;
    cursor: pointer;
    background-color: transparent;
    padding: 0;
    margin: 0;
    font-family: inherit;
}
a:active,
button:active,
label:active {
    -webkit-tap-highlight-color: rgba(var(--system-black), 0.03);
}
label {
    cursor: pointer;
}

button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

input {
    border-radius: 0;
    background-color: transparent;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    box-shadow: inset 0 0 0 1000px transparent;
    transition: background-color 5000s ease-in-out 0s; /* 일부 브라우저 깜박임 방지 */
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
    height: auto;
}

[type='search'] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
}

progress {
    vertical-align: baseline;
}

.blind {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

img {
    max-width: 100%;
}

/* display */
.-hide {
    display: none !important;
}

/* color */
.color-primary {
    color: var(--ibk-blue);
}
.color-blue {
    color: var(--point-blue);
}
.color-red {
    color: var(--nagative-red);
}

/* size */
.width-full {
    width: 100%;
}

/* 구분선 */
.hr {
    border: none;
    background-color: var(--sub-gray-50);
}
.hr:first-child {
    margin-top: 0;
}
.hr:last-child {
    margin-bottom: 0;
}
.hr.-thin {
    height: 1px;
}
.hr.-sm {
    height: 8px;
}
.hr.-md {
    height: 12px;
}

/* align */
.left {
    text-align: left;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}

/* text */
.normal {
    font-weight: 400;
}
.medium {
    font-weight: 500;
}
.semibold {
    font-weight: 600;
}
.bold {
    font-weight: 700;
}
.break-word {
    overflow-wrap: break-word;
}
.break-all {
    word-break: break-all;
}
.keep-all {
    word-break: keep-all;
}

/* margin */
.m-auto {
    margin: auto !important;
}
.mx-out {
    margin-inline-start: calc(var(--content-padding-x) * -1);
    margin-inline-end: calc(var(--content-padding-x) * -1);
}
.mx-04 {
    margin-right: 0.4rem !important;
    margin-left: 0.4rem !important;
}
.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}
.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}
.my-10 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.my-15 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.my-16 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
}
.my-20 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}
.my-24 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
}
.my-30 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}
.my-32 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
}
.my-40 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}
.mt-auto {
    margin-top: auto !important;
}
.mr-auto {
    margin-right: auto !important;
}
.mb-auto {
    margin-bottom: auto !important;
}
.ml-auto {
    margin-left: auto !important;
}
.m-0 {
    margin: 0 !important;
}
.m-10 {
    margin: 1rem !important;
}
.m-20 {
    margin: 2rem !important;
}
.m-30 {
    margin: 3rem !important;
}
.m-40 {
    margin: 4rem !important;
}
.m-50 {
    margin: 5rem !important;
}
.m-60 {
    margin: 6rem !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-04 {
    margin-top: 0.4rem !important;
}
.mt-06 {
    margin-top: 0.6rem !important;
}
.mt-08 {
    margin-top: 0.8rem !important;
}
.mt-10 {
    margin-top: 1rem !important;
}
.mt-12 {
    margin-top: 1.2rem !important;
}
.mt-15 {
    margin-top: 1.5rem !important;
}
.mt-16 {
    margin-top: 1.6rem !important;
}
.mt-18 {
    margin-top: 1.8rem !important;
}
.mt-20 {
    margin-top: 2rem !important;
}
.mt-24 {
    margin-top: 2.4rem !important;
}
.mt-28 {
    margin-top: 2.8rem !important;
}
.mt-30 {
    margin-top: 3rem !important;
}
.mt-32 {
    margin-top: 3.2rem !important;
}
.mt-34 {
    margin-top: 3.4rem !important;
}
.mt-40 {
    margin-top: 4rem !important;
}
.mt-48 {
    margin-top: 4.8rem !important;
}
.mt-50 {
    margin-top: 5rem !important;
}
.mt-54 {
    margin-top: 5rem !important;
}
.mt-58 {
    margin-top: 5.8rem !important;
}
.mt-60 {
    margin-top: 6rem !important;
}
.mt-62 {
    margin-top: 6.2rem !important;
}
.mt-64 {
    margin-top: 6.4rem !important;
}
.mr-0 {
    margin-right: 0 !important;
}
.mr-04 {
    margin-right: 0.4rem !important;
}
.mr-08 {
    margin-right: 0.8rem !important;
}
.mr-10 {
    margin-right: 1rem !important;
}
.mr-12 {
    margin-right: 1.2rem !important;
}
.mr-14 {
    margin-right: 1.4rem !important;
}
.mr-16 {
    margin-right: 1.6rem !important;
}
.mr-20 {
    margin-right: 2rem !important;
}
.mr-30 {
    margin-right: 3rem !important;
}
.mr-40 {
    margin-right: 4rem !important;
}
.mr-50 {
    margin-right: 5rem !important;
}
.mr-60 {
    margin-right: 6rem !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-10 {
    margin-bottom: 1rem !important;
}
.mb-12 {
    margin-bottom: 1.2rem !important;
}
.mb-16 {
    margin-bottom: 1.6rem !important;
}
.mb-20 {
    margin-bottom: 2rem !important;
}
.mb-22 {
    margin-bottom: 2.2rem !important;
}
.mb-30 {
    margin-bottom: 3rem !important;
}
.mb-32 {
    margin-bottom: 3.2rem !important;
}
.mb-34 {
    margin-bottom: 3.4rem !important;
}
.mb-40 {
    margin-bottom: 4rem !important;
}
.mb-50 {
    margin-bottom: 5rem !important;
}
.mb-54 {
    margin-bottom: 5.4rem !important;
}
.mb-60 {
    margin-bottom: 6rem !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-08 {
    margin-bottom: 0.8rem !important;
}
.mb-10 {
    margin-bottom: 1rem !important;
}
.mb-12 {
    margin-bottom: 1.2rem !important;
}
.mb-20 {
    margin-bottom: 2rem !important;
}
.mb-24 {
    margin-bottom: 2.4rem !important;
}
.mb-30 {
    margin-bottom: 3rem !important;
}
.mb-40 {
    margin-bottom: 4rem !important;
}
.mb-50 {
    margin-bottom: 5rem !important;
}
.mb-60 {
    margin-bottom: 6rem !important;
}
.ml-0 {
    margin-left: 0 !important;
}
.ml-04 {
    margin-left: 0.4rem !important;
}
.ml-08 {
    margin-left: 0.8rem !important;
}
.ml-10 {
    margin-left: 1rem !important;
}
.ml-14 {
    margin-left: 1.4rem !important;
}
.ml-16 {
    margin-left: 1.6rem !important;
}
.ml-20 {
    margin-left: 2rem !important;
}
.ml-30 {
    margin-left: 3rem !important;
}
.ml-40 {
    margin-left: 4rem !important;
}
.ml-50 {
    margin-left: 5rem !important;
}
.ml-60 {
    margin-left: 6rem !important;
}

/* padding */
.p-0 {
    padding: 0 !important;
}
.p-10 {
    padding: 1rem !important;
}
.p-16 {
    padding: 1.6rem !important;
}
.p-20 {
    padding: 2rem !important;
}
.p-24 {
    padding: 2.4rem !important;
}
.p-30 {
    padding: 3rem !important;
}
.p-40 {
    padding: 4rem !important;
}
.p-50 {
    padding: 5rem !important;
}
.p-60 {
    padding: 6rem !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.pt-04 {
    padding-top: 0.4rem !important;
}
.pt-10 {
    padding-top: 1rem !important;
}
.pt-12 {
    padding-top: 1.2rem !important;
}
.pt-16 {
    padding-top: 1.6rem !important;
}
.pt-20 {
    padding-top: 2rem !important;
}
.pt-24 {
    padding-top: 2.4rem !important;
}
.pt-30 {
    padding-top: 3rem !important;
}
.pt-32 {
    padding-top: 3.2rem !important;
}
.pt-40 {
    padding-top: 4rem !important;
}
.pt-48 {
    padding-top: 4.8rem !important;
}
.pt-50 {
    padding-top: 5rem !important;
}
.pt-60 {
    padding-top: 6rem !important;
}
.pr-0 {
    padding-right: 0 !important;
}
.pr-04 {
    padding-right: 0.4rem !important;
}
.pr-10 {
    padding-right: 1rem !important;
}
.pr-20 {
    padding-right: 2rem !important;
}
.pr-24 {
    padding-right: 2.4rem !important;
}
.pr-30 {
    padding-right: 3rem !important;
}
.pr-40 {
    padding-right: 4rem !important;
}
.pr-50 {
    padding-right: 5rem !important;
}
.pr-60 {
    padding-right: 6rem !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.pb-08 {
    padding-bottom: 0.8rem !important;
}
.pb-10 {
    padding-bottom: 1rem !important;
}
.pb-16 {
    padding-bottom: 1.6rem !important;
}
.pb-20 {
    padding-bottom: 2rem !important;
}
.pb-24 {
    padding-bottom: 2.4rem !important;
}
.pb-30 {
    padding-bottom: 3rem !important;
}
.pb-40 {
    padding-bottom: 4rem !important;
}
.pb-48 {
    padding-bottom: 4.8rem !important;
}
.pb-50 {
    padding-bottom: 5rem !important;
}
.pb-60 {
    padding-bottom: 6rem !important;
}
.pb-64 {
    padding-bottom: 6.4rem !important;
}
.pl-0 {
    padding-left: 0 !important;
}
.pl-04 {
    padding-left: 0.4rem !important;
}
.pl-08 {
    padding-left: 0.8rem !important;
}
.pl-10 {
    padding-left: 1rem !important;
}
.pl-16 {
    padding-left: 1.6rem !important;
}
.pl-20 {
    padding-left: 2rem !important;
}
.pl-24 {
    padding-left: 2.4rem !important;
}
.pl-30 {
    padding-left: 3rem !important;
}
.pl-40 {
    padding-left: 4rem !important;
}
.pl-50 {
    padding-left: 5rem !important;
}
.pl-60 {
    padding-left: 6rem !important;
}
.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.px-5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}
.px-8 {
    padding-right: 0.8rem !important;
    padding-left: 0.8rem !important;
}
.px-10 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
.px-16 {
    padding-right: 1.6rem !important;
    padding-left: 1.6rem !important;
}
.px-20 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
}
.px-24 {
    padding-right: 2.4rem !important;
    padding-left: 2.4rem !important;
}
.px-40 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
}
.px-60 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
}

/* border */
.b-none {
    border: none !important;
}
.bt-none {
    border-top: none !important;
}
.br-none {
    border-right: none !important;
}
.bb-none {
    border-bottom: none !important;
}
.bl-none {
    border-left: none !important;
}
.bx-none {
    border-right: none !important;
    border-left: none !important;
}
.by-none {
    border-top: none !important;
    border-bottom: none !important;
}

/* 약관 */
.grp-agree {
    line-height: 1.5;
    padding: 3.2rem var(--content-padding-x) 6.4rem;
    font-size: 1.4rem;
}
.grp-agree h2 {
    font-size: 1.8rem;
}
.grp-agree h3 {
    font-size: 1.6rem;
}
.grp-agree :is(.listacc, .listnum, .listcircle, .listdash) {
    font-size: 1.4rem;
    color: var(--sub-gray-700);
}
.grp-agree .listacc li {
    position: relative;
    padding-left: 10px;
}
.grp-agree .listacc li::before {
    content: '';
    position: absolute;
    inset: 0.9rem auto auto 0;
    width: 3px;
    height: 3px;
    background-color: currentColor;
    border-radius: 0.3rem;
}
.grp-agree .listdash li {
    position: relative;
    padding-left: 10px;
}
.grp-agree .listdash li::before {
    content: '-';
    position: absolute;
    inset: 0 auto auto 0;
}
.grp-agree .listnum {
    counter-reset: counter;
}
.grp-agree .listnum li {
    position: relative;
    padding-left: 14px;
    counter-increment: counter;
}
.grp-agree .listnum li::before {
    content: counter(counter) '.';
    position: absolute;
    inset: 0 auto auto 0;
}
.grp-agree .listcircle {
    counter-reset: counter;
}
.grp-agree .listcircle li {
    position: relative;
    padding-left: 18px;
    counter-increment: counter;
}
.grp-agree .listcircle li::before {
    content: counter(counter);
    position: absolute;
    inset: 0.4rem auto auto 0;
    border: 1px solid var(--sub-gray-700);
    border-radius: 50%;
    text-align: center;
    width: 1.4rem;
    height: 1.4rem;
    line-height: 1.2rem;
    font-size: 1rem;
}
.grp-agree.-inner {
    padding: 0;
    color: var(--sub-gray-600);
    font-size: 1.3rem;
}
.grp-agree.-inner :is(.listacc, .listnum, .listcircle, .listdash) {
    color: var(--sub-gray-600);
    font-size: 1.3rem;
}
.grp-agree.-inner .listcircle li::before {
    border-color: var(--sub-gray-600);
}

/* 개발자도구 차단 */
.dev-error {
    margin-top: 6.4rem;
    text-align: center;
}
.dev-error h2 {
    margin-top: 1.6rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sub-gray-900);
}
.dev-error p {
    margin-top: 1.6rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--sub-gray-600);
}
.dev-error::before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 6rem;
    height: 6rem;
    background: url(../images/common/icon-error.svg) no-repeat center / 6rem
        auto;
}
