@charset "shift_jis";

/*
---------------------------------------------------------------------------
■制作元：テンプレートパーティー
■URL：http://template-party.com/
---------------------------------------------------------------------------*/

body {
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	font-size: 75%;
	line-height: 2;
	color: #43251B;				/*全体の文字色*/
	background-color: #E9D9C5;	/*背景色*/
	background-image : url(bg.gif);	/*壁紙*/
	background-repeat: repeat-y;
	background-position: center;
	margin: 0px;
	padding: 0px;
	text-align: center;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #43251B;
}
a:hover {
	color: #d37166;			/*カーソルオーバー時の文字色*/
	text-decoration: none;	/*カーソルオーバー時に下線を消す設定*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 800px;
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
}

/*h1タグ設定
---------------------------------------------------------------------------*/
h1 {
	font-size: 10px;	/*文字サイズ*/
	line-height: 20px;
	height: 20px;
	font-weight: normal;
	text-align: right;	/*右寄せ*/
}
h1 a {
	text-decoration: none;
}

/*ヘッダー（ロゴなどが入っているHP上部ブロック）
---------------------------------------------------------------------------*/
#header {
	height: 200px;	/*ヘッダーの高さ*/
	width: 100%;
	position: relative;
	background-image : url(header_bg.jpg);	/*背景画像*/
	background-repeat: no-repeat;
}
/*ロゴ画像の位置設定*/
#header #logo {
	position: absolute;
	left: 20px;	/*ヘッダーブロックに対して左から20pxの位置に配置*/
	top: 60px;	/*ヘッダーブロックに対して上から60pxの位置に配置*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: 560px;	/*メインコンテンツの幅*/
	float: right;	/*右に寄せる*/
	padding-top: 20px;
	padding-bottom: 50px;
}
/*h2タグ設定*/
#main h2 {
	font-size: 120%;	/*文字サイズ*/
	border-bottom: 4px solid #43251B;	/*h2タグ下部の線の幅、線種、色*/
	padding-right: 10px;
	padding-left: 10px;
}
/*段落タグの余白設定*/
#main p {
		padding: 0.5em 10px 1em;	/*左から、上・左右・下の余白*/
}
/*段落タグ内を幅一杯に使いたい場合用*/
#main p.img {
	padding: 0.5em 0 1em;	/*左から、上・左右・下の余白*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	width: 220px;	/*サブコンテンツの幅*/
	float: left;	/*左に寄せる*/
	padding-top: 20px;
	padding-bottom: 50px;
}
/*h3タグ設定*/
#sub h3 {
	font-size: 100%;
	color: #43251B;				/*文字色*/
	border: 1px dotted #43251B;	/*枠線の幅、線種、色*/
	text-align: center;			/*センタリング*/
	background-color: #f3efea;	/*背景色*/
	padding-top: 10px;
	padding-bottom: 10px;
}
/*段落タグ*/
#sub p {
	padding-top: 0.5em;
	padding-bottom: 1em;
}

/*画像（サブ）メニュー
---------------------------------------------------------------------------*/
ul.menu {
	margin-bottom: 1em;
	font-size: 12px;
}
ul.menu li {
	margin-bottom: 0.5em;	/*メニュー間の余白*/
}
ul.menu li a {
	color: #FFFFFF;	/*文字色*/
	text-decoration: none;
	background-image : url(menu_bg.jpg);	/*背景画像*/
	background-repeat: no-repeat;				/*背景画像をリピートしない*/
	background-position: top;					/*背景画像の上部を表示させる*/
	text-align: center;	/*センタリング*/
	height: 50px;
	line-height: 50px;
	overflow: hidden;
	width: 220px;
	display: block;
}
/*カーソルオーバー時のメニュー画像設定*/
ul.menu li a:hover {
	background-image : url(menu_bg.jpg);
	background-repeat: no-repeat;
	background-position: bottom;	/*背景画像の下部を表示させる*/
}


/*フッター
---------------------------------------------------------------------------*/
#footer {
	text-align: center;	/*中のテキストをセンタリング*/
	clear: both;
	width: 100%;
	background-image : url(footer_bg.jpg);	/*背景画像*/
	background-repeat: no-repeat;					/*背景画像をリピートしない*/
	background-position: top;						/*背景画像の上部を表示させる*/
	padding: 20px 0px 80px;	/*左から、上・左右・下への余白*/
	color: #FFFFFF;
	background-color: #FAF9F5;	/*背景色。背景画像の下部の色を抜き出しています。*/
}
/*フッター内にリンク設定した場合用*/
#footer a {
	text-decoration: none;
	color: #FFFFFF;	/*文字色*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#main .new {
	overflow: auto;
	height: 150px;			/*ボックスの高さ*/
	width: 540px;
	padding-right: 10px;
	padding-left: 10px;
	margin-bottom: 1em;
}
#main .new dl {
	clear: left;
	width: 520px;
	border-bottom: 1px solid #cccccc;	/*日付ごとに入る下線の幅、線種、色*/
	overflow: hidden;
}
#main .new dt {
	font-weight: bold;	/*日付を太字に*/
	float: left;
	width: 100px;
}
#main .new dd {
	float: left;
	width: 420px;
}
#main .new dd img {
	vertical-align: middle;
}
*html #main .new dd img {
	margin-top:0.5em;
	vertical-align: baseline;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 560px;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #32160A;	/*枠線の幅、線種、色*/
}
.ta1 td {
	padding: 10px;	/*テーブル内の余白*/
	width: 25%;		/*各ボックスの幅*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th{
	background-color: #44261c;	/*背景色*/
	text-align: left;
	color: #FFFFFF;	/*文字色*/
	padding: 10px;	/*テーブル内の余白*/
	background-image : url(title_bg1.gif);	/*背景画像*/
	background-repeat: repeat-x;					/*背景画像をＸ軸（横軸）にリピート*/
	background-position: top;						/*背景画像を上に配置*/
}
/*テーブル１行目に入った見出し部分にリンクを設定した場合用*/
.ta1 th a {
	color: #FFFFFF;	/*文字色*/
}

/*テーブル２
---------------------------------------------------------------------------*/
.ta2 {
	width: 560px;
}
.ta2, .ta2 td, .ta2 th{
	border: 1px solid #32160A;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の右側*/
.ta2 td{
	width: 367px;	/*幅*/
	padding: 10px;	/*背景色*/
	vertical-align: top;
}
/*テーブル内の左側の見出し部分*/
.ta2 th{
	width: 150px;				/*幅*/
	padding: 10px;				/*テーブル内の余白*/
	text-align: center;			/*文字をセンタリング*/
	background-color: #f3efea;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi{
	width: auto;
	text-align: left;
	background-image : url(title_bg1.gif);	/*背景画像*/
	background-repeat: repeat-x;					/*背景画像をＸ軸（横軸）にリピート*/
	background-position: top;						/*背景画像を上に配置*/
	background-color: #44261c;	/*背景色*/
	color: #FFFFFF;				/*文字色*/
}
/*テーブル１行目に入った見出し部分にリンクを設定した場合用*/
.ta2 th.tamidashi a {
	color: #FFFFFF;	/*文字色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background-color: #DCDCDC;
}
.mb1em {
	margin-bottom: 1em;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0.5em 10px 0.5em 25px;
	list-style: disc;
}
.color1 {
	color: #d37166;
}
.pagetop {
	text-align: right;
	padding: 3em 0px 0px !important;
}
.pr {
	font-size: 10px;
}
