@charset "shift_jis";


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 1.4;		/*行間*/
	/*background: #000;	背景色*/
	background: #FFB400 url(images/bg.gif);
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,textarea,input {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

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

/*container（全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 902px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 0%;	/*上下、左右へのブロック内の余白*/
	background: #fff;	/*背景色*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 90px;	/*高さ*/
	position: relative;
}

/*バナーブロック*/
header #banner1 img {
	width: 250px;	/*画像幅*/
	position: absolute;
	right: 0%;		/*ヘッダーに対して右から2%の場所に配置*/
	top: 0px;		/*ヘッダーに対して上から30pxの場所に配置*/
}

header h1 {
	font-size: 10px;		/*h1タグの文字サイズ*/
	color: #81511c;			/*文字色（ここでは茶色）*/
	line-height: 1.2em;
	font-weight: normal;	/*通常の文字の太さに設定。もし太字にしたいならこの１行を削除する*/
	padding-left: 5px;
	padding-top: 5px;
}


/*コンテンツ（左右ブロックとフッターを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	overflow: hidden;
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	border-top: none;			/*上の線だけ消す*/
	box-shadow: 0px 0px 0px rgba(0,0,0,0.2);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2が透明度20%の事。*/
	border-radius: 3px 3px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/

}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	overflow: hidden;
	background: linear-gradient(#89d391, #409050);	/* グラデーション*/
	padding: 5px 0px 5px 2.8%;			/*上、右、下、左への余白*/
	font-size: 14px;				/*文字サイズ*/
	margin-bottom: 2px;
	
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 13.9%;	/*メニュー幅。メニューを増減する場合はここの数字を変更する。#menubarのpaddingの2.8%の数字が加わるので注意して下さい。*/
}
#menubar li a {
	display:  block;
	text-decoration: none;
	text-align: center;				/*文字を中央に*/
	line-height: 1.5;				/*行間を少し狭く*/
	padding: 5px 0px;				/*上下、左右へのボックス内の余白*/
	color: #fff;					/*文字色*/
	border-right: 1px solid #fff;			/*右側の線の幅、線種、色（古いブラウザ用）*/
	border-right: 1px solid rgba(255,255,255,0.8);	/*右側の線の幅、線種、色。255,255,255は白の事で0.3が透明度30%の事。*/
	text-shadow: 0px -1px rgba(0,0,0,0.8);		/*テキストの影。右へ、下へ(マイナスなので上に向けて)、0,0,0は黒のことで0.8は透明度80%の事。*/
}
/*１つ目のメニューにだけ左側に線を入れる設定*/
#menubar li:first-child a {
	border-left: 1px solid #fff;			/*古いブラウザ用*/
	border-left: 1px solid rgba(255,255,255,0.8);
}
/*マウスオン時*/
#menubar li a:hover {
	background: #fff;	/*背景色*/
	color: #69b371;		/*文字色*/
	text-shadow: none;	/*テキストの影を消す*/
}
/*装飾文字（※800px以下の小さな端末#menubar-sも共通）*/
#menubar li a span, #menubar-s li a span {
	display: block;
	text-shadow: none;
	font-size: 11px;	/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広く*/
	color: rgba(255,255,255,0.5);	/*文字色。255,255,255は白の事で0.5は透明度50%の事。*/
}
/*装飾文字のマウスオン時*/
#menubar li a:hover span {
	color: #69b371;	/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

.main2 {
	display: block;
	font-size: 12px;	/*文字サイズ*/
}
.motop {
	display: none;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	overflow: hidden;
	float: left;			/*右に回り込み*/
	padding: 10px 5px 0 5px;	/*上、右、下、左側へのボックス内の余白*/
	width: 74%;			/*幅*/
	margin-bottom: 30px;
	background: #ffffcc;
}
/*メインコンテンツのh2タグの設定*/
#main h2 {
	font-size: 14px;	/*文字サイズ*/
	/* background: #FF8400 url(../images/h2_bg.gif) no-repeat;	h2の背景画像設定*/
	background: linear-gradient(#FFD400, #FF4400);	/*グラデーション*/
	color: #FFFFFF;		/*h2の文字色（ここでは白）*/
	text-align: center;	/*h2の文字のセンタリング（中央よせ）。もし左よせがよければこの１行を削除する。*/
	line-height: 28px;
	margin-bottom: 15px;
}

/*メインコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	font-size: 18px;	/*文字サイズ*/
	margin-bottom: 20px;
	padding: 2px 20px;	/*上下、左右への余白*/
	border: 1px solid #dcdcdc;	/*線の幅、線種、色*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
}
/*メインコンテンツの段落タグ設定*/
#main p {
	padding: 0px 7px 15px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}


/*サブコンテンツ
---------------------------------------------------------------------------*/
#side {
	float: right;	/*左に回り込み*/
	width: 22%;		/*幅*/
	padding: 10px 5px 0 5px;	/*上、右、下、左へのボックス内の余白*/
	margin-bottom: 10px;
}
/*subコンテンツ内のh2タグ設定*/
#side h2 {
	text-align: center;		/*内容をセンタリング*/
	background: #69b371;		/*背景色*/
	color: #fff;			/*文字色*/
}

#side h3 {
	padding: 5px 0 0 0;	/*上、右、下、左へのボックス内の余白*/
	font-size: 12px;
	height: 24px;
	background: #1D9A02 url(../images/h3_bg.gif);	/*h3の背景画像設定*/
	color: #FFFFFF;			/*h3の文字色（ここでは白）*/
	letter-spacing: 0.2em;	/*文字間隔をほんの気持ち広げる設定。通常にしたいなら、この１行を削除する。*/
	text-align: center;		/*h3の文字のセンタリング（中央よせ）。もし左よせがよければこの１行を削除する。*/
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/

ul.sidemenu {
	margin-bottom: 20px;
	font-size: 13px;
}
ul.sidemenu li a {
	line-height: 36px;
	background: url(../images/submenu_bg.gif) no-repeat;	/*サイドメニューの背景画像*/
	height: 36px;
	padding-left: 20px;
	display: block;
	color: #333333;
	text-decoration: none;
}
ul.sidemenu li a:hover {
	background: url(../images/submenu_bg_over.gif) no-repeat;	/*カーソルオーバー時のサイドメニューの背景画像*/
	color: #333333;
}


/*フッター設定
---------------------------------------------------------------------------*/
#footer {
	clear: both;			/*mainとsideのフロート処理解除*/
	width: 100%;
	background: #1D9A02;	/*フッターの背景色*/
	text-align: center;		/*文字のセンタリング*/
	color: #FFFFFF;			/*文字色*/
	font-size: 12px;
}
#footer a {
	color: #fff;
}
#footer a:hover {
	color: #fff;
}
#footer .pr {
	display: block;
	font-size: 80%;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
}
#copyright a {
	text-decoration: none;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーフレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	font-size: 28px;	/*文字サイズ*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*角丸のサイズ。円形にする。正方形がいいならこの１行削除。*/
	bottom: 30px;	/*下から30pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は色が60%ついた状態の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}


/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #69b371;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}





/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	font-size: 15px;	/*文字サイズ*/
}

}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 80px;		/*高さ*/
	position: relative;
}

/*ロゴ画像*/
header img {
	width: 400px;		/*画像幅*/
	top: 0px;		/*ヘッダーに対して上から26pxの場所に配置*/
}

/*バナーブロック*/
header #banner1 img {
	display: none;
}

.main2 {
	display: none;
}
.motop {
	display: block;
}


/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
	overflow: hidden;
	margin-bottom: 20px;
	border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
	border-right: 1px solid #fff;	/*右側の線の幅、線種、色*/
	/* background: linear-gradient(#69b371, #4c9755);	グラデーション*/
	background: linear-gradient(#89d391, #409050);	/* グラデーション*/
	font-size: 18px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;	/*左に回り込み*/
	width: 50%;		/*メニュー幅*/
}
#menubar-s li a {
	display: block;
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.5;	/*行間を少し狭く*/
	padding: 7px 0;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
	border-left: 1px solid #fff;	/*左側の線の幅、線種、色*/
	color: #fff;	/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 25px;	/*上から15pxの場所に配置*/
	right: 2.5%;	/*右から2%の場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 40px;	/*幅*/
	height: 40px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #F0F0F0 url(../images/icon_menu.png) no-repeat center top/40px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #F0F0F0 url(../images/icon_menu.png) no-repeat center bottom/40px;
}

/*コンテンツ（左右ブロックとフッターを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	border-top: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	border-radius: 0px 0px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
}

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

#side {
	float: none;
	width: auto;
	padding: 2px 5px 0 5px;	/*上、右、下、左へのボックス内の余白*/
	margin-bottom: 30px;
}

ul.sidemenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #dcdcdc;	/*上の線の線種、幅、色*/
}

/*メニュー１個ごとの設定*/
ul.sidemenu li a {
	text-decoration: none;
	display: block;
	padding: 5px 10px;	/*メニュー内の余白。上下、左右への設定。*/
	border-bottom: solid 1px #dcdcdc;	/*下の線の線種、幅、色*/
	border-left: solid 1px #dcdcdc;		/*左の線の線種、幅、色*/
	border-right: solid 1px #dcdcdc;	/*右の線の線種、幅、色*/
	background: #fff;	/*サイドメニューの背景画像*/
}
ul.sidemenu li a:hover {
	background: #ffffcc;	/*カーソルオーバー時のサイドメニューの背景画像*/
	color: #333333;
}


/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.fl-half{float:left;width:45%;margin-left:3%;}
.sh {display:block;}
.pc {display:none;}

}



/*画面幅700px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:700px){

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ロゴ画像*/
header img {
	width: 300px;	/*画像幅*/
	top: 0px;		/*ヘッダーに対して上から26pxの場所に配置*/
}

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 80px;	/*高さ*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: none;	/*左に回り込み*/
	width: auto;	/*メニュー幅*/
}

/*メインコンテンツの段落タグ設定*/
#main p {
	padding: 0px 10px 15px;	/*上、左右、下への余白*/
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.fl-half{float:none;width:100%;margin-left:0;}

}


/*画面幅380px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:380px){

/*ロゴ画像*/
header img {
	width: 250px;	/*画像幅*/
	top: 0px;		/*ヘッダーに対して上から26pxの場所に配置*/
}

}


/*画面幅310px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:310px){

/*ロゴ画像*/
header img {
	width: 200px;	/*画像幅*/
	top: 0px;		/*ヘッダーに対して上から26pxの場所に配置*/
}

#menubar_hdr {
	top: 30px;	/*上から15pxの場所に配置*/
	right: 2.5%;	/*右から2%の場所に配置*/
}


}
