/* 리셋 */
* {
	margin: 0;
	padding: 0;
}
*, *:before, *:after {
	box-sizing: border-box;
}
html {
	font-size: 10px;
}
body {
	font-family: 'NSKR', sans-serif;
	background: #fff;
	color: #1e1e1e;
	letter-spacing: -0.1rem;
}
li {
	list-style: none;
}
a {
	text-decoration: none;
	color: #1e1e1e;
}
img {
	vertical-align: middle;
	border: 0;
}
table {
	border-collapse: collapse;
}
fieldset {
	border: 0 none;
}
input {
	font-family: 'NSKR', sans-serif;
	font-size: 1.5rem;
	letter-spacing: -0.1rem;
}
input::placeholder, textarea::placeholder {
	font-family: 'NSKL';
	color: #aaa;
	letter-spacing: -0.1rem;
}
input[type="password"] {
	font-family: sans-serif;
}
input[type="date"]::before {
	content: attr(data-placeholder);
	width: 100%;
	color: #aaa;
}
input[type="date"]:focus::before, input[type="date"]:valid::before {
	display: none;
}
a:focus, input:focus, select:focus, textarea:focus, button:focus {
	outline: none;
}
input[type="checkbox"] {
	width: 18px;
	height: 18px;
	vertical-align: middle;
}
input[type=submit] {
	-webkit-appearance:none;
}
select {
	font-family: 'NSKR', sans-serif;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
textarea {
	vertical-align: middle;
	font-family: 'NSKR', sans-serif;
	font-size: 1.5rem;
}
button {
	cursor: pointer;
	border: 0 none;
	font-family: 'NSKR', sans-serif;
}
h1, h2, h3, h4, h5, h6, th {
	font-weight: normal;
}
address, i {
	font-style: normal;
}
strong {
	font-weight: normal;
}

/* 공통 클래스, 아이디 */
.container {
	width: 1440px;
	max-width: 100%;
	margin: 0 auto;
}
.hidden {
	position: absolute;
	left: -9999px;
	width: 0px;
	height: 0px;
	line-height: 0;
	font-size: 1px;
	overflow: hidden;
}
#modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	z-index: 10001;
	display: none;
}
#log {
    position: fixed;
    z-index: 100000;
    top: 200px;
    left: 20px;
    width: 100px;
    height: 50px;
    color: #000;
    font-size: 50px;
    font-weight: bold;
}
.visibility-hidden {
	display: none;
}
label span.radio {
	width: 20px;
	height: 20px;
	display: inline-block;
	background: url('../img/radio.png') no-repeat center / contain;
	vertical-align: middle;
	margin-right: 6px;
}
input[type="radio"]:checked + label span.radio {
	background-image: url('../img/radio-checked.png');
}
label span.radio2 {
	background-image: url('../img/radio2.png');
}
input[type="radio"]:checked + label span.radio2 {
	background-image: url('../img/radio-checked2.png');
}
label span.checkbox {
	width: 20px;
	height: 20px;
	display: inline-block;
	background: url('../img/check.png') no-repeat center / contain;
	vertical-align: middle;
	margin-right: 6px;
}
input[type="checkbox"]:checked + label span.checkbox {
	background-image: url('../img/check-checked.png');
}