@charset "shift_jis";
/* CSS Document */

/* レイアウトのみのCSS
　装飾はdesign.cssへ


/*-------------------コンテンツ全体---------------------------------*/

/*コンテンツ全体*/
#wrapper {
	width:950px;
	margin: 0px auto;	/* center寄せ */
	text-align: left;
}

/*----------------ヘッダー--------------------------------------*/
/*ヘッダー全体*/
#header {
	width: 950px;
}

/*-------------メインコンテンツ---------------------------------*/

/*ヘッダーの後にきます*/
#contents_all {
	width: 950px;
	text-align: left;
}
#contents_all:after{
/* ここにドットなどを入れないとNetscape 7で背景が出ない */
/* 半角空白では意味が無い */
	content:".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
	line-height:0;
/* 次のような指定を入れるとNetscape 7で背景が出ない
	font-size:0;
次の指定でも同じです。
	font-size:0.1em;
*/
}
/* \*//*/
#contents_all{
  display:inline-table;
}
/* */

/* \*/
html #contents_all{
	height:1%;
}

html>body #contents_all {
	height:auto;
}

#contents_all{
	display:block;
}
/*-----------フッター------------------------------------------*/

/*フッター大枠
　menu, ul, liの設定はdesign.cssで。*/

#footer {
	width: 100%;
}


/*------------------本文と横のカラム：記述すること----------------*/

/* 本文 */
#contents_main{
	width:726px;
	float: right;
	display: inline;
	margin-right: 0px;
}
/* 左カラム */
#contents_left {
	clear:left;
	width:204px;
	float: left;
	display:inline;
}