@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
	border:0;
	font-style:normal;
}

/*囲み系-----------------------------------------*/

/*以下"webcreators08'10月号P48掲載"*/
html,body{
	height:100%;
}

body{
	margin:0;
	font-size:0.85em;
}


div#wrapper{
	min-height:100%;
	width:950px;
	margin:0 auto;
	/*以下1行：relativeをかける親boxの幅指定をしないとabsoluteの基点がずれた。*/
	position:relative;
	background-color:#FFFFFF;
	z-index:2;
}
/*IE6*/
* html div#wrapper{height:100%;}

div#box_left{
	width:150px;
	position:fixed;
	/*以下1行：IEではfixedが無効なため、absoluteをかける*/
	_position:absolute;
	top:30px;
	z-index:3;
}

div#box_right{
	width:800px;
	height:auto;
	position:relative;
	top:0;
	left:150px;
}

div.contents_box{
/*min-heightをieでも使えるようにするハック。
http://blog.creamu.com/mt/2008/03/cssminheighteasiest_crossbrows.html
以下3行*/
	min-height:850px;
	height:auto !important;
	height:850px;
}

div#footer{
	text-align:right;
	font-size:0.85em;
	margin:0 0px 2px 0;
	padding:2px 20px 0px;
	color:#111;
	background-color:#aaa;
	filter:alpha(opacity=80);
	/*background-colorだけの場合、heightかwidthを指定しないとfilter:alpha;は無効になる*/
	height:100%;
	-moz-opacity:0.80;
	opacity:0.8;
}

/*テキスト系---------------------------------------*/

h1{
	display:none;
}

a{
	outline:0;
	text-decoration:none;
}

div.box_left ul{
	margin-top:50px;
}

div.box_left ul li{
	list-style-type:none;
	margin-bottom:13px;
	text-indent:1.7em;
}

div.box_right h2{
	margin-left:25px;
}

/*画像系---------------------------------------*/

hr{
	display:none;
}

div.top_line{
	width:auto;
	height:25px;
	display:block;
	background:url(../image/body/stripe.gif) repeat;
	margin:0px 24px 0px; 
}

div#bottom_line{
	width:auto;
	height:25px;
	display:block;
	background:url(../image/body/stripe.gif) repeat;
	margin:0px; 
}

a#top_allow{
	margin:0 0 20px 25px;
	display:block;
}

div.allow{
	margin-top:10px;
}
div.allow img{
	margin:0px;
}

/*フッター---------------------------------------*/
#wrapper_2{
	width:100%;
	height:461px;
	background:url(../image/body/bg_img.gif) no-repeat;
	background-position:center;
	position:relative;
	margin-top:-410px;
	z-index:1;
}

#footer_box{
	position:absolute;
	bottom:0;
	left:auto;
	width:100%;
}

