/*リセット*/
*{
	margin:0 0 0 0;
	padding:0 0 0 0;
	font-size:16px;
	font-weight:normal;
}
@keyframes ContentSpaceCover{
	0%{
		opacity: 0%;
	}
	100%{
		opacity: 100%
	}
}
#ContentSpace{
	position:relative;
	width:320px;
	margin:0 auto 0 auto;
	z-index: 1;
	animation-name: ContentSpaceCover;
	animation-duration:2s;
}
@media only screen and (min-width:850px){
	#ContentSpace{
		width:100%;
	}
}
@media only screen and (min-width:1040px){
	#ContentSpace{
		width:90%;
	}
}
	
