@font-face {
	font-family: 'S-CoreDream';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'S-CoreDream';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'S-CoreDream';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'S-CoreDream';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'S-CoreDream';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-7ExtraBold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

html {
	scroll-behavior: smooth;
}

* {
	box-sizing: border-box;
}

body {
	background-color: #fff;
	color: #000;
	margin: 0;
	font-family: 'S-CoreDream';
	font-weight: 400;
}

a {
	text-decoration: none;
	color: #000;
}

em {
	font-style: normal;
}

img {
	width: 100%;
	max-width: fit-content;
}

ul, li {
	list-style: none;
	padding: 0;
	margin: 0;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 400;
	font-size: 16px;
	margin: 0;
}

p {
	margin: 0;
}

button {
	background-color: transparent;
	outline: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-family: 'S-CoreDream';
}

table {
	border-collapse: collapse;
	width: 100%;
}

address {
	font-style: normal;
}

input[type=radio] {
	display: none;
}
input[type=radio] + label em {
	display: inline-block;
	min-width: 20px;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border: 1px solid #d7d7d7;
	border-radius: 50%;
	position: relative;
}
input[type=radio] + label em:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: #0196da;
	transition: 0.2s ease;
}
input[type=radio]:checked + label em:before {
	transform: translate(-50%, -50%) scale(1);
}
input[type=text],
input[type=password],
textarea {
	border: 1px solid #d7d7d7;
	padding: 10px;
	background-color: #fff;
	border-radius: 5px;
	outline: none;
	font-family: 'S-CoreDream';
}
select {
	font-family: 'S-CoreDream';
	border: 1px solid #d7d7d7;
	padding: 10px;
	background-color: #fff;
	border-radius: 5px;
	outline: none;
	appearance: none;
	background: #fff url(/img/member/select_arrow.png) no-repeat center right 10px;
}
input[type=text]::placeholder,
input[type=password]::placeholder {
	transition: 0.3s ease;
}
input[type=text]:focus::placeholder,
input[type=password]:focus::placeholder {
	opacity: 0;
	visibility: hidden;
}

input[type=checkbox] {
	display: none;
}
input[type=checkbox] + label em {
	display: inline-block;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border: 1px solid #0196da;
	background-color: #fff;
	position: relative;
}
input[type=checkbox] + label em:before {
	content: '';
	position: absolute;
	/* width: 3px;
	height: 8px; */
	width: 0;
	height: 0;
	border-radius: 30px;
	background-color: #0196da;
	transform: rotate(-35deg);
	top: 7px;
	left: 5px;
	transition: 0.1s ease;
}
input[type=checkbox] + label em:after {
	content: '';
	position: absolute;
	/* width: 3px;
	height: 13px; */
	width: 0;
	height: 0;
	background-color: #0196da;
	transform: rotate(35deg);
	top: 3px;
	left: 10px;
	border-radius: 30px;
	transition: 0.1s ease;
}
input[type=checkbox]:checked + label em:before {
	width: 3px;
	height: 8px;
}
input[type=checkbox]:checked + label em:after {
	width: 3px;
	height: 13px;
}