@charset "utf-8";
/*----------------------------------------------------
　個別ページ設定
----------------------------------------------------*/

/* メインイメージ
----------------------------------------------*/
#main_img {
	/* 画像ファイルの指定 */
	background-image: url(../img/main.jpg);
	/* 画像を常に天地左右の中央に配置 */
	background-position: center top;
	/* 画像をタイル状に繰り返し表示しない */
	background-repeat: no-repeat;
	height: 300px;
	width: 100%;
}
@media screen and (max-width: 768px) {
#main_img {
	height: auto;
	background-image: none;
	margin-bottom: 30px;
}
}