@charset "UTF-8";
/* CSS Document */

/* 

　format.css

　 　どのHTMLでも利用するID、classを記述する。

　【階層】
ボディ
body
	ラッパ
	#wrapper
		コンテナ
		#container
			ヘッダ
			#header
			メイン
			#main 
			フッタ
			#footer 

------------------------------------------------------------*/


/* 

　ボディ

　　
------------------------------------------------------------*/
body {
	color:#000000; font-size:14px; line-height:135%;
	font-family:'メイリオ', Meiryo,  'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro',Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	background-color:#fff;
}




/* 

　ラッパ

　　 
------------------------------------------------------------*/
#wrapper { width:100%; }




/* 

　コンテナ

　　 
------------------------------------------------------------*/
#container {
	width:960px;
	margin:0 auto;
	box-shadow: 0px 0px 8px rgba(128,128,128,0.8); /* ドロップシャドウと言うよりは、ぼかし */
	overflow:hidden;
}
#container-index{
	width:960px; height:2950px;
	margin:0 auto;
	box-shadow: 0px 0px 8px rgba(128,128,128,0.8); /* ドロップシャドウと言うよりは、ぼかし */
	overflow:hidden;
}



/* 

　ヘッダ／サイト内検索

　　 
------------------------------------------------------------*/
#search-header {
	float:right;
	margin:10px 20px;
	padding:3px 0 0 0;
	border:1px solid rgba(205,205,205,1.0);
	border-radius:20px;
}

#header{
	margin:15px auto;
	font-size:11px;
}

#hnavi {
	text-align:center;
}
#hnavi li {
	display:inline;
	padding-left:6px;
	padding-right:6px;
}





/* 

　メイン

　　 
------------------------------------------------------------*/
#main{
	width:851px;
	margin:0 auto;
}
#main_wrapper_over {
	width:962px; margin:0 auto;
	border:1px solid rgba(77,77,77,0.1);
}
#main_wrapper_left {
	width:960px; margin:0 auto;
	background:url(../images/side-background-image.png) repeat-y top left;
}
#main_wrapper_right {
	width:960px; margin:0 auto;
	background:url(../images/side-background-image.png) repeat-y top right;
}
#fake-contents { text-align:center; margin:20px 0 0 0; }



/* 

　フッタ

　　 
------------------------------------------------------------*/
#footer{
	margin:40px auto 30px;
	font-size:12px;
}

#fnavi {
	text-align:center;
}
#fnavi li {
	display:inline;
	padding-left:20px;
	padding-right:20px;
	border-left:1px solid #000000;
}
#fnavi li.first {
	border-left:none;
}





/* 

　コピーライト

　　 
------------------------------------------------------------*/
#copyright {
	width:100%; background:#F25E71; height:20px;
	padding:9px 0 0 0;
	color:#fff; font-size:13px; text-align:center; line-height:100%;
}




/* 

　トップへ戻るボタン（未使用）
　　 
------------------------------------------------------------*/
#pagetop {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index:9999;
	display:block;
}
a.pagetop_button {
	border-radius:8px;	padding:12px 20px 10px 20px;
	background:rgba(242,94,113,0.9); border:1px solid rgba(255,255,255,0.5);
	color:rgba(255,255,255,1); font-size:16px;	text-decoration:none;	text-align:center;
	display:block;
}