@charset "shift_jis";

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

body {
	color: #ffffff;	/*文字色*/
	background-color: #000000;	/*背景色*/
	margin: 0px;
	padding: 0px;
	text-align: center;
	font: 75%/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}
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: #FFFFFF;
}
a:hover {
	color: #FFD527;			/*カーソルオーバー時の文字色*/
	text-decoration: none;	/*カーソルオーバー時に下線を消す設定*/
}

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

/*ヘッダー（ロゴなどが入っているHP上部ブロック）
---------------------------------------------------------------------------*/
#header {
	height: 85px;	/*ヘッダーの高さ*/
	width: 100%;
	position: relative;
}
/*h1タグ設定*/
#header h1 {
	font-size: 10px;		/*文字サイズ*/
	font-weight: normal;	/*文字の太さをデフォルトの太字から通常に変更*/
	line-height: 14px;
	text-align: right;		/*右寄せ*/
	position: absolute;
	right: 0px;		/*ヘッダーブロックに対して右から0pxの位置に配置*/
	bottom: 5px;	/*ヘッダーブロックに対して下から5pxの位置に配置*/
}
h1 a {
	text-decoration: none;
}
/*ロゴ画像設定*/
#header #logo {
	position: absolute;
	left: -2px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: 0px;	/*ヘッダーブロックに対して上から0pxの位置に配置*/
}
/*電話番号画像設定*/
#header #tel {
	position: absolute;
	top: 17px;		/*ヘッダーブロックに対して上から10pxの位置に配置*/
	right: 0px;		/*ヘッダーブロックに対して右から0pxの位置に配置*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	position: relative;
	height: 400px;
	width: 950px;
	margin-bottom: 15px;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*メインメニュー
---------------------------------------------------------------------------*/
ul#menu {
	background-image: url(../images/menu_bg.gif);	/*メニュー背景画像*/
	background-repeat: no-repeat;				/*背景画像をリピートしない*/
	background-position: center top;			/*背景画像を中央上部に配置*/
	height: 52px;
	line-height: 52px;
	width: 928px;
	padding-left: 22px;
}
ul#menu li {
	float: left;
	text-align: center;
	border-left: 1px solid #75581f;	/*メニューの左側に入る線の幅、線種、色*/
}
ul#menu li.last {
	border-right: 1px solid #75581f;	/*メニューの最後の１個だけ、右側に線を追加*/
}
ul#menu li a {
	color: #FFFFFF;	/*文字色*/
	text-decoration: none;
	display: block;
	width: 150px;
	height: 52px;
	line-height: 52px;
	overflow: hidden;
}
ul#menu li a:hover {
	background-image: url(../images/menu_bg.gif);	/*カーソルオーバー時の背景画像*/
	background-repeat: no-repeat;				/*背景画像をリピートしない*/
	background-position: center bottom;			/*背景画像を中央下部に配置*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
}
/*メインコンテンツ（右側ブロック）
---------------------------------------------------------------------------*/
#main {
	width: 700px;	/*メインコンテンツ幅*/
	float: left;	/*メインコンテンツを左側に回り込み*/
	padding-top: 15px;
	padding-bottom: 50px;
}
/*h2タグ設定*/
#main h2 {
	font-size: 120%;	/*文字サイズ*/
	color: #000000;		/*文字色*/
	background-image: url(../images/bg3.gif);	/*背景画像の読み込み*/
	background-repeat: repeat-x;			/*背景画像をＸ軸（横軸）にリピート*/
	background-position: bottom;			/*背景画像を下部に配置*/
	background-color: #FFFFFF;				/*背景色*/
	padding: 10px;		/*余白*/
	border-bottom: 4px solid #A48622;		/*下線の幅、線種、色*/
}
/*h2タグを画像にした場合の設定*/
#main h2.img {
	padding: 0;
	border-bottom: none;
}
/*段落タグの余白設定*/
#main p {
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}

/*サブコンテンツ（左側ブロック）
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*サブコンテンツを右側に回り込み*/
	width: 220px;	/*サブコンテンツ幅*/
	padding-top: 15px;
	padding-bottom: 50px;
}
/*h3タグ設定*/
#sub h3 {
	font-size: 100%;	/*文字サイズ*/
	background-color: #000000;				/*背景色*/
	background-image: url(../images/bg2.gif);	/*h3タグ背景画像*/
	background-repeat: repeat-x;			/*背景画像をＸ軸（横軸）にリピート*/
	background-position: top;				/*背景画像を上部に配置*/
	border: 3px double #8c8c8c;		/*枠線の幅、線種、色の設定*/
	text-align: center;	/*文字をセンタリング*/
	padding: 10px 0px;
}
/*段落タグの余白設定*/
#sub p {
	padding: 0.5em 5px 1em;	/*左から、上、左右、下への余白*/
}

/*サブメニュー
---------------------------------------------------------------------------*/
#sub ul.submenu {
	margin-bottom: 1em;
}
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	border-right: 1px solid #8c8c8c;	/*右側の線の幅、線種、色*/
	border-bottom: 1px solid #8c8c8c;	/*下側の線の幅、線種、色*/
	border-left: 1px solid #8c8c8c;		/*左側の線の幅、線種、色*/
	width: 218px;
	background-color: #000000;	/*背景色*/
	padding: 5px 0px;	/*左から、上下、左右への余白*/
	text-align: center;	/*文字をセンタリング*/
}
#sub ul.submenu li a:hover {
	background-color: #332e25;	/*カーソルオーバー時の背景色*/
}

/*フッター
---------------------------------------------------------------------------*/
#footer {
	text-align: center;	/*センタリング*/
	padding-top: 10px;
	padding-bottom: 10px;
	clear: both;
	width: 100%;
}
/*フッター内にリンク設定した場合用*/
#footer a {
	text-decoration: none;
}

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

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 700px;	/*テーブルの幅*/
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #8c8c8c;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
.ta1 td {
	padding: 10px;		/*テーブル内の余白*/
	width: 50%;
	text-align: center;	/*センタリング*/
	background-color: #081125;	/*背景色*/
	background-image: url(../images/bg4.gif);	/*背景画像の読み込み*/
	background-repeat: no-repeat;			/*背景画像をリピートしない*/
	background-position: right bottom;		/*背景画像を右側、下部に配置*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th{
	text-align: left;	/*左よせ*/
	padding: 10px;
	background-image: url(../images/bg2.gif);	/*背景画像の読み込み*/
	background-repeat: repeat-x;			/*背景画像をＸ軸（横軸）にリピート*/
	background-position: top;				/*背景画像を上部に配置*/
	background-color: #000000;				/*背景色*/
}

/*テーブル２
---------------------------------------------------------------------------*/
.ta2 {
	width: 700px;	/*テーブルの幅*/
}
.ta2, .ta2 td, .ta2 th{
	border: 1px solid #8c8c8c;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta2 td{
	width: 457px;
	padding: 10px;				/*テーブル内の余白*/
	vertical-align: top;
	background-color: #000000;				/*背景色*/
	background-image: url(../images/bg4.gif);	/*背景画像の読み込み*/
	background-repeat: no-repeat;			/*背景画像をリピートしない*/
	background-position: right bottom;		/*背景画像を右側、下部に配置*/
}
/*h3タグ設定*/
.ta2 h3 {
	font-size: 100%;
	border-bottom: 1px solid #ffffff;	/*下線の幅、線種、色*/
}
/*段落タグ設定*/
.ta2 p {
	padding: 0px !important;
}
/*テーブル内の左側の見出し部分*/
.ta2 th{
	width: 200px;				/*幅*/
	padding: 10px;				/*テーブル内の余白*/
	text-align: center;			/*文字をセンタリング*/
	background-color: #000000;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi{
	width: auto;
	text-align: left;
	background-image: url(../images/bg2.gif);	/*背景画像の読み込み*/
	background-repeat: repeat-x;			/*背景画像をＸ軸（横軸）にリピート*/
	background-position: top;				/*背景画像を上部に配置*/
	background-color: #000000;				/*背景色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background-color: #333333;
}
.mb1em {
	margin-bottom: 1em;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
	text-align: left;
}
.color1 {
	color: #FFD527;
}
.img {
	padding-right: 0px !important;
	padding-left: 0px !important;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
