/* <-- reset --> */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    box-sizing: border-box;
}

/**
html {font-size: 62.5%;}
body {font-size: 1.6rem;}
의 의미
기본 폰트 크기를 16px에서 10px로 변환하여 rem 단위 계산을 매우 직관적으로 만듭니다.
예: 16px = 1.6rem, 24px = 2.4rem, 10px = 1rem
 */
html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: none;
}

body {
    line-height: 1.4;
    font-family: "KBFGText", "pretendard", sans-serif, 'Noto Sans KR';
    font-size: 1.6rem;
}

ol, ul {
    list-style: none;
}

a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

img {
    max-width: 100%; /* width: 100%에서 변경 */
    height: auto; /* height: 100%에서 변경 */
    vertical-align: top;
}

button {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

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

em {
    font-style: normal;
}

/* <-- reset --> */

body.pc {
    width: 100%;
    max-width: 1920px;
    min-width: 640px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

/* 공통, KB 색상값 선언 */
:root {
    --kb-yellow: #FCAF17;
    --kb-yellow-light: #FDB913;
    --kb-accent-color: #ff691a;
    --kb-gray: #766c61;
    --terms-text-color: #756E5F
}


/* 기본 컨테이너 설정 */
.container {
    min-width: 425px;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    font-size: 16px;
}

/* 스크린 리더용 텍스트 SEO 권장 CSS*/
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* 공통 색상 클래스 */
.color-white {
    color: white;
}

.color-accent {
    color: var(--kb-accent-color);
}

.kb-yellow {
    color: var(--kb-yellow);
}

/* 공통 텍스트 스타일 */
.terms-text {
    color: var(--terms-text-color);
    font-weight: 100;
    text-align: center;
    font-size: clamp(7px, 1vw, 18px);
}




