@charset "UTF-8";


body {
	font-family: "MS PGothic";
	color: #000;
	background-color: #030;
	font-size: medium;
	line-height: 18px;
}

a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #960;
	text-decoration: none;
	
}
a:active {
	color: #960;
	text-decoration: none;
	font-weight: bold;
}


a { outline: none; }

* {
   margin: 0;
   padding: 0; /* 全てのプロパティの余白とパディングをリセットしています。*/
}
#wrapper {
   width: 700px;
   margin: 0 auto;   /* 幅固定（700px）でセンタリングします。*/
}
#header {
   width: 700px;
   height: 50px;     /* サイトロゴの高さに合わせて調節して下さい。*/
}
#main {
   width: 700px;     /* メニューとコンテンツを囲んでいるセレクタです。 */
}
.menu {
   float: left;
   width: 200px;     /* floatの width 指定は必須です。*/
   position:}
#contents {
   float: left;
   width: 550px;     /* floatの width 指定は必須です。*/
}
#footer {
   clear: both;      /* float をクリアしています。*/
   width: 700px;
   height: 50px;
}
#menu ul {
   list-style: none;
}
