@charset "UTF-8";
/* サイトの背景画像
---------------------------------------------------------- */
body {
	
	/* 背景画像が読み込まれる前に表示される背景のカラー */
	background-color: #464646;
	
	/* 画像ファイルの指定 */
	background-image: url("../images/el2_bg_09.png");

  	/* 画像を常に天地左右の中央に配置 */
	background-position:center center;

	/* 表示するコンテナの大きさに基づいて、背景画像を調整 */
/*	background-size: cover; */

	background-repeat: repeat;

	/* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
	background-attachment: fixed;

	color: #000;
}

@media screen and (max-width: 767px) {
	.cp_navi{
		display: none;			/* 非表示 */
	}
}
