@charset "utf-8";
/* CSS Document */
/* トップページのフォントサイズ用CSS */

/* (1)初期状態 / (2)「拡大」表示のさいに「標準」をクリックする
   フォントサイズ(font-size)と行間(line-height)の設定
*/

/* h2 */
h2{
	font-size:108%;
}

/* サイトマップと文字の大きさ変更-拡大(デフォルト) */
#fontLarge{
	font-size:80%;
	text-align:right;
}

/* サイトマップと文字の大きさ変更-「拡大」クラス */
.fontLarge{
	font-weight:bold;
	color:#FFFFFF;
	background-color:#0099CC;
	text-decoration:none;
	padding:3px 3px 3px 3px;
}

/* サイトマップと文字の大きさ変更-標準(文字拡大しているとき) */
#fontNormal{
	display:none;
}

/* 今度こそ不要かもよ */
/* ヘッダーp */
#header p{
	font-size:80%;
}

/* ナビゲートバーp */
#navbar p{
	font-size:90%;
}

/* サイドバー左p */
#sideLeft p{
	font-size:smaller;
	color: #000066;
	text-align: left;
}

/* サイドバー右p */
#sideRight p{
	font-size:75%;
}

/* メインp */
#main p{
	font-size:90%;
	line-height:150%;
}

/* メイン 各項目のタイトル */
/* クラスで文字の大きさ、枠の形式を決定*/
h2.title{
	font-size:108%;
}

/* ニュースul */
#main ul{
	font-size:90%;
	line-height:160%;
}

/* 緊急情報kl */
#main kl{
	font-size:90%;
	line-height:160%;
}

/* フッター */
#footer{
	font-size:80%;
}

