@charset "shift-jis";
/* ↑文字コード設定。消さないでください。" "の中は、htmlの文字コードに応じて変更してください。 */


* {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	background-color: #f0eed5;
	font-style: normal;
	font-size: 100%;
	color: #333333;
}


/* インライン要素 */

em,/* 強調 */
strong/* より強い強調 */ {
	font-weight: bold;
	font-style: normal;
}

strong {
	color: #ff7459;
}

a:link/* 未訪問リンク */ {
	color: #666666;
}

a:visited/* 訪問済リンク */ {
	color: #666666;
}

a:hover/* カーソルをのせたとき */ {
	color: #999999;
	text-decoration: underline;
}

a:active/* 選択時 */ {
	color: #999999;
}


/* ブロックレベル要素 */

h1 {
	font-size: 200%;
}

h2 {
	margin: 20px 0;
	padding: 5px 10px;
	width: 45%;
	border-left: 10px solid #333333;
	background: #b7c9d0;
	font-size: 100%;
	clear: both;
}
h3 {
	margin: 20px 0 10px 0;
	padding: 0 20px 3px 20px;
	border-bottom: 2px dashed #b7c9d0;
	font-size: 100%;
	width: 45%;
}

h4 {
	margin: 5px 20px;
}
h4:before {content:"[";}
h4:after {content:"]";}


h4,
p,
ul,
ol {
	font-size: 90%;
	line-height: 160%;
}

p {
	margin: 0 20px 50px 20px;
}
table {
    margin: 0 20px 20px 20px;
    border: 1px solid #888888;
	border-collapse: collapse;
    font-size: 85%;
    width: 80%;
}

table th {
	padding: 5px;
	border: 1px solid #888888;
	background: #eeeeee;
	text-align: center;
}

table td {
	padding: 5px;
	border-right: 1px solid #888888;
	border-bottom:1px dashed #888888;
	vertical-align: middle;
}



/* classセレクタ */

.migi/* このクラスがついた要素を右寄せ */ {
	float: right;
}
.hidari/* このクラスがついた要素を左寄せ */ {
	float: left;
}

.pan/* パンくずリスト */ {
	margin: 0 20px;
	clear: both;
}
.pan li {
	display: inline;
}

.col01/* 表1列目 */ {
	width: 50%;
}
.col02,/* 表2列目 */
.col03/* 表3列目 */ {
	width: 25%;
}


/* idセレクタ */
/*
　おおまかな枠組みを作って、レイアウトを設定しています
　#wrapper	#header、#content、#footerを囲む大本となる枠です
　#header	最上部。サイトタイトルであるh1、メニューのulを含みます
　#content	本文内容はここに記述します
　#footer	最下部。メニューのulを含みます
*/
#wrapper {
	width: 780px;
	margin: 0 auto;
	border-right: 1px solid #888888;
	border-left: 1px solid #888888;
}

#header,
#footer {
	padding: 10px 0;
	text-align: center;
	background: #4a5580;
}

#header ul li,
#footer ul li {
	display: inline;
	margin: 0 5px;
}

#header a:link,
#header a:visited,
#footer a:link,
#footer a:visited {
	color: #fff;
	text-decoration: none;
}
#header a:hover,
#header a:active,
#footer a:hover,
#footer a:active {
	color: #ccc;
	text-decoration: underline;
}

#content {
	padding: 20px 20px;
	background: #ffffff;
}
#content ul {
	margin: 0 20px 50px 40px;
}


