@charset "utf-8";
/*********************************************
 * フォント                                    
 *********************************************/
/*

@font-face {
	font-family: 'regular';
	src: url('../font/regular.eot?') format('eot'), url('../font/regular.woff') format('woff'), url('../font/regular.ttf') format('truetype');
}
/*
@font-face {
	font-family: 'bold';
	src: url('../font/bold.eot?') format('eot'), url('../font/bold.woff') format('woff'), url('../font/bold.ttf') format('truetype');
}
*/
/*********************************************
 * ボディ                                    
 *********************************************/
* {
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 14px;
}
body {
	  
  background-repeat: no-repeat;            /* 背景を繰り返さない */
  background-position: 50% 50%;            /* 背景画像の位置は画面中央 */
  background-attachment:fixed;             /* 背景画像を固定する */

	background-color: #FFF;
	margin: 0px;          					/* ページ全体のmargin */
	padding: 110px 0 35px 0;         		/* ページ全体のpadding 　ヘッダ高　左幅　フッタ高　右幅 */
}
* html body {
	overflow: hidden;
}
/*********************************************
 * ヘッダー   
 *　ブラウザ上に固定                               
 *********************************************/
header {
	z-index: 1;						   		/* スクロールしたときに本文の上になるよう最前面に */
	position: fixed !important;			/* 旧ＩＥ対策　ヘッダ内容の位置の固定に */
	position: absolute;						/* ヘッダ内容の位置の固定に　*/
	top: 0;									/* 位置固定　*/
	left: 0;								/* 位置固定　*/
	width: 100%;							/* ブラウザサイズの影響をなくする　*/
	height: 110px;							/* 高さ指定　*/
	text-align: center;						/* 旧ＩＥ対策　内容を中央に　*/
}
.header_div {								/* 内容を中央におくための２重構造 */
	position: relative;						/* ヘッダ内基準の相対位置 */
	margin-left: auto;    					/* 左側マージンを自動的に空ける */
	margin-right: auto;   					/* 右側マージンを自動的に空ける */
	text-align: left;     					/* 中身を左側表示に戻す */
	width: 900px;							/* 幅基準サイズ */
	height: 100%;							/* 高さを固定 */
}
.header_logo {
	position: absolute;						/* ヘッダロゴの位置をヘッダ内固定に　*/
	top: 0px;								/* 位置固定　*/
	left: 0px;								/* 位置固定　*/
}
.content_menu_div {
	position: relative;						/* ヘッダ内基準の相対位置 */
	top: 72px;								/* 位置固定　*/
	left: 0px;								/* 位置固定　*/
	width: 900px;							/* 幅基準サイズ */
	height: 35px;							/* メニュー高さ基準サイズ */
	z-index: 0;								/* ヘッダ内で最背面に */
}
.menu {
	margin: 0;								/* 他のオブジェクトとの距離を0に */
	padding: 0;								/* 内部のオブジェクトとの距離を0に */
 width: ***;								/* 幅は自動 */
}
.menu ul {
	list-style-type: none;					/* ナカグロを消す */
	margin: 0;								/* 他のオブジェクトとの距離を0に */
	padding: 0;								/* 内部のオブジェクトとの距離を0に */
}
.menu_li100 {
	float: left;							/* リストを横並びにする */
	width: 100px;							/* メニュー１個の幅 */
	line-height: 35px;						/* メニュー１個の高さ */
	margin: 0;								/* 他のオブジェクトとの距離を0に */
	padding: 0;								/* 内部のオブジェクトとの距離を0に */
}
.menu_li200 {
	float: left;							/* リストを横並びにする */
	width: 204px;							/* メニュー１個の幅 */
	line-height: 35px;						/* メニュー１個の高さ */
	margin: 0;								/* 他のオブジェクトとの距離を0に */
	padding: 0;								/* 内部のオブジェクトとの距離を0に */
}
.menu a {
	text-align: center;						/* メニュー１個の中を中央よせ */
	display: block;							/* リンクを領域いっぱいにする */
	width: 100%;							/* リンクを領域いっぱいにする */
	color: black;							/* 文字色黒 */
}
.menu ul li a:hover {
	background-color: #FC6;					/* マウスが上にきたときのバックの色　オレンジ */
}
/*********************************************
 * メイン                                  
 *********************************************/
.main {
	position: relative;						/* メイン内基準の相対位置 */
	width: 100%;							/* ブラウザサイズの影響をなくする　*/
	text-align: center;						/* 旧ＩＥ対策　内容を中央に　*/
}
.main_div {									/* 内容を中央におくための２重構造 */
	margin-left: auto;						/* 左側マージンを自動的に空ける */
	margin-right: auto;						/* 右側マージンを自動的に空ける */
	width: 900px;							/* 幅基準サイズ */
}
.main_center_sent p {
	text-indent: 1em;						/* 文章のインデント */
}
.main_center {								/* 内容を中央におくための３重構造 */
	position: relative;						/* メイン内基準の相対位置 */
	text-align: left;						/* 内部を左よせに */
	left: 100px;							/* メイン内基準の相対位置 */
	width: 700px;							/* 幅基準サイズ */
	padding : 5px;							/* 内部のオブジェクトとの距離を5pxに */
}
.main_center_center {						/* 中央寄せの、見出しに */
	text-align: center;
}
h1 {
	font-size: 36px;
}
h2 {
	font-size: 24px;
}
h3 {
	font-size: 18px;
}
.left_ {									/* 部分の左寄せに */
	text-align: left;
}
.p36 {
	font-size: 36px;
}
.p24 {
	font-size: 24px;
}

/*********************************************
 * テーブル                                  
 *********************************************/
.ctable {
  width: 100%;
  border-spacing: 0;
  font-size:14px;
}
.ctable th {
  color: #000;
  padding: 8px 15px;
  background: #eee;
  background:-moz-linear-gradient(#eee, #ddd 50%);
  background:-webkit-gradient(linear, 100% 0%, 100% 50%, from(#eee), to(#ddd));
  font-weight: bold;
  border-top:1px solid #aaa;
  border-bottom:1px solid #aaa;
  border-left:1px solid #aaa;
  border-right:1px solid #aaa;
  line-height: 120%;
  text-align: center;
  text-shadow:0 -1px 0 rgba(255,255,255,0.9);
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
}
.ctable th:first-child {
  border-left:1px solid #aaa;
  border-radius: 5px 0 0 0;	
}
.ctable th:last-child {
  border-radius:0 5px 0 0;
  border-right:1px solid #aaa;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
.ctable tr td {
  padding: 8px 15px;
  text-align: center;
  border-left:1px solid #aaa;
  border-right:1px solid #aaa;
}
.ctable tr td:first-child {
  border-left: 1px solid #aaa;
}
.ctable tr td:last-child {
  border-right: 1px solid #aaa;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
.ctable tr {
  background: #fff;
}
.ctable tr:nth-child(2n+1) {
  background: #f5f5f5;
}
.ctable tr:last-child td {
  border-bottom:1px solid #aaa;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
.ctable tr:last-child td:first-child {
  border-radius: 0 0 5px 5px;
}
.ctable tr:last-child td:last-child {
  border-radius: 0 0 5px 5px;
}


/*********************************************
 * フッター                                  
 *********************************************/
footer {
	position: fixed !important;			/* 旧ＩＥ対策　フッタ内容の位置の固定に */
	position: absolute;						/* フッタ内容の位置の固定に　*/
	bottom: 0;								/* 位置固定　*/
	left: 0;								/* 位置固定　*/
	width: 100%;							/* ブラウザサイズの影響をなくする　*/
	height: 35px;							/* 高さ指定　*/
	text-align: center;						/* 旧ＩＥ対策　内容を中央に　*/

}
.footer_div {								/* 内容を中央におくための２重構造 */
	width: 900px;							/* 幅基準サイズ */
	height: 100%;							/* 高さを固定 */
	margin-left: auto;						/* 左側マージンを自動的に空ける */
	margin-right: auto;						/* 右側マージンを自動的に空ける */
}
.footer_content {							/* 内容を中央両端におくための３重構造 */
	margin: 0;								/* 他のオブジェクトとの距離を0に */
	padding: 0;								/* 内部のオブジェクトとの距離を0に */
 width: ***;
}
.footer_content ul {
	list-style-type: none;					/* ナカグロを消す */
	margin: 0;								/* 他のオブジェクトとの距離を0に */
	padding: 0;								/* 内部のオブジェクトとの距離を0に */
}
.footer_li100 {
	float: right;							/* リストを右横並びにする */
	width: 100px;							/* メニュー１個の幅 */
	line-height: 35px;						/* メニュー１個の高さ */
	margin: 0;								/* 他のオブジェクトとの距離を0に */
	padding: 0;								/* 内部のオブジェクトとの距離を0に */
}
.footer_li200 {
	float: right;							/* リストを右横並びにする */
	width: 200px;							/* メニュー１個の幅 */
	line-height: 35px;						/* メニュー１個の高さ */
	margin: 0;								/* 他のオブジェクトとの距離を0に */
	padding: 0;								/* 内部のオブジェクトとの距離を0に */
}
.footer_content ul li a {
	text-align: center;
	display: block;							/* リンクを領域いっぱいにする */
	width: 100%;							/* リンクを領域いっぱいにする */
	color: black;							/* 文字色黒 */
}
.footer_content ul li a:hover {
	background-color: #FC6;					/* マウスが上にきたときのバックの色　オレンジ */
}
.footer_content p {							/*　コピーライト表示の微調整*/
	margin-top: 7px;
	display: inline;
	float: left;
}
/*********************************************
 * マップ                                   
 *********************************************/
.map {
	width: 600px;
	height: 400px;
	margin-left: auto;
	margin-right: auto;
}
