html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	color: #333;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "M PLUS Rounded 1c",sans-serif;
	overflow-x: hidden;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

.charactorPop {
	animation: charactor-pop 1s linear;
}

@keyframes charactor-pop {
	0% {
		opacity: 0;
	}
	30% {
		opacity: 1;
		transform: translateY(0);
	}
	65% {
		transform: translateY(-16px);
	}
	70% {
		transform: translateY(-24px);
	}
	80% {
		transform: translateY(0);
	}
	90% {
		transform: translateY(-16px);
	}
	100% {
		transform: translateY(0);
	}
}

::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, .1);
	margin: 16px 0;
}
::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 50, .5);
	border-radius: 10px;
	box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
