@charset "utf-8";

/*
    #기능: css 초기화
 */

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	outline: none;
}
html {
	margin: 0;
	padding: 0;
	font-size: 16px;
}
body {
	margin: 0;
	padding: 0;
	line-height: 1.3;
	color: #000;
	-webkit-text-size-adjust: none;
	overflow-x: hidden;
}
div, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, p, form, fieldset, input, table, tr, th, td, button, textarea, select {
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
img {
	border: 0;
	vertical-align: top;
	max-width: 100%;
}
hr {
	display: none;
}
ul, ol, dl, dt, dd, li {
	list-style: none;
}
table, th, td {
	border-collapse: collapse;
	border-spacing: 0;
	font-weight: normal;
}
caption {
	display: block;
	text-indent: -9999em;
	overflow: hidden;
	height: 0;
	font-size: 0;
	line-height: 0;
}
fieldset, blockquote, iframe, button {
	border: none;
}
i, em, u, cite {
	font-style: normal;
}
strong, em, b {
	font-weight: normal;
}
a {
	color: #000;
	text-decoration: none;
}
button {
	background: transparent;
	cursor: pointer;
	vertical-align: middle;
	margin: 0;
	padding: 0;
	color: #000;
	-webkit-text-size-adjust: none;
	outline: none;
}
input, select, textarea, button {
	font-size: 16px;
	border-radius: 5px;
}
button, input[type="submit"], input[type="button"], input[type="reset"] {
	cursor: pointer;
	-webkit-appearance: none;
	outline: none;
}
section, nav, article, aside, header, footer, main {
	display: block;
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-inner-spin-button {
	display: none;
}
input[type="text"],
input[type="search"],
input[type="tel"],
input[type="number"],
input[type="password"] {
	-webkit-appearance: none;
	outline: none;
}
input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
	color: #aaa;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	color: transparent;
}
::-ms-clear, ::-ms-reveal {
	display: none;
}
select, textarea, button {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}
input[type="text"], input[type="search"] {
	-webkit-appearance: none;
	outline: none;
}
input:-webkit-autofill {
	box-shadow: 0 0 0 1000px #fff inset !important;
	-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}
input[type="text"],
input[type="search"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"] {
	border: 1px solid var(--border-color);
	background: #fff;
	height: 60px;
	line-height: 60px;
	padding: 0 10px;
	outline: none;
}
select {
	border: 1px solid var(--border-color);
	background: #fff;
	height: 60px;
	line-height: 60px;
	padding: 0 0 0 10px;
}
textarea {
	border: 1px solid var(--border-color);
	background: #fff;
	padding: 10px;
}
textarea::placeholder,
textarea::-webkit-input-placeholder,
textarea:-ms-input-placeholder {
	color: #ccc;
}
input[type="checkbox"],
input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
@media all and (max-width: 1023px) {
	input[type="text"],
	input[type="search"],
	input[type="number"],
	input[type="email"],
	input[type="tel"],
	input[type="password"] {
		height: 55px;
		line-height: 55px;
	}
	select {
		border: 1px solid var(--border-color);
		height: 45px;
		line-height: 45px;
	}

}
@media all and (max-width: 767px) {
	input[type="text"],
	input[type="search"],
	input[type="number"],
	input[type="email"],
	input[type="tel"],
	input[type="password"] {
		height: 45px;
		line-height: 45px;
	}
	select {
		border: 1px solid var(--border-color);
		height: 45px;
		line-height: 45px;
	}
}
