/*-----------------------------
　リセットCSS + サイト共通設定
------------------------------*/

/* 全ての要素に対する余白初期値設定 */
body,
h1,h2,h3,h4,h5,h6,
p,ul,ol,dl,dt,dd,li,
table,th,td,
form,select,option,input
address,pre,strong,em,iframe,img{
	margin:0;
	padding:0;
	font-size:100%;
	border:0;
}

/* デフォルト文字設定 */
body{
	color:#361d00;
	font-family:'メイリオ' ,Meiryo, 'ヒラギノ角ゴ Pro W3' , 'Hiragino Kaku Gothic Pro' , 'ＭＳ Ｐゴシック' , 'Osaka' ,sans-serif;
	font-size:15px;
	*font-size:small;
	line-height:1.4;
	-webkit-text-size-adjust: 100%;
	max-height: 100%;
}


/* リストマーカーを非表示 */
ul,ol{
	list-style-type:none;
}

/* テーブルセルのボーダーの設定 */ 
table {
	border-collapse: collapse; 
	border-spacing: 0;
}

/* 画像とフォームパーツの上下位置をテキストの真ん中に */
img, input, select, textarea { 
	vertical-align: middle;
}

 img{
    max-width: 100%; 
    height: auto; 
    width /***/:auto;　/*IE8のみ適用*/
} 

/* デフォルトリンク色の設定 */
a{
	text-decoration:none;
	color:#361d00;
}

a:hover{
	text-decoration: underline;
}

/* 画像リンクの設定 */
a img{

}

a:hover img{

}

/*------------------------------
  clearfix
------------------------------*/
.clearfix:after {/*for modern browser*/
	content: " "; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden; 
}

.clearfix {display: inline-table;}

* html .clearfix { zoom:1; } /*for IE6*/
*:first-child+html .clearfix { zoom:1; } /*for IE7*/


/*------------------------------
  html
------------------------------*/
/* 常時スクロール表示 */
html{
  overflow-y:scroll;
  -webkit-text-size-adjust: 100%;
}



/*-----------------------------------------
 　ページトップ
-----------------------------------------*/
#content{
    position:relative;
}

p.gotop{
    position:fixed;
    right:15%;
    bottom:0;
}

p.gotop a{
    width: 103px;
    height: 66px;
    display: block;
}


