@charset "utf-8";
* {
	word-break: break-all;
	margin: 0;
	padding: 0;
	list-style-type: none;
	box-sizing: border-box;
}
::before , ::after {
	box-sizing: inherit;
}
html {
	font-size: 62.5%; /* sets the base font to 10px for easier math */
}

body {
	font-family: 'メイリオ',Meiryo,Osaka,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',MS PGothic,sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	color: #fff;
 	/* sets the default sizing to make sure nothing is actually 10px */
	line-height:120%;
	background: #000;
}
img{
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}
a{
	color: #fff;
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}
button {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

/* clear
---------------------------------------------------- */
.clear{
	clear: both;
}

.cfix {width:100%;}
.cfix:after{
	content: "";
	clear: both;
	display: block;
}
