@charset "utf-8";


/*全体
---------------------------------------------------------------------------*/
body {
	color: #666;	/*文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント*/
	background: url(../images/bg.png);	/*背景画像*/
}
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: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #5fa003;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す*/
}

/*h1ロゴ
---------------------------------------------------------------------------*/
h1 {
	font-size: 10px;		/*文字サイズ*/
	font-weight: normal;	/*太字を標準にする*/
	text-align: right;		/*テキストを右側に*/
	line-height: 30px;		/*行間*/
	width: 990px;
	margin: 0 auto 0;
}

/*container
---------------------------------------------------------------------------*/
#container {
	width: 950px;	/*ボックス幅*/
	margin: 0 auto 0;
	padding: 20px;	/*ボックス内の余白*/
	background-color: #FFF;	/*背景色*/
	border-radius: 20px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 0px 10px #CCC;	/*影 それぞれ右へ、下へ、ぼかし幅、色*/
	box-shadow: 0px 0px 10px #CCC;			/*同上*/
}

/*header
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ヘッダーブロックの幅*/
	position: relative;
	margin-bottom: 30px;
}
/*ロゴ画像*/
header #logo img {
	position: absolute;
	z-index: 3;
	left: 6%;		/*ヘッダーブロックに対して左から6pxの位置に配置*/
	top: 17%;		/*ヘッダーブロックに対して上から6pxの位置に配置*/
	width: 21%;		/*画像幅*/
	height: auto;	/*画像の高さ 上の幅に合わせて高さは自動*/
}

/*homeスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	position: relative;
	height: 300px;
	width: 950px;
	margin-bottom: 20px;
	border-radius: 10px;	/*角丸のサイズ*/
}
#mainimg img {
	border-radius: 10px;	/*角丸のサイズ*/
	vertical-align: bottom;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*main
---------------------------------------------------------------------------*/
#main {
	width: 700px;	/*main幅*/
	float: right;	/*右側に回り込み*/
	padding-bottom: 50px;
}
/*mainのh2タグ*/
#main h2 {
	background-color: #5fa003;	/*背景色（古いブラウザだとこの色のみが出ます）*/
	background-image: url(../images/arrow1.png), -webkit-gradient(linear, left top, left bottom, from(#bbd890), to(#5fa003));	/*丸いマーク画像の読み込みとグラデーション*/
	background-image: url(../images/arrow1.png), -webkit-linear-gradient(#bbd890, #6da220 49%, #5fa003 50%);	/*同上*/
	background-image: url(../images/arrow1.png), linear-gradient(#bbd890, #6da220 49%, #5fa003 50%);			/*同上*/
	background-repeat: no-repeat;		/*背景の丸いマーク画像をリピートしない*/
	background-position: left center;	/*背景の丸いマーク画像の位置*/
	font-size: 100%;
	padding: 0px 10px 0px 40px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 18px;	/*角丸のサイズ*/
	color: #FFF;			/*文字色*/
	line-height: 36px;		/*行間*/
	-webkit-box-shadow: 1px 2px 5px #ccc;	/*影 それぞれ右へ、下へ、ぼかし幅*/
	box-shadow: 1px 2px 5px #ccc;			/*同上*/
	border: 1px solid #5fa003;	/*枠線の幅、線種、色*/
}
/*mainのh3タグ*/
#main h3 {
	background-color: #FFF;	/*背景色（古いブラウザだとこの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background-image: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	font-size: 100%;
	padding: 0px 10px 0px 19px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 16px;	/*角丸のサイズ*/
	line-height: 32px;		/*行間*/
	-webkit-box-shadow: 0px 2px 5px #e0e0e0;	/*影 それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #e0e0e0;			/*同上*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*mainの段落タグ*/
#main p {
	padding: 0.5em 20px 1em;	/*左から、上、左右、下への余白*/
}

/*sub
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 220px;	/*sub幅*/
	padding-bottom: 50px;
}
/*subのh2タグの設定*/
#sub h2 {
	background-color: #8c8c8c;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#dcdcdc), to(#8c8c8c));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#cbcbcb, #949494 49%, #8c8c8c 50%);	/*同上*/
	background-image: linear-gradient(#cbcbcb, #949494 49%, #8c8c8c 50%);			/*同上*/
	border-radius: 10px 10px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下へ*/
	color: #FFF;	/*文字色*/
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	padding: 10px 0px;	/*上下、左右への余白*/
}

/*PC用submenu
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#sub #submenu {
	margin-bottom: 15px;	/*ブロックの下にスペースを空ける*/
}
/*メニュー１個ごと*/
#sub #submenu ul li a {
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	display: block;
	border-bottom: 2px dotted #8c8c8c;	/*下線の幅、線種、色*/
	padding: 5px 0px;	/*上下、左右への余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間 0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#sub #submenu ul li a:hover {
	background-color: #dfeccd;	/*マウスオン時の背景色*/
}

/*footer
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}

/*home更新情報・お知らせ
---------------------------------------------------------------------------*/
/*ブロック全体*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る 全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	margin: 5px 20px 0px;
}
/*日付*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事*/
#new dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル
---------------------------------------------------------------------------*/
.ta1 {
	width: 660px;
	margin: 0px auto;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 10px;
	text-align: center;
	background-color: #ececed;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとこの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
}

/*PAGE TOP
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #5fa003;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15 {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #5fa003;
}
.color2 {
	color: #FF0033;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
figcaption {
	font-size: 11px;
}
#menubar_hdr {
	display: none;
}
#menubar {
	display: none;
}
