@charset "utf-8";
/* CSS Document */
html, body {height: 100%;}  /*高さ100%に指定*/

body {
	background-color:#fdf01e;

	margin: 0;
	padding: 0;
	position: relative;
	min-width: 1000px;  /*中央配置するボックスの横幅*/
	min-height: 650px;  /*中央配置するボックス縦幅*/
}
a:link {
	color:#9c47df;
	text-decoration:underline;
}
a:visited {
	color:#9c47df;
	text-decoration:underline;
}
a:hover {
	text-decoration:underline;
	color:#9c47df;
}
a:active {
}


/*----------------------------------------

container

-----------------------------------------*/
#wrapper {
	margin: -326px 0 0 -500px;/*縦横の半分をネガティブマージンでずらす*/
	position: absolute;/*body要素に対して絶対配置*/
	top: 50%;/*上端を中央に*/
	left: 50%;/*左端を中央に*/
	width: 1000px;  /*横幅*/
	height: 650px;  /*縦幅*/
}

#header {
	background:url(../img/bg-header.gif) no-repeat left top;
	width:1000px;
}

#header h1 {
	float:left;
	padding:0 80px 0 0;
}

#news {
	float:left;
	background:url(../img/bg-news-top.gif) no-repeat left top;
	width:400px;
	margin:15px 0 0 0;
	position:relative;
}

#news p.ttl-news {
	position:absolute;
	top:13px;
	left:18px;
}

#news p.link-news {
	position:absolute;
	top:27px;
	right:14px;
}

#news ul {
	background:url(../img/bg-news-btm.gif) no-repeat left bottom;
	padding:52px 20px 15px 30px;
}

#news ul li {
	background:url(../img/icon-yajirusi01.gif) no-repeat left 3px;
	padding-left:10px;
}

/*----------------------------------------

#Nav

-----------------------------------------*/
#Nav {
	padding:0 45px 18px 45px;
	background:url(../img/bg-Nav.gif) no-repeat left bottom;
}

#Nav ul {
	padding:10px 0 0 0;
	border-top:5px solid #ececec;
}

#Nav ul li {
	float:left;
	padding:0 4px 0 0;
}

#Nav ul li.last {
	padding:0;
}

#footer {
	text-align:right;
	padding:5px;
	background-color:#fdf01e;
}















