@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #000;	/*全体の文字色*/
	background-color: #71B280;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#8bb73e), to(#71B280));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#8bb73e, #71B280 50%);	/*同上*/
	background-image: linear-gradient(#8bb73e, #71B280 50%);			/*同上*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ/行間、フォントファミリー*/
}

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;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

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

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 980px;
	margin: 0px auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;	/*ブロックの幅*/
	height: 200px;	/*ブロックの高さ*/
	position: relative;
}
/*h1の設定*/
header h1 {
	font-size: 10px;
	font-weight: normal;
	position: absolute;
	left: 38px;	/*ヘッダーブロックに対して左から60pxの位置に配置*/
	top: 120px;	/*ヘッダーブロックに対して上から120pxの位置に配置*/
	z-index: 1;
	width: 390px;
}
header h1 a {
	text-decoration: none;
}
/*ロゴの設定*/
header #logo {
	position: absolute;
	left: 38px;	/*ヘッダーブロックに対して左から60pxの位置に配置*/
	top: 46px;	/*ヘッダーブロックに対して上から60pxの位置に配置*/
	z-index: 20;
}
/*ヘッダー装飾画像*/
#header-img {
	position: absolute;
	top: -50px;
	right: 30px;
	z-index: 30;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	background: #464749;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#464749), to(#2b2c2e));	/*グラデーション*/
	background: -webkit-linear-gradient(#464749, #2b2c2e);	/*同上*/
	background: linear-gradient(#464749, #2b2c2e);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px rgba(0,0,0,0.2);	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px rgba(0,0,0,0.2);			/*同上*/
	border-radius: 10px;		/*角丸のサイズ*/
	padding-left: 36px;
	height: 60px;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 150px;	/*メニュー幅*/
	border-right: 1px solid #000;	/*メニューの右側の線の幅、線種、色*/
	text-align: center;
	display: inline-block;	/* ★1:横並びに配置する */
	list-style-type: none;	/* ★2:リストの先頭記号を消す */
	position: relative;		/* ★3:サブメニュー表示の基準位置にする */
}
nav#menubar ul li a {
	color: #FFF;		/*文字色*/
	text-decoration: none;
	display: block;			/* ★4:項目内全域をリンク可能にする */
	line-height: 60px;
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: 1px solid #000;	/*左側に線を入れる*/
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	background: #fff799;		/*背景色*/
	color: #333;		/*文字色*/
}

/* -------------------- */
/* ▼サブメニューの装飾 */
/* -------------------- */
nav#menubar ul ul {
	display: none;       /* ★1:標準では非表示にする */
	margin: 0px;         /* ★2:サブメニュー外側の余白(ゼロ) */
	padding: 0px;        /* ★3:サブメニュー内側の余白(ゼロ) */
	position: absolute;  /* ★4:絶対配置にする */
	z-index: 10;
	height: 30px;
	width: 100%;
}

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */   /* ※サブメニューが1階層しか存在しない場合の記述 */
/* ---------------------------------- */
nav#menubar ul li:hover ul {
   display: block;      /* ★5:マウスポインタが載っている項目の内部にあるリストを表示する */
}

/* ------------------------ */
/* ▼サブメニュー項目の装飾 */
/* ------------------------ */
nav#menubar ul ul li {   /* ※A */
	background: #464749;	背景色（古いブラウザだとここの色のみが出ます）*/
	border-top: 1px solid black; /* 項目上側の枠線(ピンク色で1pxの実線) */
}
nav#menubar ul ul li a {   /* ※B */
   line-height: 30px;   サブメニュー1項目の高さ(35px) */
   text-align: left;    /* 文字列の配置(左寄せ) */
   padding-left: 5px;   /* 文字列前方の余白(5px) */
   font-weight: normal; /* 太字にはしない */
}
nav#menubar ul ul li a:hover {   /* ※C */
   background-color: #ffff80; /* サブメニュー項目にマウスが載ったときの背景色(淡い黄色) */
   color: #005500;            /* サブメニュー項目にマウスが載ったときの文字色(濃い緑色) */
}


/*コンテンツ（mainを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
	padding-top: 40px;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 30px;
}
#mainimg img {
	border-radius: 10px;	/*角丸のサイズ*/
}
#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;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: 90%;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
	margin: 0px auto;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	background: #464749;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#464749), to(#2b2c2e));	/*グラデーション*/
	background: -webkit-linear-gradient(#464749, #2b2c2e);	/*同上*/
	background: linear-gradient(#464749, #2b2c2e);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px rgba(0,0,0,0.2);	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px rgba(0,0,0,0.2);			/*同上*/
	font-size: 100%;
	border-radius: 10px;	/*角丸のサイズ*/
	color: #FFF;			/*文字色*/
	padding: 8px 15px;	/*上下、左右への余白*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px rgba(0,0,0,0.2);	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px rgba(0,0,0,0.2);			/*同上*/
	font-size: 100%;
	border-radius: 10px;	/*角丸のサイズ*/
	padding: 8px 15px;	/*上下、左右への余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*左から、上、左右、下への余白*/
}

/*SERVICEページ
---------------------------------------------------------------------------*/
/*各ボックスの設定（共通）*/
.list {
	background: #fff;	/*背景色*/
	position: relative;
	overflow: hidden;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、広げる幅、0,0,0は黒で0.2は透明度20%の事。*/
	margin-bottom: 20px;
}
.list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*画像の設定*/
.list img.img {
	float: left;
	width: 25%;	/*画像の幅。ここを変更する場合は、下の.list .textのmargin-leftの数字も調整する。*/
}
/*右側のテキスト欄*/
.list .text {
	padding: 2% 60px 2% 2%;	/*上、右、下、左への余白*/
	margin-left: 27%;		/*左の画像とのバランスをとって設定*/
}
/*h4見出しタグの設定*/
.list h4 {
	color: #60930e;	/*文字色*/
}
/*pタグの設定*/
.list p {
	padding: 0 !important;
}
/*３カラムタイプのボックス設定*/
.list.c3 {
	width: 31%;	/*ボックスの幅*/
	margin: 0 1% 20px;	/*上、左右、下へのボックスの外側にとる余白*/
	float: right;
	height: 298;	/*高さ。下の「.list.c3 a」のheightと合わせる。*/
	text-align: center;	/*文字をセンタリング*/
}
.list.c3 a {
	height: 300px;
}
/*３カラムタイプの画像設定*/
.list.c3 img.img {
	float: none;
	width: 100%;
}
.list.c3 .text {
	padding: 0;
	margin-left: 0;
}

/*<!-- /.imgL -->
/* 写真右寄せ */
.imgR {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}
.imgR img {
	float:right;
	margin:0 0 1em 0.5em;
	border-radius:5px;
}

/*ボックスにリンク指定がされた場合に出る「→」マーク*/
.list a::before {
	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;	/*ボックスの右から20pxの場所に配置*/
	top: 20px;		/*ボックスの上から20pxの場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*マウスオン時の「→」マーク*/
.list a:hover::before {
	background: #000;	/*背景色*/
	width: 40px;		/*幅*/
	line-height: 40px;	/*高さ*/
}
/*１カラムでページを表示時の３カラムボックスの高さ*/
.c1 .list.c3,
.c1 .list.c3 a {
	height: 400px;
}

/*gallery.html内の各ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main section.list {
	border-radius: 10px;		/*角丸のサイズ*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#eaeaea));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #eaeaea);	/*同上*/
	background: linear-gradient(#FFF, #eaeaea);			/*同上*/
	overflow: hidden;
	margin-bottom: 15px;	/*ボックス同士のスペース*/
	width: 31%;
	float: left;
	margin-left: 1.5%;
}
#main section.list.type2 {
	background: none;
}
#main section.list a {
	display: block;
	height: 340px;
	padding: 20px;	/*ボックス内の余白*/
	text-decoration: none;
	overflow: hidden;
}
/*マウスオン時*/
#main section.list a:hover {
	background: #fff799;	/*背景色*/
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	color: #666;	/*文字色*/
}
#main section.list.type2 p {
	color: #333;	/*文字色*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	width: 100%;	/*写真の幅*/
	height: auto;	/*写真の高さ*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	font-size: 100%;
	color: #333;	/*文字色*/
}
#main section.list.type2 h4 {
	color: #333;	/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;	/*文字色*/
	background: #444;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

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

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	background: #FFF;	/*背景色*/
}
.ta1 a:hover {
	color: #333;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #666;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 100px;
	padding: 10px;
	text-align: center;
	background: #e5e5e5;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background: #fff799;	/*背景色*/
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border: none;
	border-radius: 30px;	/*角丸のサイズ*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#dcdcdc));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #dcdcdc);	/*同上*/
	background: linear-gradient(#FFF, #dcdcdc);			/*同上*/
	color: #333;		/*文字色*/
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #444;	/*背景色*/
	color: #FFF;	/*文字色*/
}

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

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #222;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #F06;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
figcaption {
	font-size: 11px;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin-left: 5px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}



/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width:800px){

	/*コンテナー（HPを囲むブロック）
	---------------------------------------------------------------------------*/
	#container {
		width: auto;
		margin: 0px 6px;
	}

	/*ヘッダー（サイト名ロゴが入ったブロック）
	---------------------------------------------------------------------------*/
	/*h1の設定*/
	header h1 {
		font-size: 10px;
		font-weight: normal;
		position: absolute;
		left: 20px;	/*ヘッダーブロックに対して左から20pxの位置に配置*/
		top: 120px;	/*ヘッダーブロックに対して上から120pxの位置に配置*/
	}
	/*ロゴの設定*/
	header #logo {
		position: absolute;
		left: 20px;	/*ヘッダーブロックに対して左から20pxの位置に配置*/
		top: 60px;	/*ヘッダーブロックに対して上から60pxの位置に配置*/
	}
	header #logo img {
		width: 55%;	/*ロゴ画像の幅*/
		height: auto;
	}
	/*ヘッダー装飾画像*/
	#header-img {
		position: absolute;
		top: 10px;
		right: 0px;
		width: 50%;
		height: auto;
	}

	/*上部のメインメニュー
	---------------------------------------------------------------------------*/
	/*メニューブロック全体の設定*/
	nav#menubar ul {
		padding: 0;
		height: auto;
		//width: 100%;	/*メニュー幅*/
	}
	/*メニュー１個ごとの設定*/
	nav#menubar ul li {
		border-radius: 10px;		/*角丸のサイズ*/
		float: left;
		border: none !important;
		/*width: 150px;	メニュー幅*/
		margin-left: 1%;	/*メニューの左右間の余白*/
		width: 49%;
		background: #464749;	/*背景色（古いブラウザだとここの色のみが出ます）*/
		background: -webkit-gradient(linear, left top, left bottom, from(#464749), to(#2b2c2e));	/*グラデーション*/
		background: -webkit-linear-gradient(#464749, #2b2c2e);	/*同上*/
		background: linear-gradient(#464749, #2b2c2e);			/*同上*/
		-webkit-box-shadow: 1px 2px 7px rgba(0,0,0,0.2);	/*影の設定。右・下・ぼかし幅・色の設定*/
		box-shadow: 1px 2px 7px rgba(0,0,0,0.2);			/*同上*/
		border-right: 1px solid #000;	/*メニューの右側の線の幅、線種、色*/
		text-align: center;
		/*display: inline-block;	 ★1:横並びに配置する */
		list-style-type: none;	/* ★2:リストの先頭記号を消す */
		position: relative;		/* ★3:サブメニュー表示の基準位置にする */
	}
	/*奇数番目のメニューの設定*/
	nav#menubar ul li:nth-child(odd) {
		margin-left: 0;
		width: 50%;
	}
	nav#menubar ul li a {
		color: #FFF;		/*文字色*/
		text-decoration: none;
		display: block;			/* ★4:項目内全域をリンク可能にする */
	}
	/*マウスオン時の設定*/
	nav#menubar ul li a:hover {
		border-radius: 10px;		/*角丸のサイズ*/
		background: #fff799;		/*背景色*/
		color: #333;		/*文字色*/
	}
	
	/*mainコンテンツ
	---------------------------------------------------------------------------*/
	#main {
		width: 100%;
	}

}
/* --responsive------------------------------------------- */

/* 640pixel start */
@media screen and ( max-width : 640px ){

	body{
		font-size : 100%;
	}

}
/* 640pixel end */
