@charset "utf-8";

/* CSS Reset */
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;
  font-size: 100%;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  overflow-y: scroll;
}

body, button, input, select, textarea {
  font-family: "Pretendard Variable", "Pretendard", -apple-system, Roboto, "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 16px;
  color: #333;
}

ol, ul, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: normal;
}

address {
  font-style: normal;
}

a {
  color: #333;
  text-decoration: none;
  display: block;
}

img {
  border: 0;
  vertical-align: top
}

button {
  width: auto;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

:root {
  --color--point: #F25833;
  --color--sub: #1F2C62;
  --color--red: #BA4747;
  --color--yellow: #FF9900;
  --color--green: #5D9732;
  --color--blue: #204AE1;
  --color--black: #111;
  --color--gray: #999;
  --color--more: #aaa;
}