@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Regular.woff2');
    font-weight: 500;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-SemiBold.woff2');
    font-weight: 700;
}
/* Reset */
body,
input,
select,
textarea,
pre,
button {
    font-family: 'Pretendard', Pretendard, -apple-system,
        BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI',
        'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic',
        'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}
body * {
    outline: none;
    box-sizing: border-box;
    font-synthesis: none;
}
* {
    -webkit-tap-highlight-color: transparent;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
blockquote,
pre,
code,
address,
ul,
ol,
li,
menu,
nav,
section,
article,
aside,
dl,
dt,
dd,
table,
thead,
tbody,
tfoot,
label,
caption,
th,
td,
form,
fieldset,
legend,
hr,
input,
button,
textarea,
object,
figure,
figcaption,
hr {
    margin: 0;
    padding: 0;
}
body {
    font-size: 1rem;
    -webkit-text-size-adjust: none;
    word-wrap: break-word;
    line-height: 1.4;
    font-weight: 500;
}
body.fixed {
    overflow: hidden;
}
body,
input,
select,
textarea,
pre {
    border: none;
    font-size: 1rem;
    color: var(--col-black);
    margin: 0 auto;
}
button {
    border: none;
    outline: none;
    cursor: pointer;
    background-color: transparent;
    font-size: 1rem;
}
ul,
ol,
li {
    list-style: none;
}
table {
    border-spacing: 0;
    width: 100%;
}
img,
fieldset {
    border: 0;
}
address,
cite,
code,
em {
    font-style: normal;
}
label,
img,
input,
select,
textarea,
button {
    vertical-align: middle;
}
.hide,
legend {
    overflow: hidden;
    display: block;
    position: absolute;
    border: 0;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
}
hr {
    border: none;
    height: 1px;
    background-color: transparent;
}
main,
header,
section,
nav,
footer,
aside,
article,
figure {
    display: block;
}
a {
    color: var(--col-gray2);
    cursor: pointer;
}
pre {
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: var(--col-gray2);
    line-height: 1.5;
    font-size: 1rem;
}
img {
    max-width: 100%;
}
strong,
em {
    display: inline-block;
    font-weight: var(--bold-f);
}
a {
    text-decoration: none;
}

input[type='password'],
input[type='tel'],
input[type='time'],
input[type='text'],
input[type='search'],
input[type='email'],
input[type='file'],
input[type='url'],
input[type='number'],
input[type='date'],
textarea {
    transition: all 0.3s;
    box-sizing: border-box;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    caret-color: var(--bg-sky);
}
input[type='password']::-moz-reveal,
input[type='password']::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type='text']::-ms-clear {
    display: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--col-gray2);
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}
input::placeholder {
    color: var(--col-gray5);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select::-ms-expand {
    display: none;
}
  