@charset "utf-8";
/* class="navi_index" の背景画像用設定
 	背景画像は、clss_bkimg.js で読み込む
 */
#main .navi_index {
	border-color:#aaaaaa;   /* グレー */
	/* 背景用の透明度 */
	opacity: 0.8;/* chrome,safari,opera */
	-moz-opacity: 0.8;/* firefox */
	filter:alpha(opacity=80);/* IE */
	}
#main .navi_index a{
	color:#000000;
	}

/* indexページ用のコンテンツ紹介にマウスが乗ったとき
	背景画像が無いときに有効になる
 */
#main .navi_index a:hover{
	background-color:#ffd700;/* ゴールド（IE6 は a 以外未対応のため） */
	}
#main .navi_index:hover{ /* IE6では未対応 jsに未対応ブラウザ対策 */
	background-color:#ffd700;/* ゴールド */
	}

