@charset 'utf-8';
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");

/*━━━━━━━━━━━━━━━━━CSS초기화 (Eric Meyer's 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,
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 {
  font-family: "Noto Sans KR", sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  color: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html {
  font-size: 62.5%;
  font-weight: 500;
  font-family: "Noto Sans KR", sans-serif;
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  line-height: 1;
  font-size: 1.6rem;
  overflow: hidden;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: inherit;
}
ol,
ul,
li {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
 /* border-collapse: collapse;*/
  /*border-spacing: 0;*/
}
button,
input {
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 0;
}
button {
  border: none;
  background-color: transparent;
}
textarea {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: transparent;
  border: 0;
  word-break: keep-all;
  word-wrap: break-word;
  resize: none;
}
img {
  max-width: 100%;
  height: auto;
}
/* input 기본 스타일 초기화 */
input {
  font-family: "Noto Sans KR", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0.5rem;
  color: var(--text-color);
  box-sizing: border-box;
  border: 1px solid var(--border-color);
}
input[type="date"] {
  background-color: var(--white);
}

input:focus {outline: none  !important}


select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  outline: none;
  border-radius: 0;
  /* padding: 0 2rem 0 1rem; */
  background: url("/img/sel-icon.png") no-repeat 92% center #fff;
  cursor: pointer;
  text-align-last: center;
  text-align: center;
  font-size: 1.4rem;
  -ms-text-align-last: center;
  -moz-text-align-last: center;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
  font-family: "Noto Sans KR", sans-serif;
  color: var(--text-color);
  box-sizing: border-box;
}

:root {
  --main-color: #005293;
  --white: #ffffff;
  --text-color: #555;
  --border: 1px solid #e3e3e3;
  --blue: #0096da;
}

::selection {
  background: var(--main-color);
  color: #fff;
}

/*스크롤바커스텀 */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: none !important;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
 /* background: var(--main-color);*/
  background: #CCC;
}

@media screen and (max-width: 850px) {
  html {
    font-size: 58%;
  }
}
