@charset "utf-8";


/*PC・タブレット・スマホ共通設定
---------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	/*-webkit-text-size-adjust: */
}
/*トップページの背景画像*/
body#top {
	
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	max-width: 100%;
	height: auto;
}
input,textarea,select {
	font-size: 14px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

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

/*ヘッダーブロック*/
header {
	border-top: 5px solid #bba072;	/*上のアクセント用の線の幅、線種、色*/
	background: #3d2d2d;	/*背景色*/
}
/*ヘッダーブロックの中*/
header .inner {
	width: 1100px;	/*ブロック幅*/
	height: 125px;	/*高さ*/
	position: relative;
	margin: 0px auto;
}



.logo{
padding:3px 0px 0px 10px;
font-size:10px;
line-height:1.6;
font-weight:normal;
color:#fff;
}



/*h1ロゴの設定*/
header .inner h1 {
	position: absolute;
	left: 20px;	/*innerに対して左から20pxの場所に配置*/
	top: 40px;	/*innerに対して上から20pxの場所に配置*/
}
/*電話番号ボックスの設定*/
header .inner address {
	position: absolute;
	top: 40px;		/*innerに対して上から20pxの位置に配置*/
	right: 20px;	/*innerに対して右から20pxの位置に配置*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.6;	/*行間*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる設定*/
}
/*電話番号の文字設定*/
header .inner address .tel {
	font-size: 18px;	/*文字サイズ*/
	color: #bba072;		/*文字色*/
	font-weight: bold;	/*太字に*/
	display: block;
}

/*上部のメインメニュー
------------------------------------------------#1d382b------------------*/
/*メニューブロック設定*/
nav#menubar {
	height: 62px;	/*ブロックの高さ*/
	background: #fefff1;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#fefff1), to(	#55402b));	/*グラデーション*/
	background: -webkit-linear-gradient(#fefff1, 	#55402b);	/*同上*/
	background: linear-gradient(#fefff1, 	#55402b);			/*同上*/
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.8);	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 0px 10px rgba(0,0,0,0.8);			/*同上*/
	margin-bottom: 30px;	/*メニューブロックと下のコンテンツの間にあけるスペース*/
	overflow: hidden;
}
nav#menubar ul {
	width:1100px;
	margin: 0px auto;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 180px;	/*メニュー幅*/
	border-right: 1px solid 	#55402b;	/*メニューの右側の線の幅、線種、色*/
	text-align: center;	/*文字を中央に揃える*/
	font-weight: bold;	/*文字を太字にする設定*/
}
nav#menubar ul li a {
	text-decoration: none;
	display: block;
	line-height: 30px;
	padding-top: 5px;
	color: #333;		/*文字色*/
	letter-spacing: 0.1em;	/*文字間隔を少しあける設定*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: 1px solid #000;	/*左側に線を入れる*/
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	background: 	#382b1d;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#382b1d), to(#333));	/*グラデーション*/
	background: -webkit-linear-gradient(#382b1d, #333);	/*同上*/
	background: linear-gradient(#382b1d, #333);			/*同上*/
	border-top: 2px solid #bba072;	/*上のアクセント用の線の幅、線種、色*/
	color: #fefff1;	/*文字色*/
}
/*英語表記の設定*/
nav#menubar ul li a span {
	color: #bba072;	/*文字色*/
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	line-height: 20px;
	padding-bottom: 5px;
}








/*inner
---------------------------------------------------------------------------*/
.inner {
	width: 1100px;	/*幅*/
	margin: 0 auto;
}



/*contents
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	width: auto;
	padding: 50px 0px;
}
/*コンテンツのh2タグの設定*/
.contents h2 {
	clear: both;
	margin-bottom: 15px;
	text-align:center;
	/*font-size: 100%;
	color: #FFF;		/*文字色*/
	/*background: #3b9e2b;	/*背景色（古いブラウザ用）*/
	/*background: -webkit-gradient(linear, left top, left bottom, from(#5ac949), to(#3b9e2b));	/*グラデーション*/
	/*background: -webkit-linear-gradient(#5ac949, #3b9e2b);	/*同上*/
	/*background: linear-gradient(#5ac949, #3b9e2b);			/*同上*/
	padding: 5px 15px;	/*上下、左右への余白*/
}




/*コンテンツのh2タグの１文字目への設定*/
.contents h2::first-letter {
	border-left: 3px solid #fff;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}












/*コンテンツのh3タグの設定*/
.contents h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 130%;
	font-family: "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "游明朝", YuMincho, "MSP明朝","MS PMincho","MS 明朝",serif;
	padding: 8px 14px;	/*上下、左右への余白*/
	
	color: #085704;
	background-color: #e2d5c7;
	border-bottom: 1px solid #ccc;
	
	
}
/*コンテンツのh3タグの１文字目への設定*/
.contents h3::first-letter {
	border-left: 3px solid #666;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 12px;	/*アクセントラインと文字の間にとる余白*/
}
/*コンテンツの段落タグ設定*/
.contents p {
	padding: 10px 15px 15px;	/*上、左右、下への余白*/
}
.contents p + p {
	padding-top: 0px;
}
.contents h2 + p,
.contents h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}











/*コンテンツのh3タグの設定-------2色のアンダーラインデザイン
.contents h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 130%;
	font-family: "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "游明朝", YuMincho, "MSP明朝","MS PMincho","MS 明朝",serif;
	
	
	position: relative;
	padding-left: .1em;
	padding-bottom: .1em;
	border-bottom: 4px solid #ccc;
}



.contents h3::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	z-index: 2;
	content: '';
	width: 20%;
	height: 4px;
	background-color: #AC494B;
}

*/


/*コンテンツの段落タグ設定
.contents p {
	padding: 10px 15px 15px;
}
.contents p + p {
	padding-top: 0px;
}
.contents h2 + p,
.contents h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}
*/














/*SERVICEページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.contents section.list {
	position: relative;
	overflow: hidden;
	background: #f6f4f0;	/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックス同士にとるスペース*/
}

/*ボックス内の段落タグ設定*/
.contents section.list p {
	padding: 0px;
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
.contents section.list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 20%;		/*写真の幅*/
	padding: 0.5%;			/*余白*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色。写真と写真の枠線との間に出る色。*/
}
/*ボックス内のh4タグ設定*/
.contents section.list h4 {
	font-size: 18px !important;
	margin-bottom: 10px;
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
}

/*main
---------------------------------------------------------------------------*/
.main {
	float: right;	/*右に回りこみ*/
	width: 800px;	/*メインコンテンツ幅*/
}

/*sub
---------------------------------------------------------------------------*/
.sub {
	float: left;	/*左に回りこみ*/
	width: 230px;	/*サブコンテンツ幅*/
	padding: 0px 14px 0px 14px;
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	background: none;
	margin-bottom: 0px;
	color: #333;	/*文字色*/
	padding: 0px 0px 10px;
}
/*subコンテンツのh2タグの１文字目への設定*/
.sub h2::first-letter {
	border-left: 3px solid #b5b5b5;	/*左側のアクセント用ラインの幅、線種、色*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
.sub ul.submenu li {
	background: #fff;	/*背景色*/
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
.sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 8px 10px 4px 10px;	/*メニュー内の余白。上下、左右への設定。*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
.sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #f7f7f7;	/*背景色*/
	border: solid 1px #e4e4e4;	/*線の線種、幅、色*/
}
/*box1内のメニューの設定*/
.sub .box1 ul.submenu {
	margin-bottom: 0px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*フッター設定
--------------------------------------------------------------------------
footer {
	clear: both;
	text-align: center;
	background: #3b9e2b;	
	color: #fff;		
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none !important;
	color: #fff;
}-*/


/*フッター設定▲▼▲▼
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	background: #3d2d2d url(../images/bg2.png);	/*背景色*/
	color: #FFF;			/*文字色*/
	
	
	padding: 20px 10px 15px 10px;
	
	border-top: 2px solid #111;	/*上のアクセント用の線の幅、線種、色*/
	border-bottom: 5px solid #111;	/*上のアクセント用の線の幅、線種、色*/
}
/*copyrightの設定*/
footer small {
	clear: both;
	display: block;
	
}



/*一番下prの設定*/
footer .pr {
	display: block;
	font-size: 70%;
}


/*一番上pr2の設定 フッタータイトル*/
footer .pr2 {
	display: block;
	margin: 10px 8px 32px 8px;
	font-size: 70%;
}



/*フッター内のリンク設定*/
footer a {
	color: #FFF;	/*文字色*/
	text-decoration: none;
}
footer a:hover {
	color: #FC0;	/*マウスオン時の文字色*/
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
.footermenu {
	text-align: left;
	width: 1100px;
	margin: 0px auto;
	margin-bottom: 20px;
	overflow: hidden;
	font-size: 12px;	/*文字サイズ*/
}
.footermenu ul {
	float: left;
	width: 22.8%;	/*１列あたりの幅*/
	height: 250px;	/*１列あたりの高さ。※メニュー量に応じて調整して下さい。*/
	border-right: 1px solid #888;	/*列ごとの右側に入る線の設定*/
	padding-left: 20px;	/*境界線との間にとるスペース*/
}
/*１つめのulタグにのみ左側に線を入れる設定*/
.footermenu ul:first-child {
	border-left: 1px solid #888;
}













/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
	
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #333;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background: linear-gradient(#4b4b4b, #333);			/*同上*/
}
/*テーブル内の左側*/
.ta1 th {
	width: 140px;
	padding: 10px;
	text-align: center;
	background: #f0f0f0;	/*背景色*/
}
/*テーブル内の右側*/
.ta1 td {
	padding: 10px;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	width: 980px;
	margin: 0 auto;
	padding-top: 40px;
}
#pagetop a {
	color: #3b9e2b;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;
	background: #fff;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 4px 4px 0px 0px;
	border: 1px solid #3b9e2b;
	border-bottom: none;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #3b9e2b;	/*背景色*/
	color: #fff;			/*文字色*/
}

/*その他
---------------------------------------------------------------------------*/


.look {
	background: #000;	/*テキストの背景が黒<span class="look"></span>*/
	border-radius: 4px;
	color: #fff;
	padding: 5px;
}

.lookpink {
	background: #ffd5d5;	/*テキストの背景がピンク<span class="lookpink"></span>*/
	border-radius: 0px;
	color: none;
	padding: 1px 6px 0px 6px;
}


.lookred {
	background: #ea9595;	/*テキストの背景がピンク<span class="lookpink"></span>*/
	border-radius: 0px;
	color: #fff;
	padding: 1px 6px 0px 6px;
}




.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}





.color1 {	
	color: #085704;
}

.color1big {	/********　元の緑の色　#3b9e2b　********/
	color: #085704;
	font-size:17px;
	font-weight:bold;
}

.color2big {	
	color: #085704;
	font-size:20px;
	font-weight:bold;
	font-family: "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "游明朝", YuMincho, "MSP明朝","MS PMincho","MS 明朝",serif;
	margin: 4px auto;
}



.color24big {	
	color: #085704;
	font-size:24px;
	font-weight:bold;
	font-family: "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "游明朝", YuMincho, "MSP明朝","MS PMincho","MS 明朝",serif;
	margin: 4px auto;
}




.color3big {	
	color: #666;
	font-size:16px;
	font-weight:bold;
	font-family: "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "游明朝", YuMincho, "MSP明朝","MS PMincho","MS 明朝",serif;
	margin: 4px auto;
}

.color4big {	
	color: #666;
	font-size:18px;
	font-weight:bold;
	font-family: "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "游明朝", YuMincho, "MSP明朝","MS PMincho","MS 明朝",serif;
	line-height:2.6em;
	padding-bottom: .5em;
	border-bottom: 1px dotted #ccc;
}


.color5big {
	margin-bottom: 10px;	
	color: #666;
	font-size:22px;
	font-weight:bold;
	font-family: "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "游明朝", YuMincho, "MSP明朝","MS PMincho","MS 明朝",serif;
	line-height:2.0em;
	padding-bottom: .2em;
	border-bottom: 0px dotted #ccc;
}


.color4nonbig {	
	color: #666;
	font-size:18px;
	font-weight:bold;
	font-family: "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "游明朝", YuMincho, "MSP明朝","MS PMincho","MS 明朝",serif;
	line-height:2.6em;
	padding-bottom: .5em;
	border-bottom: 0px dotted #ccc;
}
.color1-bl-16{
	color: #666;
	font-size:16px;
	font-weight:bold;
	padding:10px;
}

	
.color1-bl-15{
	color: #E86D6F;
	font-size:15px;
	font-weight:bold;
	
}	

.color1-bl-14{
	color: #666;
	font-size:14px;
	font-weight:bold;
	
}



.color2 {	/*テキストの色が赤<strong class="color2"></strong>*/
	color: #a8160a;
}





.pr {
	font-size: 10px;
}


.pr2 {
	font-size: 12px;
}


.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 2px 5px 0px 5px;
	border-radius: 2px;
	margin: 0px 5px 0px 5px;
}
.bg1  {
	background: #ebe7e0;
	overflow: hidden;
}
.pt150 {
	padding-top: 150px !important;
}
/*大きな文字*/
.type1 {
	font-size: 16px;
	font-weight:bold;
	line-height: 2.8;
	
	color: #a8160a;
	
}


	

hr.line {
  margin: 0 0 30px 0;
  padding: 2px 0 6px 0;
  border: 0;
  border-bottom: dotted 1px #666666;
}




/*menu.html内のメニュー案内の各ブロック  トップのコンテンツ内　左写真　右テキスト
-------------------------------------------------------------------------k--*/
/*ボックスの設定*/
#main section.list {
	margin-bottom: 15px;	/*ボックス間のスペース*/
	padding: 20px;			/*ボックス内の余白*/
	background: none;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	border: none;	/*線の幅、線種、色*/
	position: relative;
	overflow: hidden;
	
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 44%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;		/*画像を左へ回り込み*/
	background:#f9f9f9;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	width: 40%;			/*写真の幅*/
	height: auto;		/*写真の高さ*/
	border: none;	/*線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	font-size: 100%;
	color: #664c00;		/*文字色*/
	margin-left: 44%;	/*左の写真とのバランスをとって設定*/
	
	
	
	
	padding: 0px 0px 0px 12px;
	border-left: 3px solid #664c00;
}



/*menu.html内のメニュー案内の各ブロック  トップのコンテンツ内　右写真　左テキスト
------------------------------------------------------------------------k---*/
/*ボックスの設定*/
#main section.list2 {
	margin-bottom: 15px;	/*ボックス間のスペース*/
	padding: 20px;			/*ボックス内の余白*/
	background: none;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	border: none;	/*線の幅、線種、色*/
	position: relative;
	overflow: hidden;
	
}
/*ボックス内の段落タグ設定*/
#main section.list2 p {
	padding: 0px;
	margin-right: 44%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list2 figure img {
	float: right;		/*画像を左へ回り込み*/
	background:#f9f9f9;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	width: 40%;			/*写真の幅*/
	height: auto;		/*写真の高さ*/
	border: none;	/*線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
#main section.list2 h4 {
	font-size: 130%;
	color: #664c00;		/*文字色*/
	margin-right: 34%;	/*左の写真とのバランスをとって設定*/
	
	margin-bottom: 8px;
	padding: 0px 0px 0px 12px;
	border-left: 3px solid #664c00;
}



/*---------- 横2 -------------k---*/

.col_two_one {
	overflow:hidden;
	padding: 10px;			/*ボックス内の余白*/
}

.col_two_one ul {
	overflow:hidden;
	margin:2% -2% 0 0;
}
.col_two_one li {
	list-style:none;
	float:left;
	width:48%;
	margin:0 2% 2% 0;
}
.col_two_one li:nth-child(2n+1) {
	clear:both;
}
.col_two_one li img {
	width:100%;
	margin-bottom:2.5%;
	background:#f9f9f9;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	
	height: auto;		/*写真の高さ*/
	border: none;	/*線の幅、線種、色*/
}

/*ボックス内のh4タグ設定*/
.col_two_one li h4 {
	font-size: 130%;
	color: #a8160a;		/*文字色*/
	
	border-bottom: 1px solid #ccc;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
}

.col_two_one li h5 {
	font-size: 100%;
	color: #aa8055;		/*文字色*/
	
	margin-bottom: 0.2em;
}


.col_two_one p {
	font-size: 100%;
	color: #666;		/*文字色*/
	
	margin-bottom: 0.2em;
	
	margin: 10px auto;
}


/*---------- 横2 -------------k---*/












/*---------- 横2 センター　もみじバナー削除-------------k---*/

.col_two_one2 {
	overflow:hidden;
	padding: 10px;			/*ボックス内の余白*/
}



.col_two_one2 p {
	font-size: 100%;
	color: #666;		/*文字色*/
	margin-bottom: 0.2em;
	margin: 10px auto;text-align: center;
}

.col_two_one2 p img {
	width:48%;
	margin-bottom:2.5%;
	background:#f9f9f9;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	text-align: center;
	height: auto;		/*写真の高さ*/
	border: none;	/*線の幅、線種、色*/
}



/*---------- 横2 センター　終わり　-------------k---*/















/*---------- 3横 ------画像、テキスト共通--k--*/

.col_thr_one {
	overflow:hidden;
	padding: 20px;			/*ボックス内の余白*/
}

.col_thr_one ul {
	overflow:hidden;
	margin:1.492% -1.492% 20px 0;
	text-align:center;
}
.col_thr_one li {
	list-style:none;
	float:left;
	width:31.840%;
	margin:0 1.492% 6.492% 0;
}
.col_thr_one li:nth-child(3n+1) {
	clear:both;
}
.col_thr_one li img {
	width:90%;
	margin-bottom:2.5%;

	background:#f9f9f9;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	
	height: auto;		/*写真の高さ*/
	border: none;	/*線の幅、線種、色*/
}


/*ボックス内のh4タグ設定*/
.col_thr_one li h4 {
	font-size: 120%;
	color: #6a8d47;		/*文字色*/
	font-family: "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "游明朝", YuMincho, "MSP明朝","MS PMincho","MS 明朝",serif;
	text-align:left;
	margin: 0 0 0 12px;
	padding: 0px 0px 0px 12px;
	border-left: 3px solid #80aa55;
	
	
	
}


/*---------- 3横 ------画像、テキスト共通--小さいバナー用高さ調整--*/

.col_thr_one2 {
	overflow:hidden;
	padding: 20px;			/*ボックス内の余白*/
}

.col_thr_one2 ul {
	overflow:hidden;
	margin:1.492% -1.492% 0px 0;
	text-align:center;
}
.col_thr_one2 li {
	list-style:none;
	float:left;
	width:31.840%;
	margin:0 1.492% 0 0;
}
.col_thr_one2 li:nth-child(3n+1) {
	clear:both;
}
.col_thr_one2 li img {
	width:90%;
	margin-bottom:2.5%;

	background:#f9f9f9;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	
	height: auto;		/*写真の高さ*/
	border: none;	/*線の幅、線種、色*/
}





/*ボックス内のh4タグ設定*/
.col_thr_one2 li h4 {
	font-size: 120%;
	color: #6a8d47;		/*文字色*/
	font-family: "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "游明朝", YuMincho, "MSP明朝","MS PMincho","MS 明朝",serif;
	text-align:left;
	margin: 0 0 0 12px;
	padding: 0px 0px 0px 12px;
	border-left: 3px solid #80aa55;
	
	
	
}



/*---------- 3横 見出しをセンターに------見出し変更--k--*/

.col_thr_one3 {
	overflow:hidden;
	padding: 20px;			/*ボックス内の余白*/
}

.col_thr_one3 ul {
	overflow:hidden;
	margin:1.492% -1.492% 20px 0;
	text-align:center;
}
.col_thr_one3 li {
	list-style:none;
	float:left;
	width:31.840%;
	margin:0 1.492% 6.492% 0;
}
.col_thr_one3 li:nth-child(3n+1) {
	clear:both;
}
.col_thr_one3 li img {
	width:90%;
	margin-bottom:2.5%;

	background:#f9f9f9;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	
	height: auto;		/*写真の高さ*/
	border: none;	/*線の幅、線種、色*/
}


/*ボックス内のh4タグ設定*/
.col_thr_one3 li h4 {
	font-size: 130%;
	color: #1d382b;		/*文字色*/
	font-family: "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "游明朝", YuMincho, "MSP明朝","MS PMincho","MS 明朝",serif;
	text-align:center;
	
	padding-bottom: .5em;
	border-bottom: 1px solid #ccc;
	

}

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













/*---------- 4横 --------k--*/

.col_fou_one {
	overflow:hidden;
	padding: 10px;			/*ボックス内の余白*/
}

.col_fou_one ul {
	overflow:hidden;
	margin:1% -1% 0 0;
	text-align:center;
}
.col_fou_one li {
	list-style:none;
	float:left;
	width:24%;
	margin:0 0 1% 0;
}
.col_fou_one li:nth-child(4n+1) {
	clear:both;
}

.col_fou_one li img {
	width:100%;
	margin-bottom:2.5%;

	background:#f9f9f9;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	
	height: auto;		/*写真の高さ*/
	border: none;	/*線の幅、線種、色*/
}


/*ボックス内のh4タグ設定*/
.col_fou_one li h4 {
	font-size: 110%;
	color: #6a8d47;		/*文字色*/
	font-family: "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "游明朝", YuMincho, "MSP明朝","MS PMincho","MS 明朝",serif;
	text-align:center;
	
	
	
	
}



















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

/*全体の設定
---------------------------------------------------------------------------*/
/*トップページの背景画像*/
body#top {
	background: #fff url(../images/mainimg_s.jpg) no-repeat right 80px/60%;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロックの中*/
header .inner {
	width: auto;
	height: auto;
	text-align: center;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: static;
	padding-top: 20px;
}
/*電話番号ボックスの設定*/
header .inner address {
	position: static;
	padding-bottom: 20px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menubar {
	height: auto;
	margin-bottom: 10px;
}
nav#menubar ul {
	width: auto;
	border-top: 1px solid #d4d4d4;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 50%;
	border-bottom: 1px solid #d4d4d4;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	/*background: -webkit-gradient(linear, left top, left bottom, from(#404040), to(#0f0f0f));	グラデーション*/
	/*background: -webkit-linear-gradient(#404040, #0f0f0f);	同上*/
	/*background: linear-gradient(#404040, #0f0f0f);			同上*/
	
	
	background: -webkit-gradient(linear, left top, left bottom, from(#d5bfaa), to(#55402b));
	background: -webkit-linear-gradient(#d5bfaa, #55402b);
	background: linear-gradient(#d5bfaa, #55402b);
	
	
	
}
/*奇数番目のメニュー設定*/
nav#menubar ul li:nth-child(odd) {
	border-right: 1px solid #d4d4d4;
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: none;
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	border-top: none;
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	width: auto;
	margin: 0 10px;
}

/*contents
---------------------------------------------------------------------------*/
.contents {
	padding: 10px 0px;
}


.contents h2 {
	width: 40%;
	margin: 10px auto;
	text-align:center;
	
}





/*main,subコンテンツ
---------------------------------------------------------------------------*/
.main, .sub {
	float: none;
	width: auto;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	width: auto;
	margin-right: 10px;
}

/*その他
---------------------------------------------------------------------------*/
.pt150 {
	padding-top: 30px !important;
}
/*トップページで使っている大きな文字*/
h1.type1 {
	font-size: 50px;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
.footermenu {
	width: auto;
}
.footermenu ul {
	width: 25%;
	padding-left: 2%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}













}


/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*全体の設定
---------------------------------------------------------------------------*/
/*トップページの背景画像*/
body#top {
	background: #fff url(../images/mainimg_s.jpg) no-repeat right 80px/60%;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border: none;
	margin-bottom: 10px;
}
/*ヘッダーブロックの中*/
header .inner {
	width: auto;
	height: auto;
	text-align: center;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: static;
	padding-top: 20px;
}
header h1 img {
	width: 70%;	/*画面に対してロゴ画像を70％の幅に*/
	height: auto;
}
/*電話番号ボックスの設定*/
header .inner address {
	position: static;
	padding-bottom: 20px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menubar {
	height: auto;
	margin-bottom: 10px;
}
nav#menubar ul {
	width: auto;
	border-top: 1px solid #d4d4d4;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 50%;
	border-bottom: 1px solid #d4d4d4;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	/*background: -webkit-gradient(linear, left top, left bottom, from(#404040), to(#0f0f0f));	グラデーション*/
	/*background: -webkit-linear-gradient(#404040, #0f0f0f);	同上*/
	/*background: linear-gradient(#404040, #0f0f0f);			同上*/
	
	
	background: -webkit-gradient(linear, left top, left bottom, from(#d5bfaa), to(#55402b));
	background: -webkit-linear-gradient(#d5bfaa, #55402b);
	background: linear-gradient(#d5bfaa, #55402b);
	
	
	
	
	
}
/*奇数番目のメニュー設定*/
nav#menubar ul li:nth-child(odd) {
	border-right: 1px solid #d4d4d4;
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: none;
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	border-top: none;
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	width: auto;
	margin: 0 10px;
}

/*contents
---------------------------------------------------------------------------*/
.contents {
	padding: 10px 0px;
}


.contents h2 {
	width: 66%;
	margin: 10px auto;
	text-align:center;
	
}











/*SERVICEページの各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
.contents section.list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
.contents section.list figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ボックス内のh4タグ設定*/
.contents section.list h4 {
	margin-left: 0;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
.main, .sub {
	float: none;
	width: auto;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 102%;
}
/*テーブル内の左側*/
.ta1 th{
	width: 100px;
	padding: 6px;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 6px;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	width: auto;
	margin-right: 10px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {
	width: 96%;
}
.pt150 {
	padding-top: 30px !important;
}
/*トップページで使っている大きな文字*/
h1.type1 {
	font-size: 30px;
}




/*フッターメニュー設定
---------------------------------------------------------------------------*/
.footermenu {
	width: auto;
	
}
.footermenu ul {
	width: 50%;
	padding-top: 8px;
	padding-left: 2%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-bottom: 1px solid #888;
	border-left: 1px solid #888;
	border-top: 1px solid #888;
}

/*menu.html内のメニュー案内の各ブロック
------------------------------------------------------------------------k---*/
/*ボックス内の段落タグとh4タグ設定*/
#main section.list p,
#main section.list h4 {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 10px;
}

/*menu.html内のメニュー案内の各ブロック
------------------------------------------------------------------------k---*/
/*ボックス内の段落タグとh4タグ設定*/
#main section.list2 p,
#main section.list2 h4 {
	margin-right: 0;
}
/*ボックス内の写真設定*/
#main section.list2 figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 10px;
}



/*---------- 2横 ---------k--*/
/*---------- 2カラム　フロー baseとspのみ設置 ----------*/
/*---------- タテに並ぶ（スマートフォンでは1カラム)　ここを外すと小さく横並び----------*/
.col_two_one ul {
		margin-right:0;
	}
.col_two_one li {
		width:100%;
	}
.col_two_one li:nth-child(2n+1) {
		clear:both;
	}




/*---------- 2横 センター---------k--*/
/*---------- 2カラム　フロー baseとspのみ設置 ----------*/
/*---------- タテに並ぶ（スマートフォンでは1カラム)　ここを外すと小さく横並び----------*/
.col_two_one2 ul {
		margin-right:0;
	}
.col_two_one2 p {
		width:96%;margin-left:-14px;
	}
.col_two_one2 p img {
		width:100%;
	}
.col_two_one2 li:nth-child(2n+1) {
		clear:both;
	}












/*---------- 3横 ---------k--*/
/*---------- 3カラム　フロー baseとspのみ設置 ----------*/
/*---------- タテに並ぶ（スマートフォンでは1カラム)　ここを外すと小さく横並び----------*/

.col_thr_one li {
		width:100%;
	}
.col_thr_one li:nth-child(2n+1) {
		clear:both;
	}
.col_thr_one li:nth-child(3n+1) {
		clear:none;
		float:left;
	}


/*---------- 3横 バナー用高さ調整バナー用高さ調整バナー用高さ調整バナー用高さ調整バナー用高さ調整--------k--*/
/*---------- 3カラム　フロー baseとspのみ設置 ----------*/
/*---------- タテに並ぶ（スマートフォンでは1カラム)　ここを外すと小さく横並び----------*/

.col_thr_one2 li {
		width:98%;
	}
.col_thr_one2 li:nth-child(2n+1) {
		clear:both;
	}
.col_thr_one2 li:nth-child(3n+1) {
		clear:none;
		float:left;
	}

/*---------- 3横 見出しをセンターに---------k--*/
/*---------- 3カラム　フロー baseとspのみ設置 ----------*/
/*---------- タテに並ぶ（スマートフォンでは1カラム)　ここを外すと小さく横並び----------*/

.col_thr_one3 li {
		width:100%;
	}
.col_thr_one3 li:nth-child(2n+1) {
		clear:both;
	}
.col_thr_one3 li:nth-child(3n+1) {
		clear:none;
		float:left;
	}





/*---------- 4横 --------k--*/
/*---------- 4カラム　フロー baseとspのみ設置 ----------*/
/*---------- タテに並ぶ（スマートフォンでは1カラム)　ここを外すと小さく横並び----------*/

.col_fou_one li {
		width:50%;/*50は横に2枚,100はタテに1枚に並ぶ*/
	}
.col_fou_one li:nth-child(2n+1) {
		clear:both;
	}
.col_fou_one li:nth-child(3n+1) {
		clear:none;
		float:left;
	}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#ff952b), to(#3f3626));
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#ff952b, #3f3626);					
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), url(../images/btn_minus.png) no-repeat right center, linear-gradient(#ff952b, #3f3626);							
}
section#new h2.close {
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#ff952b), to(#3f3626));
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#ff952b, #3f3626);						
	background: url(../images/arrow1.png) no-repeat 10px center, url(../images/bg1.png), url(../images/btn_plus.png) no-repeat right center, linear-gradient(#ff952b, #3f3626);								
}
/*ブロック全体の設定*/
#new {
	margin: 0px 0px 15px 0px;
	padding:15px;
	
}
#new dl {
	height: auto;
	padding-left: 0;
	line-height: 2.0em;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}








}
