@charset "UTF-8";
/* CSS Document */
 
body,td,th {
	font-size: 18px;
}
h1 {
	font-size: 20px;
	color: #900;
	text-align: center;
	line-height: 25px;
}
h2 {
	font-size: 19px;
	color: #FFFFFF;
	line-height: 22px;
	text-align: center;
	background-color: #006600;
	vertical-align: middle;
	height: 25px;
	padding-top: 5px;
	padding-left: 5px;
}
h3 {
	font-size: 20px;
	color: #FFFFFF;
	font-weight: bold;
	text-align: left;
	background-color: #900;
	height: 22px;
	padding-top: 5px;
}
a:link {
	text-decoration: none;
	color: #900;
}
.todoufuken {
	font-size: 18px;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #600;
}
a:hover {
	text-decoration: underline;
	color: #F00;
}
a:active {
	text-decoration: none;
}
#crumb {
	width:680px;
	padding:2px 0px 3px 0px;
	font-size:10px;
	text-transform: none;
	text-decoration: none;
}

.crumb_text {
	color:#000;
}
.crumb_text a:link {
	color:#900;
}
.crumb_text a:visited {
	color:#666;
}
.crumb_text a:hover {
	color:#F00;
	text-decoration:underline;
}
body  {
	font: 100% "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	background: #000;
	margin: 0; /* 複数の異なるブラウザの初期設定値に対応するため、body エレメントのマージンと余白を 0 にすることをお勧めします */
	padding: 0;
	text-align: center; /* これにより、IE 5* ブラウザではコンテナが中央揃えになります。そして、テキストは、#container セレクタの初期設定である左揃えに設定されます */
	color: #000000;
}

/* 伸縮自在レイアウトに関するヒント
1. 伸縮自在レイアウトの全体的なサイズはユーザーの初期設定のフォントサイズに基づいて設定されるため、伸縮自在レイアウトの表示を予測することは困難です。伸縮自在レイアウトでは行の長さの割合が維持されるため、伸縮自在レイアウトは、適切に使用すれば、大きいフォントサイズを使用する必要がある場合に便利です。
2. このレイアウトの div のサイズは、body エレメントの 100% のフォントサイズに基づいて設定されます。body エレメントまたは #container の font-size: 80% を使用して全体のテキストサイズを小さくすると、レイアウト全体のサイズが比例して小さくなります。これを補正するには、必要に応じて、div の幅を大きくしてください。
3. デザイン全体ではなく div ごとにフォントサイズが変更される場合は (#sidebar1 のフォントサイズは 70% に設定され、#mainContent のフォントサイズは 85% に設定される場合)、これにより、それぞれの div の全体のサイズが比例して変更されます。必要に応じて、最終的なフォントサイズに基づいてこれらの div を調整してください。
*/
.twoColElsLt #container {
	width: 900px; /* 自動マージン（幅と連動）により、ページが中央揃えになります */
	border: 1px solid #000000;
	text-align: left; /* この設定は body エレメントの text-align: center より優先されます。 */
	background-image: url(img/back.gif);
	vertical-align: top;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-color: #FFFFFF;
	background-repeat: repeat-y;
} 

/* #sidebar1 に関するヒント：
1. この div でフォントサイズ値を設定すると、この div の全体の幅がそれに応じて調整されます。
2. 単位は em であるため、サイドバーそのもので余白を使用することは回避してください。標準に準拠したブラウザでは、余白は幅に追加されるため、実際の幅が不特定の幅になります。 
3. 「.twoColElsLt #sidebar1 p」ルールで見られるように、div の端と div に含まれるエレメントの間のスペースは、エレメントに左マージンと右マージンを適用することによって設定できます。
*/
.twoColElsLt #sidebar1 {
	float: left;
	width: 140px; /* 背景色は、列内のコンテンツの長さにわたって表示されます */
	padding: 20px;
}

/* #mainContent に関するヒント：
1. この #mainContent div に #sidebar1 div とは異なるフォントサイズを設定すると、#mainContent div のマージンは #mainContent div のフォントサイズ、#sidebar1 div の幅は #sidebar1 div のフォントサイズに基づいて設定されます。必要に応じて、これらの div の値を調整してください。
2. #mainContent と #sidebar1 の間のスペースは、#mainContent div の左マージンによって設定されます。#sidebar1 div に含まれるコンテンツの量に関係なく、#sidebar1 div のスペースは維持されます。#sidebar1 のコンテンツが終了した後のスペースに #mainContent div のテキストを挿入するには、この左マージンを削除します。
3. このレイアウトはユーザーのフォントサイズとユーザーが設定する値に基づいて設定されるため、フローティングエレメントの落下を回避するには、イメージまたはエレメントのおおよその最大サイズを特定するためのテストを行う必要があります。ただし、ユーザーのブラウザのフォントサイズが通常のサイズより小さい場合は、テストで確認されるスペースよりも小さいスペースが #mainContent div で使用されます。
4. 下の Internet Explorer の条件分岐コメントでは、#mainContent に「hasLayout」を設定するのにズームプロパティが使用されます。これにより、発生する可能性のあるいくつかの IE 固有のバグが回避されます。
*/
.twoColElsLt #mainContent {
	padding: 0px;
	width: 680px;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 200px;
	float: none;
}

/* 再使用できる各種クラス */
.fltrt { /* このクラスは、ページ上でフローティングエレメントを右側に配置するのに使用できます。プローティングエレメントは、ページ上でその横に配置されるエレメントの前に配置される必要があります。 */
	float: right;
	margin-left: 8px;
}
.fltlft { /* このクラスは、ページ上でフローティングエレメントを左側に配置するのに使用できます */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* このクラスは、div またはブレークエレメントに適用される必要があり、また、フローティングエレメントが完全に含まれているコンテナの末尾の直前にある最後のエレメントである必要があります */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
body,td,th {
	font-family: ＭＳ ゴシック, MS Gothic, Osaka－等幅, Osaka-mono, monospace;
}
.cssbtn {
	font-size: 16px;
	font-weight: bold;
	color: #000;
	text-decoration: none;
	background-color: #960;
	margin: 0px;
	padding: 2px;
	height: 19px;
	width: 132px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #C90;
	border-right-color: #630;
	border-bottom-color: #630;
	border-left-color: #C90;
	text-align: center;
	margin-bottom: 10px;
	text-transform: none;
	text-decoration: none;
	display: block;
}
.cssbtn:hover {
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #990000;
	height: 19px;
	width: 132px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #330000;
	border-right-color: #CC6600;
	border-bottom-color: #CC6600;
	border-left-color: #330000;
	text-align: center;
	margin-bottom: 10px;
	text-transform: none;
	text-decoration: none;
	display: block;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding: 2px;
}
.onbtn {
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #990000;
	margin: 0px;
	padding: 2px;
	height: 19px;
	width: 132px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #330000;
	border-right-color: #CC6600;
	border-bottom-color: #CC6600;
	border-left-color: #330000;
	text-align: center;
	margin-bottom: 10px;
	text-transform: none;
	text-decoration: none;
	display: block;
}
.cssbtn2 {
	font-size: 16px;
	font-weight: bold;
	color: #000;
	text-decoration: none;
	background-color: #960;
	margin: 0px;
	padding: 2px;
	height: 38px;
	width: 132px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #C90;
	border-right-color: #630;
	border-bottom-color: #630;
	border-left-color: #C90;
	text-align: center;
	margin-bottom: 10px;
	text-transform: none;
	text-decoration: none;
	display: block;
}
.cssbtn2:hover {
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #990000;
	height: 38px;
	width: 132px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #330000;
	border-right-color: #CC6600;
	border-bottom-color: #CC6600;
	border-left-color: #330000;
	text-align: center;
	margin-bottom: 10px;
	text-transform: none;
	text-decoration: none;
	display: block;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding: 2px;
}
.onbtn2 {
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #990000;
	margin: 0px;
	padding: 2px;
	height: 38px;
	width: 132px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #330000;
	border-right-color: #CC6600;
	border-bottom-color: #CC6600;
	border-left-color: #330000;
	text-align: center;
	margin-bottom: 10px;
	text-transform: none;
	text-decoration: none;
	display: block;
}
.honbun {
	font-size: 18px;
	line-height: 25px;
	color: #000;
	text-decoration: none;
	text-align: left;
}
.cap {
	font-size: 18px;
	font-style: normal;
	line-height: 21px;
	color: #000;
	text-decoration: none;
}
.koumoku {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 20px;
	font-style: normal;
	line-height: 25px;
	font-weight: bold;
	text-transform: none;
	text-decoration: none;
	background-color: #900;
	text-align: left;
	text-indent: 1em;
	vertical-align: middle;
	display: block;
	height: 25px;
	width: 100%;
	padding-top: 3px;
	padding-bottom: 1px;
	color: #FFF;
}
.navi {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	color: #FFF;
	line-height: 20px;
	text-align: center;
}
.navi a:link{
	color:#FFF;
}
.navi a:visited{
	color:#FF9;
}
.todoufuken a:hover {
	font-size: 18px;
	text-transform: none;
	color: #999;
	text-decoration: underline;
}
.navi a:active{
	color:#999;
}
.navi a:hover{
	color:#666;
}
.caution {
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	font-size: 12px;
	font-style: normal;
	color: #000000;
	text-decoration: none;
	text-align: left;
}
.midashi {
	font-size: 18px;
	font-weight: bold;
	color: #990000;
	text-decoration: none;
	text-align: left;
}
.rightimg {
	float: right;
}
.listicon {
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	font-size: 18px;
	text-transform: none;
	color: #000;
	text-decoration: none;
	line-height: 22px;
}
listicon a:visited {
	text-transform: none;
	color: #600;
	text-decoration: none;
}
listicon a:hover {
	text-transform: none;
	color: #F00;
	text-decoration: underline;
}
.listicon a:link {
	font-size: 20px;
	text-transform: none;
	color: #900;
	text-decoration: none;
}
.icon {
	font-size: 18px;
	line-height: 29px;
	text-transform: none;
	color: #900;
	text-decoration: none;
}
.todoufuken a:link {
	font-size: 18px;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
}
.todoufuken a:visited {
	font-size: 18px;
	text-transform: none;
	color: #FF9;
	text-decoration: none;
}
.katamidashi {
	font-size: 14px;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
}
.kata {
	font-size: 13px;
	text-transform: none;
	color: #000;
	text-decoration: none;
}
.otoiawase {
	font-size: 18px;
	font-weight: bold;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
	height: 25px;
	text-align: center;
	vertical-align: middle;
	width: 100%;
	padding-top: 4px;
}
.toiawasesaki {
	font-size: 18px;
	font-weight: bold;
	text-transform: none;
	text-decoration: none;
	text-align: center;
}
.gyouji {
	font-size: 16px;
	text-transform: none;
	color: #000;
	text-decoration: none;
	vertical-align: middle;
}
.kirokukoumoku {
	font-size: 18px;
	line-height: 25px;
	font-weight: bold;
	text-transform: none;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #333333;
	height: 25px;
	width: 100%;
	padding-top: 4px;
	text-align: left;
}
.koushin {
	font-size: 15px;
	line-height: 20px;
	text-transform: none;
	color: #000;
	text-align: center;
	vertical-align: middle;
	height: 20px;
	width: 680px;
}

