@charset "UTF-8";

:root {
  --font-base: 'Noto Sans KR', sans-serif;
  --color-text: #111111;
  --color-sub: #5f6670;
  --color-line: #dfe4ea;
  --color-bg: #ffffff;
  --color-soft: #f3f6fa;
  --color-point: #b61f2f;
  --color-point-dark: #8f1826;
  --color-dark: #0f1520;
  --container: 1440px;
  --transition: all 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  word-break: keep-all;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

address {
  font-style: normal;
}

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