@charset "utf-8";
/* reset.css */

@import url('/css/font.css');

html, body {
	margin: 0;
	padding: 0;
  height: 100%;
	font-family: 'SCoreDream', 'Roboto', 'Pretendard', sans-serif;
	word-break: keep-all;
}

body {
    background-color: #01030D;
}
*, *::before, *::after {
	box-sizing: border-box;
}

ul, li, dl, dt, dd, p, h1, h2, h3, h4, h5 {
	margin: 0;
	padding: 0;
	list-style: none;
}

img {
	vertical-align: top;
	border: none;
}
section { width: 100%; box-sizing: border-box; word-break: keep-all !important;}

::selection,
::-moz-selection {
	background-color: #5fb6c6;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

a {
	text-decoration: none;
	color: #666;
}

button, label {
	cursor: pointer;
	border: none;
}

select {
	height: 32px;
	border: 1px solid #dbdbdb;
	border-radius: 5px;
	padding: 0 40px 0 10px !important;
	background: url(/img/common/select_arrow.jpg) right 10px top 50% no-repeat #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: inherit;
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: inherit;
}

pre {
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -o-pre-wrap;
	word-wrap: break-word;
}