/* 2008.04.23 shimosawa CSS整理開始

カオスってるので順次整理していく方向で。使ってないクラスはサクサク削除。

 1.base.css					：基本設定
 2.layout.css				：ページ毎の設定
 3.class.css				：共通クラス設定
 4.import.css				：上記を読み込むimportファイル
 5.layout_old.css		：以前のlayout.css　整理完了次第削除予定
 
*/


/* CSS初期化
----------------------------------------------- */
html{
	height:100%;
}
body,h1,h2,div,p,br,img,ul,ol,li,dl,dt,dd {
	margin: 0;
	padding: 0;
	border: 0;
}


/* 共通設定
----------------------------------------------- */
body {
	background-color: #eeeeee;
	font-size: 12px;
	line-height: 1.5em;
	color: #333;
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
}


/* リンク
----------------------------------------------- */
a {
	color:#0080c0;
	text-decoration: none;
}
a:hover {
	color: #FD9D05;
	text-decoration: underline;
}
a img{
	border:none;
}
a:hover img {
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
}
a:focus { -moz-outline-style: none; }
a { outline: none; } /*--macfirefox用-*/


/* フォントの設定 */
strong {
	color: #8C0F05;
}
.font_s {
	font-size: 10px;
	line-height: 1.5em;
}
.font_m {
	font-size: 12px;
	line-height: 1.5em;
}
.font_l {
	font-size: 14px;
	line-height: 1.5em;
}
.font_ll {
	font-size: 18px;
	line-height: 1.5em;
}
.font_red {
	color: #8C0F05;
}
.font_blue {
	color: #0000FF;
}
.font_navy {
	color: #222950;
}
.font_base {
	color: #333;
}
/*h2 {
	color: #1f5c97;
	font-size: 16px;
	margin: 0 0 1em 0;
}*/





