@charset "utf-8";
/* BASE */
@import "font.css";
:root {
  --bs-blue: #3d6af2;
  --bs-red: #dc3545;
  --bs-orange: #ff5e15;
  --bs-yellow: #ffff00;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #eeeeee;
  --bs-gray-100: #111111;
  --bs-gray-200: #222222;
  --bs-gray-300: #333333;
  --bs-gray-400: #444444;
  --bs-gray-500: #555555;
  --bs-gray-600: #666666;
  --bs-gray-700: #777777;
  --bs-gray-800: #888888;
  --bs-gray-900: #999999;
  --bs-primary: #346aff;
  --bs-primary-light: #2f66ff;
  --bs-primary-dark: #353e8d;
  --bs-secondary: #9498f2;
  --bs-light: #f4f7fb;
  --bs-dark: #b25402;
  --bs-font-sans-serif: 'Pretendard', "돋움", Dotum, Arial, sans-serif;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-thumb {
  height: 30px;
  background-color: var(--bs-primary);
  background-clip: padding-box;
  border: 0px solid transparent;
}
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, input, button, textarea, option 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;
}
html, body {
  margin: 0;
  padding: 0;
}
body, input, button, textarea, select, option {
  color: #444;
  font-size: 14px;
  font-family: var(--bs-font-sans-serif);
}
body {
  line-height: 1;
  min-width: 1050px;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 14px;
  text-align: left;
}
ul, ol, li, dl, dt, dd {
  list-style: none;
}
legend {
  margin: 0;
  padding: 0;
  display: none;
}
img {
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: top;
}
br {
  letter-spacing: normal;
}
a {
  color: #444;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
  word-wrap: break-word;
}
table, table thead, table tbody, table tfoot, table tr, table th, table td {
  border: 0 none;
  margin: 0;
  padding: 0;
}
table caption {
  visibility: hidden;
  overflow: hidden;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.hiddenitem {
  position: absolute;
  width: 0px;
  height: 0px;
  font-size: 0px;
  line-height: 0px;
  overflow: hidden;
  visibility: hidden;
}
/* Reset */
.reset, .reset li {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}
.bg_resetL {
  background: none !important;
  padding-left: 0 !important;
}
.bg_resetR {
  background: none !important;
  padding-right: 0 !important;
}
.bd_reset {
  border: 0 !important;
}
input, select, textarea {
  line-height: 1.2;
  vertical-align: middle;
  border: 1px solid var(--bs-gray);
  border-radius: 5px;
  background: var(--bs-white);
}
input, select {
  height: 36px;
  padding: 0 10px;
}
input:focus, select:focus, textarea:focus {
  outline: 0;
  border: 1px solid var(--bs-primary);
}
input:not([type="button"]):read-only, textarea:read-only {
  background: #f7f7f7;
}
input:read-only:focus, select:read-only:focus, textarea:read-only:focus {
  border: 1px solid #dcdcdc;
}
input::placeholder {
  text-align: left;
  color: #aaaaaa;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: transparent;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
button {
  margin: 0px;
  padding: 0px;
  cursor: pointer;
  border: 0px;
  background: none;
}
button[disabled], button[disabled]:hover, input[disabled] {
  cursor: default;
}