@charset "utf-8";


/*slide.cssの読み込み*/
@import url(slide4.css);
@import url(parts.css);


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

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

img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    margin-top: 0px;
}
.a_space_top_under {
    margin-top: 10px;
    margin-bottom: 10px;
}

.a_space_inder {
    margin-bottom: 10px;
    margin-top: 0px;
}






table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
.sp {
    display: none;
}

iframe {width: 100%;}
video,audio {max-width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.5s; /*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	text-decoration: none;
}
a:hover {
    color: #87c371;			/*マウスオン時の文字色*/
    text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
    margin-bottom: 0px;
}



/*サイトの最大幅の設定
---------------------------------------------------------------------------*/
#container,#menubar,footer .inner {
	max-width: 1000px;	/*サイトの最大幅。これ以上大きくならない。*/
	margin: 0 auto;
}
section .ex_top h5 {
    font-weight: normal;
}
.ex_top2 .ex_top2_midashi_m a {
    font-weight: normal;
}



/*containerの設定（footer以外の、ホームページを囲むブロック）
下の「1450px以下の設定」にあるbody.is-fixed #menubarのmarginの数字と合わせておく。
---------------------------------------------------------------------------*/
#container {
	padding: 0 50px;	/*上下、左右へのブロック内余白*/
}
h1 {
    font-weight: normal;
    font-size: small;
    padding-top: 5px;
    border-top-left-radius: 100px;
}


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

header p {
	font-size: 80%;		/*文字サイズ*/
	text-shadow: 1px 1px 3px #fff, -1px -1px 3px #fff;
}

/*ロゴ画像*/
header #logo {
	width: 350px;		/*ロゴ画像の幅*/
	position: absolute;
	left: 2%;		/*ヘッダーブロックの左からの配置指定*/
	bottom: 5px;	/*ヘッダーブロックの下からの配置指定*/
}
/*TELブロック*/
header address {
    font-style: normal;
    position: absolute;
    right: 2%;		/*ヘッダーブロックの右からの配置指定*/
    bottom: 10px;	/*ヘッダーブロックの下からの配置指定*/
    text-align: left;	/*内容をセンタリング*/
    font-size: 70%;		/*文字サイズ*/
    line-height: 1.5;	/*行間を少し狭く*/
    text-shadow: 1px 1px 3px #fff, -1px -1px 3px #fff;
    width: 386px;
}
/*TELブロックの電話番号部分*/
header address .tel {
    color: #54913d;		/*文字色*/
    font-size: 230%;	/*文字サイズ*/
    font-weight: bold;
}
header address p{
	font-size: 24px;		/*文字サイズ*/
	line-height: 1;
	letter-spacing: 0.05em;	/*文字間隔を少しあける設定*/
}



/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	position: relative;
	margin: 0 auto 20px;	/*上、左右、下へのマージン。20pxを変更する際は、「body.is-fixed header」の数値も変更する。*/
	height: 65px;			/*メニューの高さ。下の「#menubar li a」の「height」と「padding-top」の数字を合計した数字に合わせる。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 20%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
	line-height: 1.4;	/*行間を少しだけ狭く*/
}
#menubar li a {
	text-decoration: none;display: block;
	text-align: center;
	height: 50px;		/*高さ*/
	padding-top: 15px;	/*上に追加する余白*/
	font-size: 16px;		/*文字サイズ*/
	letter-spacing: 0.15em;	/*文字間隔を少しあける設定*/
	color: #fff;		/*文字色*/
	border-left: 1px dashed #fff;	/*メニューの左側の線の幅、線種、色（古いブラウザ用）*/
	border-left: 1px dashed rgba(255,255,255,0.4);	/*左の線の幅、線種、255,255,255は白の事で0.4は40%色がついた状態の事。*/
	background: #87c371;	/*背景色*/
	background: rgba(115,185,89,0.8);	/*背景色*/
}
/*最初のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: none;
	border-radius: 10px 0px 0px 10px;	/*角丸の指定。左上、右上、右下、左下への順番。*/
}
/*最後のメニューへの追加設定*/
#menubar li:last-child a {
	border-radius: 0px 10px 10px 0px;	/*角丸の指定。左上、右上、右下、左下への順番。*/
}
/*飾り文字*/
#menubar li span {
	display: block;
	font-size: 10px;		/*文字サイズ*/
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	opacity: 0.8;			/*透明度50％*/
}
/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #5b9f53;	/*背景色*/
	background: rgba(84,145,61,0.8);	/*背景色*/
}

.top-bnr {
	width: 100%;
	border: 1px solid #aaa;
	border-radius: 10px;
}

/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*スマホ用スライドショーを表示させない*/
#mainimg-s {display: none;}
/*スマホ用トップバナーを表示させない*/
#top-bnr-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;
	width: 20%;		/*幅。上の「#menubar li」と合わせる。*/
	border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
	font-size: 80%;
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
	line-height: 1.5;
}
#menubar ul.ddmenu li a {
	width: 100%;height: auto;font-weight: normal;border-radius: 0 !important;
	border: none;	/*線を一旦リセット*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #57b1e4;	/*背景色（古いブラウザ用）*/
	background: rgba(15,67,96,0.7);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
	font-size: 12px;		/*文字サイズ*/
	letter-spacing: 0.03em;	/*文字間隔を少しあける設定*/
	color: #fff;		/*文字色*/
	padding: 10px 0;	/*上下、左右への余白*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #000;	/*背景色*/
}

/*fixmenu。メインメニューが画面上部に到達した際の設定
---------------------------------------------------------------------------*/
/*fixmenuブロック*/
body.is-fixed .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
/*headerブロック*/
body.is-fixed header {
	margin-bottom: 85px;	/*メインメニューのheight(75)とmargin-bottom(20)を足した数字にする*/
}
/*最初のメニューへの追加設定*/
body.is-fixed #menubar li:first-child a {
	border-left: none;
	border-radius: 0px 0px 0px 10px;
}
/*最後のメニューへの追加設定*/
body.is-fixed #menubar li:last-child a {
	border-radius: 0px 0px 10px 0px;
}

/*コンテンツ（mainとsubブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	padding: 40px 0;
}

#contents2 {
	clear: both;
	padding: 10px 0;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#main {
	float: right;	/*右に回り込み*/
	width: 75%;		/*ボックス幅*/
	padding-bottom: 15px;
}
.bana {
    height: auto;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.bana_title {
    font-size: x-large;
    clear: both;
    border-bottom: 2px solid #05B2C7;
    color: #0B6B93;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.bana p {
    margin-top: 0px;
}



 .bana img {
    float: none;
    border-radius: 10px;
    margin-top: 10px;
    clear: both;
}




/*１カラム時のメインコンテンツ*/
.c1 #main {
	float: none;
	width: auto;
}

/*mainコンテンツのh1タグ設定*/
#main h1 {
	clear: both;
	margin-bottom: 5px;
	font-size: 150%;	/*文字サイズ*/
	font-weight: normal;
}


/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	padding: 5px 20px;	/*上下、左右への余白*/
	font-size: 140%;	/*文字サイズ*/
	font-weight: normal;
	color: #444;		/*文字色*/
	border: 1px solid #54913d;
	border-radius: 10px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
}
#main h2 {
}



/*h2タグの１文字目への追加設定*/
#main h2::first-letter {
	border-left: 3px solid #54913d;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
.a_txt_s {
    font-size: small;
    color: #888888;
}

/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	color: #61a947;
	margin-bottom: 20px;
	padding-left: 20px;
	font-size: 130%;	/*文字サイズ*/
	font-weight: normal;
	line-height: 1.4;
}

/*mainコンテンツのh3タグ設定*/
#main h4 {
	margin-bottom: 15px;
	padding: 10px 20px 5px;	/*上下、左右への余白*/
	font-size: 125%;	/*文字サイズ*/
	font-weight: normal;
	color: #315524;		/*文字色*/
	background-color: #c4e1b9;
	border-bottom: 3px solid #2294d5;
}


/*mainコンテンツの段落タグ設定*/
#main p {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;	/*上、左右、下への余白*/
    margin-top: 15px;
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
    margin-top: -10px;
    border-width: medium;
}
#main section + section {
	padding-top: 30px;
}








/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 22%;		/*ブロックの幅*/
	padding-bottom: 40px;
}
section ul li {
}

.side_keyword_tl   {
    color: #226A08;
    height: 30px;
    font-size: large;
    border-bottom: 1px solid #78A865;
    padding-top: 10px;
    margin-bottom: 10px;
    margin-top: 100px;
}
.side_keyword ul li {
    font-size: small;
}
.side_keyword .side_keyword_tl .fas.fa-tag {
    margin-right: 10px;
    margin-top: 0px;
}



/*１カラム字のサブコンテンツ*/
.c1 #sub {display: none;}
/*h2見出しタグ設定*/
#sub h2 {
	margin-bottom: 5px;
	font-weight: normal;
	font-size: 18px;	/*文字サイズ*/
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
	background: url(../images/tori.png) no-repeat left center / 20px;	/*アイコンの読み込み。左(left)に、上下中央(center)に配置。*/
	padding-left: 23px;	/*アイコン部分の余白をここで作る*/
}
/*段落タグ（p）設定*/
#sub p {
	line-height: 1.6;	/*行間を少し狭く*/
}
.check2 {
}


#sub img {
	margin-top: 15px;
}

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

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	background: #ecf5e8;	/*背景色*/
	border: solid 1px #54913d;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。右へ、下へ、ぼかし幅、距離。#fffは白のことでinsetは内側へ向けての影の指定。*/
	border-radius: 10px;	/*角丸のサイズ*/
}
/*box1内のメニューの設定*/
#sub .box1 .submenu {
	margin-bottom: 0px;
}
#sub .box1 .submenu li a {
	padding: 5px 10px;	/*上下、左右へのメニュー内の余白*/
	background: #fff;	/*背景色*/
}

/*サブコンテンツ内のbox2
---------------------------------------------------------------------------*/
#sub .box2 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	background: #e9f5fc;	/*背景色*/
	border: solid 1px #208ac6;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。右へ、下へ、ぼかし幅、距離。#fffは白のことでinsetは内側へ向けての影の指定。*/
	border-radius: 10px;	/*角丸のサイズ*/
}
/*box2内のメニューの設定*/
#sub .box2 .submenu {
	margin-bottom: 0px;
}
#sub .box2 .submenu li a {
	padding: 5px 10px;	/*上下、左右へのメニュー内の余白*/
	background: #fff;	/*背景色*/
}

/*サブコンテンツキーワード
---------------------------------------------------------------------------*/
.side_keyword {
    margin-bottom: 20px;
    overflow: hidden;
    margin-top: 20px;
}
.side_keyword_tl {
    font-size: 14px;
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;
    font-weight: bold;
    padding: 0 0 0px 28px;
    border-bottom: 2px solid #006600;
    background: url(/img/common/side_keywords_icon.png) no-repeat 0 40%;
    line-height: 30px;
}


.side_keyword ul {


}
.side_keyword li {
    float: left;
    margin: auto 7px 7px auto;
}
.side_keyword li a{
    background: #DDD;
    text-align: center;
    padding: 2px 8px;
    display: block;
    color: #333;
    border-top: 1px solid #AAA;
    font-size: 12px;

}
.side_keyword li a:hover{
	background: #CCC;
	color:#333;
}

/*フッター設定
---------------------------------------------------------------------------*/
/*footerボックス*/
footer {
	clear: both;overflow: hidden;
	border-top: 10px solid #f6faf4;	/*上の線の幅、線種、色*/
	background: #e2f0dc;	/*背景色*/
	color: #444;		/*文字色*/
	padding-top: 20px;	/*上に空けるボックス内の余白*/
	line-height: 1.6;
}
/*footer内のinner*/
footer .inner {
	padding: 0 50px;	/*上下、左右へのブロック内余白*/
}
/*リンクテキスト、マウスオン時の文字色*/
footer a, footer a:hover {
	color: #fff;
}
/*フッター内のh2タグ*/
footer h2 {
	color: #467933;
	font-size: 150%;	/*文字サイズ*/
	font-weight: normal;
	letter-spacing: 0.1em;	/*文字間隔を少し広く*/
}
/*フッター内のaddress（電話番号ブロック）タグ*/
footer address {
	font-style: normal;
	background: #333;		/*背景色*/
	border-radius: 10px;	/*角丸の指定*/
	text-align: center;		/*内容をセンタリング*/
	line-height: 1.5;		/*行間*/
	padding: 5px;			/*ボックス内の余白*/
}
/*フッター内のaddress（電話番号の行）タグ*/
footer address .tel {
	font-size: 40px;	/*文字サイズ*/
	background: url(../images/icon_tel.png) no-repeat left center / 30px;	/*電話番号アイコンの読み込み*/
	padding-left: 45px;	/*電話番号アイコンの幅をここで調整する*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	clear: both;overflow: hidden;
	font-size: 80%;	/*文字サイズを少し小さく*/
	margin-left: -1%;
	padding: 20px 0;
}
/*１列分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 32%;		/*今回は４列作ったので、下のmarginを含めて25%になるよう指定。５列にするならこの行は19%にする。*/
	margin-left: 1%;
}
/*メニュー１個あたりの設定*/
#footermenu ul li {
	padding: 0 10px;	/*上下、左右への余白*/
}
/*見出し*/
#footermenu li.title {
	color: #fff;
	font-weight: bold;	/*太字にする*/
	background: #61a947;	/*背景色*/
	border-radius: 2px;	/*角丸のサイズ*/
}
/*リンクテキスト*/
#footermenu a {
	color: #000;
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%色がでた状態の事。*/
}
/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;	/*透明度。100%色がでた状態の事。*/
}


/*FOOTERボタン*/	
#anchor_btn_pc{	
position: fixed;	
width: 100%;	
bottom: 0;	
z-index: 9999;	
background: rgba(212,212,212,0.5);	
padding: 5px 0;	
margin: 0;	
}	
#anchor_btn_pc ul{	
width: 100%;	
max-width: 1000px;	/*３つ並べる場合。1000px*/
margin: 0 auto;	
display: flex;	
justify-content: space-between;	
}	
#anchor_btn_sp{	
position: fixed;	
bottom: 0;	
z-index: 9999;	
width: 100%;	
padding: 0;	
margin: 0;	
}	
#anchor_btn_sp ul{	
display: flex;	
width: 100%;	
text-align: center;	
}	
#anchor_btn_sp i{	
font-size: 2rem;	
}	

#fix_menu_smartphone {
	  display: none;	
	  }



/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
    clear: both;
    text-align: center;
    background: #333;	/*背景色*/
    color: #fff;		/*文字色*/
    padding-top: 20px;
    padding-right: 100px;
    padding-left: 100px;
    padding-bottom: 100px;
}
#copyright a {text-decoration: none;color: #fff;}
#copyright .pr {display: block;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 10px 20px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
line-height: 25px;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
line-height: 25px;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}





/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list {
	overflow: hidden;
	width: 29.5%;	/*幅*/
	float: left;	/*左に回り込み*/
	margin: 0 0 20px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
	border: 1px solid #54913d;	/*枠線の幅、線種、色*/
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 0.5%;	/*ボックス内の余白*/
	border-radius: 5px;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/
}
.list img {
	width: 100%;	/*幅*/
}
.list a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -0.5%;	/*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
	padding: 0.5%;	/*ボックス内の余白*/
/* 	background: url(../images/arrow1.png) no-repeat right bottom / 40px;*/	/*リンク設定した際の右下の矢印マークの読み込み。right（右）、bottom（下）、40pxは画像の幅。*/
}
/*マウスオン時の設定*/
.list a:hover {
	position: relative;
	left: 2px;	/*マウスオン時に右に1px移動する*/
	top: 2px;	/*マウスオン時に下に1px移動する*/
}


/*h4（見出し）タグの設定*/
.list h4 {
	color: #87c371;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}


/*p（段落）タグの設定*/
.list p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: 6em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}

/*サムネイル画像の設定
---------------------------------------------------------------------------*/
.thumbnail {
	width: 70px;	/*サムネイル画像の幅*/
	margin: 5px;	/*画像同士に空けるスペース*/
	opacity: 0.7;	/*透明度。色が70%出た状態。*/
}
figure a h5 {
    font-size: small;
    text-align: center;
    text-indent: 0px;
    padding-left: 0px;
    font-weight: normal;
}

/*マウスオン時*/
.thumbnail:hover {
	opacity: 1;	/*透明度。色が100%出た状態。*/
}

/*box（info1.htmlやstaff.htmlで使っている枠色がついたタイプのボックス）
---------------------------------------------------------------------------*/
/*box*/
.box {
	overflow: hidden;
	border: 3px solid #87c371;	/*枠線の幅、線種、色*/
	padding: 20px;				/*ボックス内の余白*/
	border-radius: 10px;		/*角丸のサイズ。この１行を削除すれば角のとれた長方形になります。*/
	margin-bottom: 20px;		/*ボックスの下に空けるスペース*/
}
/*box内のh4タグ*/
.box h4 {
	color: #87c371;		/*文字色*/
	font-size: 130%;	/*文字サイズ*/
}
/*box内のpタグ*/
.box p {
	padding: 0 !important;
}
/*box内のfrとflスタイルのリセット*/
.box .fr,.box .fl {margin-bottom: 0;}

/*ページナビ（メインメニューの下にある、現在の階層を示すナビメニュー）
---------------------------------------------------------------------------*/
/*ナビブロック全体*/
.nav {
	background: #eee;		/*背景色*/
	padding: 10px 20px;		/*上下、左右へのボックス内の余白*/
	margin-bottom: 30px;	/*ボックスの下（外側）に空けるスペース*/
	margin-top: -30px;		/*メニューとの余白が空きすぎるので少し上につめる*/
	border-radius: 10px;	/*角丸の指定*/
}
/*メニュー１個あたりの指定*/
.nav li {
	display: inline;	/*横並びになる指定*/
	padding: 0 5px;		/*上下、左右への余白*/
}
/*メニューの冒頭に入れる「>」のマーク*/
.nav li::before{
	content: ">";			/*このテキストを出力します。変更してもかまいませんが機種依存文字は化ける場合があるので使わない。*/
	padding-right: 12px;	/*文字サイズ*/
	color: #999;			/*文字色*/
}
/*最初のメニューには「>」は入れない*/
.nav li:first-child::before {
	content: none;
}

/*ページ内メニュー（info.htmlで使用）
---------------------------------------------------------------------------*/
/*ブロック全体*/
.menu {
	overflow: hidden;
	margin-bottom: 20px;	/*下に空けるスペース*/
	text-align: center;		/*内容をセンタリング*/
	font-size: 120%;		/*文字サイズ*/
}
/*メニュー１個あたりの指定*/
.menu li {
	display: inline;	/*横並びになる指定*/
	border-right: 1px solid #999;	/*右側の線の幅、線種、色*/
}
.menu li a {
	padding: 10px;	/*メニュー内余白*/
	color: #999;	/*リンクテキストの文字色*/
}
/*最初のメニューへの追加指定*/
.menu li:first-child {
	border-left: 1px solid #999;	/*左側の線の幅、線種、色*/
}
/*現在表示中(current)と、マウスオン(hover)時の指定*/
.menu li.current a, .menu li a:hover {
	text-decoration: none;	/*リンクの下線を非表示にする*/
	color: #333;	/*文字色*/
}

/*よく頂く質問
---------------------------------------------------------------------------*/
/*外側ブロック*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問*/
.faq dt {
	color: #87c371;		/*文字色*/
	font-weight: bold;	/*太字にする設定*/
	padding-left: 30px;	/*背景アイコンに重ならないよう左に余白を作る*/
	background: url(../images/faq_q.png) no-repeat left top / 30px;	/*「Q」アイコン*/
}
/*回答*/
.faq dd {
	padding-left: 30px;		/*背景アイコンに重ならないよう左に余白を作る*/
	margin-bottom: 20px;	/*ボックスの下側（外側）に空けるスペース*/
	padding-bottom: 20px;	/*ボックス内の下側に空けるスペース*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	background: url(../images/faq_a.png) no-repeat left top / 30px;	/*「A」アイコン*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 160px;		/*幅*/
	text-align: left;
	font-weight: normal;
	vertical-align: top;
}

/*テーブル（ta2）サブブロックの受付テーブルに使用。
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta2 caption {
	border: 1px solid #b7b7b7;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;
	background: #fff;		/*背景色*/
	color: #333;
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta2設定*/
.ta2 {
	table-layout: fixed;
	width: 100%;
	margin-bottom: 20px;
	text-align: center;	/*センタリング*/
	background: #fff;	/*背景色*/
	color: #333;
}
.ta2, .ta2 td, .ta2 th {
	word-break: break-all;
	border: 1px solid #b7b7b7;	/*テーブルの枠線の幅、線種、色*/
}
/*曜日*/
.ta2 th {
	background: #fffbe3;
}

/*btn（inputタグ用）
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;		/*背景色*/
}
/*マウスオン時の設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 5px;
	border-radius: 3px;
}
#sub p.check {
	padding: 5px 10px !important;
	font-size: 120%;
	text-align: center;
}
p.check a {color: #fff;}

/*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;
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	bottom: 40px;		/*下から40pxの場所に配置*/
	right: 1%;			/*右から1%の場所に配置*/
	font-size: 32px;
	background: #87c371;	/*背景色*/
	background: rgba(70,121,51,0.8);	/*背景色*/
	color: #fff;		/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 50%;		/*円形にする*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {list-style: disc;padding: 0px 20px 0px 45px;font-size: 110%;}
ol {padding: 0 20px 20px 45px;font-size: 110%;}
#sub ul.disc, #sub ol {padding: 0 0 0 20px;}

/*ul.circle,olタグ
---------------------------------------------------------------------------*/
ul.circle {list-style: circle;padding: 0 20px 0px 45px;font-size: 110%;}
ol {padding: 0 20px 20px 45px;font-size: 110%;}
#sub ul.circle, #sub ol {padding: 0 0 0 20px;}

/*ul.square,olタグ
---------------------------------------------------------------------------*/
ul.square {list-style: square;padding: 0 20px 0px 45px;font-size: 110%;}
ol {padding: 0 20px 20px 45px;font-size: 110%;}
#sub ul.circle, #sub ol {padding: 0 0 0 20px;}



/*「NEW」アイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}
.tel .tel_txt {
    color: #000000;
    font-size: large;
    font-weight: normal;
    padding-right: 10px;
    padding-top: auto;
    width: 170px;
    float: left;
    margin-top: 7px;
    right: auto;
    text-align: left;
}
.bullets ul {
    clear: both;
    margin-left: 25px;
    margin-bottom: 20px;
    
}
.bullets h5 {
    margin-left: 25px;
    border-bottom: 1pt solid #54913D;
    margin-bottom: 10px;
}

.bullets ul li {
    list-style-position: inside;
    list-style-type: disc;
    margin-left: 25px;
    margin-left: 1.4em;
    text-indent: -1.4em;
    margin-bottom: 10px;
    padding-left: 0px;
}
.a_img_right {
    float: right;
    padding-left: 5px;
}
#main  .col {
    margin-left: -10px;
    color: #000000;
    font-size: medium;
    margin-top: -20px;
    background-color: rgba( 255, 255, 255, 1 );
    border-color: rgba( 115, 185, 89, .77 );
    color: rgba( 115, 185, 89, 1 );
    border-width: medium;

}
.a_new {
    color: #FFFFFF;
    background-color: #FF0004;
    width: auto;
    height: 15px;
    padding-right: 5px;
    padding-left: 5px;
    border-radius: 5px;
}
.a_info {
    color: #FF0004;
    font-weight: bold;
    border: 2px solid #FF0023;
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    background-color: #FFE0E0;
    text-align: center;
}

#privacy {
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px;
    width: 18%;
    display: block;

}
.pc {
    display: inherit;
}





























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

/*containerの設定（footer以外の、ホームページを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: 0 3%;	/*上下、左右へのブロック内余白*/
}
.bana p a {
    color: #0100F9;
}

.whats_new {
    line-height: 30px;
}
.txt {
    border-bottom: 1px solid #CCCCCC;
    width: 100%;
    float: right;
}



/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: static;
	height: auto;
	background: none;
	padding: 10px 0;
	text-align: left;
}
/*ロゴ画像*/
header #logo {
	position: static;
	margin: 0 auto;
}
/*TELブロック*/
header address {
	padding: 10px 0;
	position: static;
}

/*文字サイズ変更ボタン（※文字サイズを「大」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	display: none;	/*非表示にする*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;z-index: 1;
	position: fixed;
	top: 0px;			/*上からの配置場所指定*/
	left: 0px;			/*左からの配置場所指定*/
	width: 100%;		/*幅*/
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 5px 10px;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #87c371;	/*背景色*/
	background: rgba(115,185,89,0.8);	/*背景色*/
	font-size: 16px;		/*文字サイズ*/
	color: #fff;		/*文字色*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	font-size: 12px;	/*文字サイズ*/
	margin-left: 20px
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;position: fixed;z-index: 2;
	top: 25px;	/*上からの配置場所指定*/
	right: 3%;	/*右からの配置場所指定*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 40px;		/*幅*/
	height: 40px;		/*高さ*/
	border-radius: 50%;	/*円形にする。この行削除すれば正方形になります。*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #87c371 url(../images/icon_menu.png) no-repeat center top/40px;	/*背景色、アイコンの読み込み、上半分(top)を表示、幅50px*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #333 url(../images/icon_menu.png) no-repeat center bottom/40px;	/*背景色、アイコンの読み込み、上半分(bottom)を表示、幅50px*/
}

/*fixmenu。メインメニューが画面上部に到達した際の設定
---------------------------------------------------------------------------*/
body.is-fixed header {
	margin-bottom: 0px;	/*fixmenuから折りたたみメニューになるので、ここはリセット。*/
}

/*main,sub
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

/*フッター設定
---------------------------------------------------------------------------*/
/*footer内のinner*/
footer .inner {
	padding: 0 3%;	/*上下、左右へのブロック内余白*/
}
/*footer内の２カラムブロックを１カラムにする*/
footer .half.fr,footer .half.fl {
	float: none;
	margin: 0 0 20px;
	width: 100%;
}

}



/*画面を横向きにした場合の高さが500px以下の場合の設定。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

/*メインメニュー。小さな端末用メニューを２列に。
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;		/*左に回り込み*/
	width: 50%;			/*幅*/
}

}






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

header p {
	font-size: 65%;		/*文字サイズ*/
	text-shadow: none;
}

    header address {
    display: none;
}
    
.a_txt_s {
    display: none;
    
}
    
#mainimg {display: none;}
    
#mainimg-s {
    display: block;
}

.top-bnr-s {
	border: 1px solid #aaa;
	border-radius: 5px;
}

#top-bnr {display: none;}
#top-bnr-s {display: block;}

#contents {
    padding: 20px 0;
}

.a_img_right {
    float: none;
    clear: both;
    margin-bottom: 5px;
    width: 100%;
}
.bullets ul {
    clear: both;
    margin-left: 0px;
    margin-bottom: 20px;
    font-size: medium;
    
}
.bullets h5 {
    margin-left: 0px;
    font-size: large;
}
    
.bullets ul li {
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px dotted #B0C3C9;
}

 .bana img {
    float: none;
    clear: both;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}
    
.bana_title {
    font-size: large;
    text-align: center;
    
}
    .pc {
    display: none;        
    }
    .sp {
    display: inherit;        
            }
    
/*containerとfooterの文字サイズ指定
---------------------------------------------------------------------------*/
#container, footer {
	font-size: 3.6vw;
	line-height: 1.7;		/*行間*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 65%;	/*ロゴ画像の幅*/
}
/*TELブロックの電話番号部分*/
header address .tel {
	font-size: 20px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*他。微調整。*/
#main section + section {
	padding-top: 20px;
}

/*フッター設定
---------------------------------------------------------------------------*/
/*フッター内のaddress（電話番号の行）タグ*/
footer address .tel {
	font-size: 24px;
	background: url(../images/icon_tel.png) no-repeat left center / 20px;
	padding-left: 30px;
}
/*footer
---------------------------------------------------------------------------*/
  /*お電話での問い合わせを表示する*/

  #fix_menu_smartphone {
	  display: inherit;	
	  }
    
#anchor_btn_pc {
	  display: none;	
	  }
	
 #fix_menu_smartphone {
    position: fixed;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 9999;
    text-align: center;
    display: flex;
    justify-content: space-between;
    float: left;
}
    
#fix_menu_smartphone img {
  -webkit-animation: bound 1.5s ease-in infinite;
  -moz-animation: bound 1.5s ease-in infinite;
  animation: bound 1.5s ease-in infinite;
}
    
    .day_time {
    clear: both;
    width: 100%;
    position: fixed;
    bottom: 105px;
    
}

 .day_time img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
    

.nav-item {
    width: 100%;
    margin: .5em auto 0;
    padding: .33em;
    float: right;
}


/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list {
	width: 94%;
	margin-left :2%;
	margin-bottom :4%;
}
.list figure {
	float: left;
	width: 100%;
	margin-right: 1%;
}
/*h4（見出し）とp(段落)タグの設定*/
.list h4, .list p {
	height: auto;
}

/*よく頂く質問
---------------------------------------------------------------------------*/
.faq dt,.faq dd {
	background-size: 25px;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 {
	font-size: 12.5px;
}
.ta1 caption {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 6px 4px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 115px;
}

}
/* 光らせるためのstyle */
.shine{
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}
/* 光の疑似要素 */
.shine::before{
  content: "";
  animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #fff;
  width: 140%;
  height: 100%;
  transform: skewX(-45deg);
  top: 0;
  left: -160%;
  opacity: 0.5;
  position: absolute;
}
/* 光の動き */
@keyframes shine{
  0% {
    left: -160%;
    opacity: 0;
  }
  70% {
    left: -160%;
    opacity: 0.5;
  }
  71% {
    left: -160%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}
