@charset "utf-8";

*,
*::before,
*::after {
	box-sizing: border-box;
	margin:0;
	padding:0;
}

body {
	font-family: sans-serif;
	background-color: #fff;
}

ol,ul {
	list-style:none;
}

a {
	text-decoration: none;
}

img,
picture,
iframe {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

fieldset,img {
	border:0;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}

caption,th {
	text-align:left;
}

/*clearfix-------------------------------*/
.clearfix::after {
	content:"";
	display:block;
	clear:both;
}