@charset "utf-8";

*, *::before, *::after {
	box-sizing: border-box;
}
* {
	margin: 0;
	padding: 0;
	overflow-wrap: break-word;
}
html {
	width: 100%;
	height: 100%;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	width: 100%;
	height: 100%;
	-webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}
th, dt, h1, h2, h3, h4, h5, h6,
input, button, textarea, select {
	font: inherit;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*:focus {
	outline: none;
}
button {
	display: block;
	appearance: none;
	cursor: pointer;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	background-color: transparent;
	border: none;
	outline: none;
}
iframe {
	vertical-align: bottom;
}


.clearfix::after {
	content: '';
	display: block;
	clear: both;
}