@charset "utf-8";

/******************/
/* TOPページ用CSS */
/******************/

/* 全ページ共通CSS読み込み */
@import url("common.css");

/* 全ページ共通ヘッダーメニューCSS読み込み */
@import url("menu.css");



/***** TOPページ用CSS *****/
/*** FLASH ***/
#flash{
	width:800px;
	height:350px;
	margin-top:10px;
	margin-bottom:10px;
}
#flash_print{/* 印刷時に表示するCSS（通常は非表示） */
	width:0px;
	height:0px;
	margin-top:0px;
	margin-bottom:0px;
	display:none;
}

		/* Flashの印刷設定 */
		@media print{
			#flash{/* 印刷時flash非表示 */
				width:0px;
				height:0px;
				margin-top:0px;
				margin-bottom:0px;
				display:none;
			}
			#flash_print{/* 印刷時に表示 */
				width:800px;
				height:350px;
				margin-top:10px;
				display:block;
				margin-bottom:10px;
			}
		}


/*** 左（キャッチ・新着情報） ***/
#index_left{
	width:560px;
	float:left;
}
#wn_title{
	width:560px;
	margin-top:5px;
}
table#whatsnew{
	margin-top:3px;
}

/*** 右（バナー・住所） ***/
/* バナー */
#index_right{
	width:220px;
	float:right;
}
#index_bnnr01{
	width:220px;
	height:124px;
	display:block;
	background-image:url(../_images/top/jisseki_bnnr.jpg);
	background-position:0px 0px;
	background-repeat:no-repeat;
	text-indent:-1000em;
	text-decoration:none;
	overflow:hidden;
}
a:hover#index_bnnr01{
	background-position:0px -124px;
}
/* 住所 */
#co_info{
	width:200px;
	padding:10px;
	background-color:#EFEEE8;
	margin-top:5px;
}
#co_name{
	font-size:110%;
}


