@charset "utf-8";

@import url("reset.css");
@import url("header.css");
@import url("footer.css");
@import url("second.css");
@import url("side.css");

/*==================================================================
　1. 基本設定
==================================================================*/
body {
	font-family:'Lucida Grande', Verdana, sans-serif, "ＭＳ Ｐゴシック", Osaka;
	color:#333;
	text-align:center;
	background:#000;
}
	
a:link    { text-decoration:underline; color:#460000; }
a:visited { text-decoration:underline; color:#460000; }
a:hover   { text-decoration:none; color:#460000; }
a:active  { text-decoration:none; }


/*==================================================================
　2. 基本構造
==================================================================*/

#wrapper {
	margin:0 auto;
	width:760px;
	text-align:center;
	background:#460000;
	padding-bottom:10px;
}

#container {
	margin:0 auto;
	padding:5px 0 0 0;
	background:#FFF;
	text-align:center;
	width:740px;
	clear:both;
}

#side {
	float:left;
	width:174px;
	margin:0 10px 30px 5px;
}


#contents {
	float:right;
	width:535px;
	margin:0 5px 30px 0;
	text-align:left;
}

#contents_comment {
	float:right;
	width:505px;
	margin:0 5px 30px 0;
	text-align:left;
}

/*==================================================================
　3. 共通ハック
==================================================================*/

div.clearfix:after {
   content:".";
   display:block;
   clear:both;
   height:0;
   visibility: hidden;
}

div.clearfix { zoom:100%; }

.clearfix { display:inline-block; }

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

