/*  reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    -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: 16px;
    max-width: 1920px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

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;
}
