@charset "utf-8";

/*===== CONTENTS ==============================
    1: universal reset
    2: body and base setting
     : general params
    3: link setting
    4: clear fix
=============================================*/


/*=======================================================*/
/*===== 1:universal reset ===============================*/
/*=======================================================*/
*{
	margin:0;
	padding:0;
}

/*=======================================================*/
/*===== 2:body and base setting =========================*/
/*=======================================================*/

html body{
	background:#003f22;
	background-image:url(../common/bg_body.gif);
	background-position:center top;
	background-repeat:repeat-y;
	}
	
*:first-child+html body {
	background:#003f22;
	background-image:url(../common/bg_body_ie.gif);
	background-position:center top;
	background-repeat:repeat-y;
	}/* IE7用ハック*/
	
*html body{ /* WinIE4～6、MacIE4～5にだけ適用 */
	background:#003f22;
	background-image:url(../common/bg_body_ie.gif);
	background-position:center top;
	background-repeat:repeat-y;
}


body{
	font:normal 80% "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", HiraKakuPro-W3, Osaka, verdana, arial, sans-serif;
	color:#333333;
	text-align:center;/* box center */
	}


* html body{
	font-size:75%;/*for IE（IEは文字が若干大きく表示される為）*/
}

/* general params
--------------------*/
h1, h2, h3, h4, h5, h6,
div, p, pre, ul, ol, dl, dt, dd,
address, form, blockquote{
	line-height:160%;/*行間1.6文字分*/
	text-align:justify;
}

img{
	border:none;/*ボーダー無し*/
	vertical-align:top;
}

li{
	list-style-type:none;/*リストスタイル無し*/
}

.pagenate {
    text-align:left;
    font-size: 10px;
	margin:0 0 20px 0;
	color:#cccccc;
}

/*=======================================================*/
/*===== 3:link setting ==================================*/
/*=======================================================*/
a{
	color:#003f22;
	text-decoration:none;
	border:none;
}
a:hover{
	color:#159a51; 
}

/*=======================================================*/
/*===== 4:clear fix =====================================*/
/*=======================================================*/

div:after {
	content:".";
	display:block;
	visibility:hidden;
	height:0.1px;
	font-size:0.1em;
	line-height:0;
	clear:both;
	zoom:1;/*for IE 5.5-7*/
	}

div {display: inline-table;
	display:inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

.clearfix:after {
	content:".";
	display:block;
	visibility:hidden;
	height:0.1px;
	font-size:0.1em;
	line-height:0;
	clear:both;
	}

.clearfix{
	zoom:100%;
	display: inline-table;
	display:inline-block;}

