@charset "utf-8";
/* CSS Document */


/**********************************

index

**********************************/
#box{
	margin-left:auto;
	margin-right:auto;
	margin-top:300px;
	width: 800px;
	height: 350px;
	display: none;
	background-image: url(../img/index.jpg);
	background-repeat: no-repeat;

}
#fotter{
	text-align:center;
	font-size:14px;
	color: #666666;
	margin-top:30px;
	
}

#video{
	
	margin-top:10px;
	height: auto;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; width:100%; }
}
