@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&family=Noto+Sans+KR:wght@100..900&display=swap');
@import url(../fonts/pretendard/font.css);
@import url(../fonts/sCoreDream/font.css);
/* http://blog.naver.com/mvcweb */
/* CSS RESET */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
object,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
em,
img,
ins,
q,
strong,
sub,
sup,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
a,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
  /*세로모드에서 가로모드로 전환할때 텍스트가 약간 커지는 현상 방지*/
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol,
li,
dl {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a,
a:link,
a:hover,
a:active {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

em,
i,
address {
  font-style: normal;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
fieldset {
  max-width: 100%;
  image-rendering: auto;
  /* image-rendering: -webkit-optimize-contrast !important; */
  border: 0;
  vertical-align: middle;
}

legend {
  display: none;
}

textarea {
  resize: none;
  outline: none;
}

textarea,
input {
  -webkit-border-radius: 1px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /*form요소의 기본 스타일을 없앰*/
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  vertical-align: middle;
}

button {
  overflow: visible;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  text-decoration: none;
  /* outline: none; */
}

iframe {
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

select{
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}
select::-ms-expand {
  border: none;
  background-color: inherit;
}
*:focus {
	outline-offset: 0.125rem;
	outline: 2px solid rgba(36, 107, 235, 1);
}
html {
	font-size: 100%;
}

body {
	overflow-y: scroll;
	/* max-width: 1920px; */
	width: 100%;
	margin:0 auto;
	color: #091634;
	/* font-size: 1rem; */
	font-family: 'Pretendard', 'Poppins', 'Noto Sans KR', sans-serif, 'Nanum Gothic', 돋움, dotum, 굴림, gulim, Helvetica, AppleGothic;
	line-height: 1.4;
	/* letter-spacing: -0.8px; */
}
@media (hover: hover) and (pointer: coarse) {
	*:focus {
		outline: none !important;
	}
	
}
@media (hover: none) and (pointer: coarse) {
	*:focus {
		outline: none !important;
	}
	
}