@charset "utf-8";

html{
	background-image: url(../img/bg_clear.jpg);
}


html#index {	/* 背景 */
	-moz-animation: animebg 2s ease-out 1;
	-webkit-animation: animebg 2s ease-out 1;
	-o-animation: animebg 2s ease-out 1;
	-ms-animation: animebg 2s ease-out 1;
	animation: animebg 2s ease-out 1;
}
@-moz-keyframes animebg {
	0% { background: url("../img/bg_clear.jpg") top;	background-size: cover; }
	100% { background: url("../img/bg_clear.jpg") bottom;	background-size: cover; }
}
@-webkit-keyframes animebg {
	0% { background: url("../img/bg_clear.jpg") top;	background-size: cover; }
	100% { background: url("../img/bg_clear.jpg") bottom;	background-size: cover; }
}
@-o-keyframes animebg {
	0% { background: url("../img/bg_clear.jpg") top;	background-size: cover; }
	100% { background: url("../img/bg_clear.jpg") bottom;	background-size: cover; }
}
@-ms-keyframes animebg {
	0% { background: url("../img/bg_clear.jpg") top;	background-size: cover; }
	100% { background: url("../img/bg_clear.jpg") bottom;	background-size: cover; }
}
@keyframes animebg {
	0% { background: url("../img/bg_clear.jpg") top;	background-size: cover; }
	100% { background: url("../img/bg_clear.jpg") bottom;	background-size: cover; }
}