@charset "utf-8";

/*==============================================================================
  タイトル: ベースデータ
  Name    : K.Takagi 
  説明    : ページ全体の余白・背景・枠線・リスト除去・位置・タイトル
==============================================================================*/


/* 全体の余白（左寄せ時空白を除去）
---------------------------------------------*/

* {
	margin: 0;
	padding: 0;
}


/* 全体の位置
---------------------------------------------*/

body {
	background:#E7F4D9;

}

/* 全体の画像の枠線除去
---------------------------------------------*/

img {
	border: none;
	vertical-align:top;/* img周辺の空白除去 */
}

/* 全体のリスト表示の除去
---------------------------------------------*/

ul {
	margin: 0;
	padding: 0;
}

li {
        list-style-type: none;
}

/* 表示エリア
---------------------------------------------*/

#contanier {
	width:790px;
	margin:auto;

}
/* ヘッダー */
	
#header {
	background: url("../images/bg-top.jpg") no-repeat; 
	width:790px;
	height:210px;
}
	
#header2 {
	background: url("../images/bg-top2.jpg") no-repeat; 
	width:790px;
	height:210px;
}

/* メイン */
	
#main {
	overflow:hidden;
	padding:10px;
	background: url("../images/bg-middle.jpg") repeat-y;
}
#main .overflow {
	overflow:hidden;
}

/* フッター */
	
#footer {
	width:790px;
	clear: both;
	background: url("../images/bg-bottom.jpg") no-repeat; 
	height: 80px;
}

#copy {
	color: #999999;
	font: nomal 8px/110% "ＭＳ Ｐゴシック", Arial, sans-serif;
	text-align:right;
	padding:3px 3px 10px 0px;
}



















