/*全要素の設定*/
* {
	margin: 0;
	padding: 0;
	font-family:"ＭＳ ゴシック",sans-serif;
	font-size: 16px;
	line-height: 120%;
	}
/*段落の設定*/
p {
	padding: 0.5em;
	}
/*リンク設定*/
a {
	text-decoration: none;
	}
h1 {
	font-size: 28px;
	}
h2 {
	font-size: 24px;
	}
h3 {
	font-size: 20px;
	}
h4 {
	font-size: 16px;
	}
h5 {
	font-size: 12px;
	}
h6 {
	font-size: 8px;
	}
/*ページ背景*/
body {
	background-image: url(../img/test2.gif);
	background-repeat: repeat-x;
	background-color: white;
	background-attachment: fixed;
	}
/*ページ枠の設定*/
.center-head-back {
	width:800px;
	margin: auto;
	border: outset blue;
	border-width: 5px 5px 0px 5px;
	background-color: white;
	}
.center-body-back {
	width:800px;
	margin: auto;
	border: outset blue;
	border-width: 0px 5px;
	background-color: white;
	}
.center-foot-back {
	width:800px;
	margin: auto;
	border: outset blue;
	border-width: 0px 5px 5px 5px;
	background-color: white;
	}

/*ヘッダーの設定*/
/*概観*/
.head-page {
	margin: auto;
	padding: 20px;
	background-image: url(../img/flag.gif);
	background-color: white;
	background-repeat: no-repeat;
	}
/*共通*/
.head-page * {
	margin: 2px;
	font-family: "arial",sans-serif;
	}

/*各要素*/
#logo {
	/*学章のサイズ指定・回り込み設定・余白設定*/
	width: 120px;
	height: 120px;
	float:left;
	margin-right: 20px;
	}
/*メインタイトルの設定*/
#maintit {
	text-align: center;
	font-size: 24pt;
	color: #cc6600;
	}
/*サブタイトルの設定*/
.subtit {
font-family: "arial",serif;
}

/*メインメニューの設定*/
/*概観*/
.m-bar {
	height: 25px;
	background-color: blue;
	background-image: url(../img/wr.gif);
	background-repeat: repeat-x;
	background-position: center;
	border:solid blue;
	border-width: 1px 0px;
	}
/*コピーライト*/
.copyright {
	clear: both;
	text-align: center;
	}
/*メニュー*/
/*基本メニュー設定*/
.m-bar ul {
	height: 25px;
	list-style-type: none;
	}
.m-bar li {
	width: 100px;
	height: 25px;
	margin: 0px;
	float: left;
	text-align: center;
	}
.m-bar a {
	display: block;
	float: left;
	width: 100px;
	height: 25px;
	line-height: 25px;
	font-size: 12px;
	}
.m-bar a:link {
	color: white;
	text-decoration: none;
	}
.m-bar a:visited {
	color: white;
	text-decoration: none;
	}
.m-bar a:hover {
	background-image: url(../img/w.gif);
	color: yellow;
	text-decoration: none;
	}

/*拡張(ドロップダウン)メニュー設定*/
.m-bar ul ul {
	/*非アクティブ時のリスト非表示*/
	display: none;
	/*拡張メニューの表示位置・親メニューの下に表示*/
	position: absolute;
	top: 100%;
	left: 0;
	}
.m-bar ul ul ul {
	/*3段目以降のメニュー表示位置・親メニューの右*/
	top: 0;
	left: 100%;
	}
	/*2段目以降のメニュー要素の設定*/
.m-bar li li {
	border: solid blue;
	border-width: 0px 1px 1px 1px;
	background-image: url(../img/wr.gif);
	/*回り込み解除(下に並べる)*/
	clear:left;
}
/*拡張メニューのアクティブ時*/
.m-bar li:hover > ul {
	/*↑メニュー要素のアクティブ下にあるulの設定*/
	/*↓非表示から表示へ変換*/
	display: block;
	}
.m-bar li:hover {
	/*liの表示設定および拡張メニューの相対表示位置の基準座標設定*/
   position:relative;
}

/*見出しパターン1*/
.thm {
	height: 20px;
	padding: 5px;
	font-size: 20px;
	border-left-style: ridge;
	border-bottom-style: solid;
	border-width: 0px 0px 1px 30px;
	border-color: mediumblue;
	}







