@charset "UTF-8";

:root {
  --font-base: 'Noto Sans KR', sans-serif;
  --color-text: #10141b;
  --color-sub: #66707d;
  --color-line: rgba(255,255,255,0.14);
  --color-bg: #ffffff;
  --color-soft: #f4f6f8;
  --color-point: #1ec8ff;
  --color-point-dark: #0e99c8;
  --color-dark: #0b1018;
  --color-dark-2: #121a26;
  --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;
}
