@charset "utf-8";

/* 共通設定 */
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}
* {
	border: none;
	padding: 0;
	margin: 0;
	list-style-type: none;
	box-sizing: border-box;
	font-style: normal;
	text-decoration: none;
}
html {
	font-size: 62.5%;
}
a {
}
a::before, a::after {
	position: absolute;
	z-index: -1;
	content: '';
}
a, a::before, a::after {
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
a:hover {
	opacity: 0.5;
}
u {
	text-decoration: underline;
}

/* ページ設定 */
body {
	background-color: #000;
}
#page {
	width: 950px;
	background-color: #000;
	padding: 10px;
	margin: 0px auto;
}
@media(max-width:949px){
	body {
		width:100%;
		overflow:hidden;
	}
	#page {
		width: 100%;
	}
}
#topImg {
	margin-bottom: 20px;
}
#topImg img {
	width: 100%;
}