@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #000;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォント指定*/
	background: #6495ED;
	background-image: url("../images/hk.jpg")
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #FFF;	/*リンクテキストの色*/
}
a:hover {
	color: #006400;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	max-width: 980px;	/*最大幅を980pxまでに設定*/
	margin: 30px auto 50px;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	max-width: 1200px;	/*最大幅を1200pxまでに設定*/
	height: auto;
	margin: 0px auto;
	position: relative;
}
#mainimg img {
	vertical-align: bottom;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	z-Index:1;
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #FFF url(../images/hk.jpg) no-repeat center;	/*背景画像と背景色（※古いブラウザ用）*/
	background: url(../images/hk.jpg) no-repeat center, -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ededed));	/*グラデーション*/
	background: url(../images/hk.jpg) no-repeat center, -webkit-linear-gradient(#FFF 60%, #ededed);	/*同上*/
	background: url(../images/hk.jpg) no-repeat center, linear-gradient(#FFF 60%, #ededed);			/*同上*/
}
/*ヘッダーブロックの中*/
header .inner {
	width: 997px;	/*ブロック幅*/
	height: 100px;	/*ブロックの高さ*/
	position: relative;
	margin: 0px auto;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: absolute;
	left: 20px;	/*innerに対して左から20pxの場所に配置*/
	top: 24px;	/*innerに対して上から24pxの場所に配置*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#manubar {
	float: right;	/*右側にまわりこませる*/
	margin-right: 0px;
	margin-top: 30px;
	
}
/*メニュー１個ごとの設定*/
#manubar ul li {
	float: left;		/*左にまわりこませる*/
	margin-left: 5px;	/*メニュー間の隙間*/
}
#manubar ul li a {
	background: #333;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#111));	/*グラデーション*/
	background: -webkit-linear-gradient(#333, #111);	/*同上*/
	background: linear-gradient(#333, #111);			/*同上*/
	text-decoration: none;
	display: block;
	width: 117px;	/*メニュー幅*/
	line-height: 40px;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
}
/*マウスオン時の設定*/
#manubar ul li a:hover {
	background: #0000CD;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	/*もみじの背景画像*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	font-size: 18px;	/*文字サイズ*/
	color: #000;		/*文字色*/
	border-bottom: 3px solid #0000ff;	/*下線の幅、線種、色*/
	padding-left: 15px;
	font-weight: ;	/*hタグの太字を標準にする設定。太字がいいならこの１行削除。*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new {
	padding-left: 50px;	/*左を空ける設定*/
	padding-right: 50px;/*右部分を空ける設定*/
	color: #0000ff;		/*文字色*/
}
#new dl {
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 1000px;	/*ブロックの高さ*/
	padding-left: 10px;
	
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	color: #000;		/*文字色*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #0000ff;	/*下線の幅、線種、色*/
	padding-left: 8em;
	color: #0000ff;		/*文字色*/
}

#new dd a {
	color: #0000ff;	/*リンクテキストの色*/
}
#new dd a:hover {
	color: #FF0000;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}


/*フッター設定(copyrightなどが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;

}
footer .pr {
	display: block;
	font-size: 80%;

}
footer a {
	text-decoration: none;
}

/*その他
---------------------------------------------------------------------------*/
img {
	max-width: 100%;
	height: auto;
}
.newicon {
	background: #F00;
	color: #000;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}



}



