@charset "utf-8";
/*　コンテンツ共通　  */
.oodai {
	margin-top: 15px;
	margin-left: 20px;
}
.mdai {
	margin-top: 30px;
	margin-bottom: 15px;
	margin-left: auto;
	height: 40px;
	width: 550px;
	margin-right: auto;
}
.syoudai {
	margin-top: 30px;
	margin-left: 30px;
	height: 30px;
	width: 550px;
}

.box01 {
	width: 550px;
	border: 1px solid #CCC;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
}
/* 通常 */
.navi {
	font-size:12px;
	color:#003399;
	line-height:20px;
	text-decoration: underline;
}
.navi:hover {
	font-size:12px;
	color:#66CCFF;
	line-height:20px;
}
/* ロールオーバー効果 */
a .hover_img1{
	transition:all 0.3s ease; /*0.5秒かけて要素を変化させる*/
	}
a:hover .hover_img1{
	opacity: 0.6;/*要素の透明度を指定*/
	filter: alpha(opacity=60); /*ie6、7の透明度指定*/
	/*ちなみにie8の透明度指定はこれ→ -ms-filter: "alpha(opacity=70)";*/
}