@charset "UTF-8";
/* CSS Document */

/*レイアウト*/

*{
margin:0;
padding:0;
}

html,body {
	height:100%;
	margin:0px auto;
}

body {
	color:#333;
	font-size:14px;
	font-family: "メイリオ", Meiryo, Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.8em;
	background:url(../images/back.png) repeat;
}

/*ヘッダーの設定*/

#header {
	position:relative;
	text-align:left;
	background-color: rgba(255,255,255,0.5);
	border-top:5px solid #746d64;
	box-shadow:2px 2px 2px #999;
	-moz-box-shadow:2px 2px 2px #999;
	-webkit-box-shadow:2px 2px 2px #999;
}

#header .img{
	width:980px;
	height:300px;
	margin:0 auto;
	background-image:url(../images/header.jpg)
}

#header .inner{
	position:absolute;
	bottom:0px;
	width:100%;

	background: -moz-linear-gradient(top,  rgba(116,109,100,0.2) 0%, rgba(116,109,100,0.35) 25%, rgba(116,109,100,0.5) 50%, rgba(116,109,100,0.65) 75%, rgba(116,109,100,0.8) 100%); 
	/* FF3.6+ */

	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(116,109,100,0.2)), color-stop(25%,rgba(116,109,100,0.35)), color-stop(50%,rgba(116,109,100,0.5)), color-stop(75%,rgba(116,109,100,0.65)), color-stop(100%,rgba(116,109,100,0.8))); 
	/* Chrome,Safari4+ */

	background: -webkit-linear-gradient(top,  rgba(116,109,100,0.2) 0%,rgba(116,109,100,0.35) 25%,rgba(116,109,100,0.5) 50%,rgba(116,109,100,0.65) 75%,rgba(116,109,100,0.8) 100%); 
	/* Chrome10+,Safari5.1+ */

	background: -o-linear-gradient(top,  rgba(116,109,100,0.2) 0%,rgba(116,109,100,0.35) 25%,rgba(116,109,100,0.5) 50%,rgba(116,109,100,0.65) 75%,rgba(116,109,100,0.8) 100%); 
	/* Opera 11.10+ */

	background: -ms-linear-gradient(top,  rgba(116,109,100,0.2) 0%,rgba(116,109,100,0.35) 25%,rgba(116,109,100,0.5) 50%,rgba(116,109,100,0.65) 75%,rgba(116,109,100,0.8) 100%);
	/* IE10+ */	

	background: linear-gradient(to bottom,  rgba(116,109,100,0.2) 0%,rgba(116,109,100,0.35) 25%,rgba(116,109,100,0.5) 50%,rgba(116,109,100,0.65) 75%,rgba(116,109,100,0.8) 100%);
	/* W3C */

	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33746d64', endColorstr='#cc746d64',GradientType=0 );
	/* IE6-9 */
}

#header .logo{
	width:960px;
	margin:0 auto;
}
	

.logo h1{
	color:#fff;
	font-size:20px;
	font-weight:normal;
	margin:10px 0 3px 0;
}
	
.logo h2{
	color:#fff;
	font-size:14px;
	font-weight:normal;
	border-top:1px #fff solid;
	margin-bottom:5px;
}

/*コンテンツの設定*/

#cont{
	width:980px;
	margin:20px auto;
	overflow:hidden;
}

/*サイドコンテンツの設定*/

#side{
	float:left;
	width:215px;
	border:1px #A7DBD8 dashed;
	background-color:rgba(255, 255, 255, 0.8);
	padding:10px;
}

#side h2{
	font-size:14px;
	color:#746d64;
	border-left:5px #FA6900 solid;
	border-bottom:1px #FA6900 solid;
	margin:10px;
	text-indent:5px;
}


#side h3{
	font-size:14px;
	font-weight:normal;
	color:#999;
	border-bottom:1px #999 solid;
	text-align:center;
	margin:5px 10px;
}

#side p{
	font-size:11px;
	color:#666;
	padding:0 20px;
	line-height:1.5em;
	margin-bottom:10px;
}

/*サイドナビの設定*/

#side ul{
	list-style-type:none;
	margin-top:0.8em;
}

#side ul li{
	display:block;
	font-size:12px;
	font-weight:bold;
	line-height:1.5em;
	text-indent:20px;
	margin-bottom:0.4em;
}

#side ul li a:link,
#side ul li a:visited{
	color:#666;
	text-decoration:none;
	padding-left:5px;
	border-left:5px #69D2E7 solid;
}
	
#side ul li a:hover{
	color:#999;
	text-decoration:none;
	border-left:5px #A7DBD8 solid;
	border-bottom:1px #A7DBD8 solid;
}

#side ul li a:active{
	color:#999;
	text-decoration:none;
}

/*現在位置表示*/

#side ul li a.selected{
	color:#999;
	text-decoration:none;
	border-left:5px #A7DBD8 solid;
	border-bottom:1px #A7DBD8 solid;
}

/*メインコンテンツの設定*/

#main{
	float:right;
	width:700px;
	margin-left:21px;
	border:1px #A7DBD8 dashed;
	background-color:rgba(255, 255, 255, 0.8);
	padding:20px 10px;
}

#main h2{
	font-size:16px;
	font-weight:normal;
	color:#746d64;
	background-color:#E0E4CC;
	border-bottom:3px #F38630 solid;
	text-indent:5px;
}

#main p{
	padding:10px;
}

/*mainにul,olが出てきたら*/

.padding{
	padding-left:40px;
}

/*フッターの設定*/

#footer{	
	background-color:rgba(116,109,100,0.5);
	position:relative;
	width:100%;
}

/*フッターナビの設定*/

#footer .navi{
	width:960px;
	height:35px;
	margin:0 auto;
}

#footer .navi ul{
	list-style:none;
	font-size:11px;
	padding-top:5px;
}

#footer .navi ul li{
	padding:0 5px;
	line-height:1.2em;
	border-left:1px #FFF solid;
	display:inline;
}

#footer .navi ul li:first-child{
	border-left:none;
}	

#footer .navi ul li a:link,
#footer .navi ul li a:visited,
#footer .navi ul li a:hover,
#footer .navi ul li a:active{
	color:#FFF;
	text-decoration:none;
}

/*コピーライトの設定*/

#copyright{
	color:#fff;
	background-color:#746d64;
	position:relative;
	width:100%;
	font-size:10px;
	text-align:center;
	height:15px;
	line-height:1.5em
}

/* ---------------------------------------------------------------------- */

/*サイトマップの設定*/

.sitemap{
}

.sitemap ul{
	list-style-type:none;
	padding:10px 15px;
}

.sitemap a:link{
	color:#333;
	text-decoration:none;
	display:block;
	margin-bottom:0.6em;
	text-indent:10px;
	border-bottom:1px #69D2E7 dotted;
}

.sitemap a:visited{
	color:#551a8b;
	text-decoration:none;
	display:block;
	margin-bottom:0.6em;
	text-indent:10px;
	border-bottom:1px #551a8b dotted;
}

.sitemap a:hover{
	color:#999;
	text-decoration:none;
	display:block;
	margin-bottom:0.6em;
	text-indent:10px;
	border-bottom:1px #FA6900 dotted;
}

.sitemap a:active{
	color:#999;
	text-decoration:none;
	display:block;
	margin-bottom:0.6em;
	text-indent:10px;
	border-bottom:1px #ffa800 dotted;
}

	


	


	
	