@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{
	background-color:#DED6C4;
	background-image:url(../common/bg_01.jpg);
	background-position:center;
	background-repeat:repeat-y;
	}

body {
	font:normal 85% "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", HiraKakuPro-W3, Osaka, verdana, arial, sans-serif;

	color:#4B4A31;
	text-align:left;/* box left */
	}

* html body{
	font-size:80%;/*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;
	color:#4B4A31;
	}

img {
	border:none;/*ボーダー無し*/
	vertical-align:top;
	}
	
li {
	list-style-type:none;/*リストスタイル無し*/
	}

/*=======================================================*/
/*===== 3:link setting ==================================*/
/*=======================================================*/
a{
	color:#A97B44;
	text-decoration:none;
	border:none;
	}
	
a:hover{
	color:#D0A76A; 
	text-decoration:underline;
	}

/*=======================================================*/
/*===== 4:clear fix =====================================*/
/*=======================================================*/

.clearfix{
    zoom:1;/*for IE 5.5-7*/
	}

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
	}

.clearfix {display: inline-table;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
