@charset "utf-8";


/*各cssの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@import url(../map.css);
@import url(../../list.css);
@import url(../../mainimg.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: 2;		/*行間*/
	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%;font-weight: normal;
}
ul{
	list-style-type: none;
}
img{
	border: none;max-width: 100%;height: auto;vertical-align: middle;
}
table{
	border-collapse:collapse;font-size: 100%;border-spacing: 0;
}
iframe{
	width: 100%;
}
video,audio{
	max-width: 100%;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a{
	color: #333;		
	transition: 0.5s;	
}
a:hover{
	color: #8fb85f;			
	text-decoration: none;
}
/*マウスオン時の画像*/
a:hover img {
	opacity: 0.8;	
}

/*inner共通
---------------------------------------------------------------------------*/
.inner{
	max-width: 1300px;	/*サイトの最大幅*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header{
	background: #fff;	
	height: 90px;		
	color: #333;		
}
/*ロゴ画像*/
header #logo{
	width: 450px;		
	float: left;		
	margin-top: 25px;	
	margin-left: 3%;	
}

/*
---------------------------------------------------------------------------*/
header .login a{
	display: inline-block;text-decoration: none;
	float: right;		
	margin-right: 3%;	
	margin-top: 30px;	
	border: 1px solid #fe7200;	
	background: #fe7200;
	background: #fe7200 url(../images/icon_login.png) no-repeat 20px 11px / 12px;
	color: #fff;	
	padding: 5px 30px 5px 50px;	
	border-radius: 4px;		
	font-size: 14px;	
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);	
	letter-spacing: 0.2em;	
}
/*マウスオン時*/
header .login a:hover{
	background-color: #fe9b00;	
	color: #fff;	
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar{
	clear: both;
	height: 75px;		
	text-align: center;	
	background: #8fb85f;	
	border-bottom: 1px solid #fff;	
	font-size: 14px;	
}
/*メニュー１個あたりの設定*/
#menubar li{
	float: left;	
	width: 12.5%;	
}
#menubar li a{
	text-decoration: none;display: block;
	line-height: 1.6;	
	color: #fff;		
	height: 48px;		
	padding-top: 27px;
	border-right: 1px solid #fff;	
	border-right: 1px solid rgba(255,255,255,0.5);	
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a{
	border-left: 1px solid #fff;	
	border-left: 1px solid rgba(255,255,255,0.5);	
}
/*メニューの最後項目が改行するため追加設定*/
#menubar li:last-child a{
	height: 60px;		
	padding-top: 15px;	
}
/*飾り文字*/
#menubar li span{
	display: block;
	font-size: 9px;			
	font-weight: normal;	
	letter-spacing: 0.2em;	
	opacity: 0.5;			
}
/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar li a:hover, #menubar li.current a{
	background: #266640;	
}
/*スマホ用メニューを表示させない*/
#menubar-s{
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr{
	display: none;
}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu{
	position:absolute;visibility: hidden;z-index: 10;padding-top: 1px;
	width: 12.5%;		
	font-size: 12px;	
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li{
	float: none;
	width: 100%;
}
#menubar ul.ddmenu li a{
	width: 100%;height: auto;font-weight: normal;
	border: none;	
	border-bottom: 1px solid #fff;	
	background: #000;	
	background: rgba(0,0,0,0.7);	
	color: #fff;		
	padding: 10px 0;	
}
/*ドロップダウンメニュー内の見出し*/
#menubar ul.ddmenu li.title a{
	background: #8fb85f;	
	cursor: default;		
	padding: 3px 0;			
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover{
	background: #000;	/*背景色*/
}
/*見出しのマウスオン時*/
#menubar ul.ddmenu li.title a:hover{
	background: #8fb85f;
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu .nav-fix-pos{
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed-menu header{
	margin-bottom: 75px;	
}
/*上の設定の「is-fixed-menu」を「is-fixed」に変更したものをそのまま記入します。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed .nav-fix-pos{
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed header{
	margin-bottom: 75px;
}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents{
	clear: both;overflow: hidden;
	padding-top: 20px;		
	padding-bottom: 40px;	
}

/*contents-in（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents-in{
	float: left;	
	width: 80%;		
}
/*２カラム時*/
.c2 #contents-in{
	float: none;
	width: auto;
}


/*追加 各課のヘッダーイメージ画像
---------------------------------------------------------------------------*/
.deptimg{
	width:100%;
	margin-bottom:20px;
}


/*mainコンテンツ（中央のブロック）
---------------------------------------------------------------------------*/
#main{
	float: right;	
	width: 75%;		
}
/*mainコンテンツのh2タグ設定*/
#main h2{
	clear: both;
	margin-bottom: 20px;
	padding: 10px 20px;	
	font-size: 18px;	
	color: #fff;		
	background: #8fb85f;	
}
/*h2タグの１文字目への追加設定*/
#main h2::first-letter{
	border-left: 3px solid #fff;	
	padding-left: 15px;				
}
/*mainコンテンツのh3タグ設定*/
#main h3{
	clear: both;
	margin-bottom: 20px;
	padding: 4px 20px;	
	font-size: 16px;	
	border: 1px solid #ccc;		
}
/*h3タグの１文字目への追加設定*/
#main h3::first-letter{
	border-left: 3px solid #266640;	
	padding-left: 15px;				
}
/*mainコンテンツの段落タグ設定*/
#main p{
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p{
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p{
	margin-top: -10px;
}
#main section + section{
	margin-top: 30px;
}

/*subコンテンツ（左側のブロック）
---------------------------------------------------------------------------*/
#sub{
	float: left;	
	width: 22.5%;	
}

/*sideコンテンツ（右側のブロック）
---------------------------------------------------------------------------*/
#side{
	float: right;	
	width: 18%;		
}
/*２カラム時*/
.c2 #side{
	display: none;	
}

/*sub,side共通設定
---------------------------------------------------------------------------*/
/*h2見出しタグ設定*/
#sub h2,
#side h2{
	text-align: center;		
	padding: 8px 0px;		
	color: #fff;			
	background: #b4b4b4;	
	background: linear-gradient(#b4b4b4, #959595);	
}
/*段落タグ（p）設定*/
#sub p,#side p{
	line-height: 1.6;	
}

/*box1設定（sub,sideで使っています）
---------------------------------------------------------------------------*/
/*box1設定*/
#sub .box1,
#side .box1{
	border: 1px solid #cccccc;	
	padding: 10px;			
	margin-bottom: 20px;	
	background: #eeeeee;	
}
/*box1の中にsubmenuがある場合の下のmarginをなくす*/
.box1 .submenu{
	margin-bottom: 0 !important;
}


/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub .submenu,
#side .submenu{
	margin-bottom: 20px;		
	border-top: 1px solid #cccccc;	
}
/*メニュー１個ごとの設定*/
#sub .submenu li a,
#side .submenu li a{
	text-decoration: none;display: block;
	padding: 5px 10px;		
	border: 1px solid #cccccc;	
	border-top: none;		
	background: #fff;		
}
/*↓オンマウス時の色追加*/
#sub .submenu li a:hover{
	color: #fff;	
	background: #8fb85f;	
}


/*TOP9コマのため追加
----------------------------------*/
img.topmain{
	float: left;
	width:32%;
	margin-left: 10px;
	margin-bottom: 10px;
	border: 1px solid #ccc;	
	border-radius: 3px;	
} 



/*フッター設定
---------------------------------------------------------------------------*/
footer{
	clear: both;
	background: #8fb85f;	
	font-size: 85%;			
	color: #fff;			
}
footer a, footer a:hover{
	color: #fff;	
}
footer .pr{
	display: block;font-size: 80%;
}

/*
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu{
	overflow: hidden;
	padding: 20px 0;	
	font-size: 12px;	
}
/*１列分の設定*/
#footermenu ul{
	float: left;	
	width: 18%;		
	padding-right: 1%;
	padding-left: 1%;
}
/*メニュー１個あたりの設定*/
#footermenu ul li{
	padding: 0 10px;
}
/*見出し*/
#footermenu li.title{
	font-weight: bold;
	background: rgba(0,0,0,0.1);
	border-radius: 2px;	
}
/*リンクテキスト*/
#footermenu a{
	text-decoration: none;
	opacity: 0.7;	
}
/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;
}

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

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding: 0px 20px;	
	margin-bottom: 20px;	
}
/*日付設定*/
#new dt{
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
	padding-top: 5px;
	padding-bottom: 5px;
}
/*記事設定*/
#new dd{
	padding-left: 9em;
	border-bottom: 1px solid #ccc;	
	padding-top: 5px;
	padding-bottom: 5px;
}

/*ページ
---------------------------------------------------------------------------*/
.faq{
	padding: 0 20px 10px;	
}
.faq dt{
	font-weight: bold;	
	color: #8fb85f;		
}
.faq dd{
	padding-bottom: 10px;	
}



/*listブロック（他よりインポートしてカスタマイズ）
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list01{
	overflow: hidden;
	width: 21%;	
	float: left;	
	margin: 0 0 20px 2%;	
	border: 1px solid #ccc;
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	
	padding: 0.8%;	/*ボックス内の余白*/
	border-radius: 3px;	
}
.list01 a{
	display: block;text-decoration: none;overflow: hidden;
	margin: -2%;	
	padding: 2%;	/*ボックス内の余白*/
}
/*マウスオン時の設定*/
.list01 a:hover{
	position: relative;
	left: 1px;	
	top: 1px;	
}
/*h4（見出し）タグの設定*/
.list01 h4{
	font-size: 105%;	
	font-weight: bold;
	text-align: left;	
	margin-top:10px;
	height: 2em;		
	overflow: hidden;	
}
/*p（段落）タグの設定*/
.list01 p{
	padding: 0 !important;
	line-height: 1.5;	
	font-size: 80%;		
	color: #333;		
	height: 6em;		
	overflow: hidden;	
}



/*ブロック１個あたりの設定*/
.list02{
	overflow: hidden;
	width: 27.3%;	
	float: left;	
	margin: 0 0 20px 3%;	
	border: 1px solid #ccc;	
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	
	padding: 0.8%;	
	border-radius: 3px;	
}




.list02 img{
	margin-bottom:10px;
}
/*h4（見出し）タグの設定*/
.list02 h4{
	font-size: 105%;	
	font-weight: bold;	
	text-align: left;	
	height: 2em;		
	overflow: hidden;	
}
/*p（段落）タグの設定*/
.list02 p{
	padding: 0 !important;
	line-height: 1.5;	
	font-size: 80%;		
	color: #333;		
	overflow: hidden;	
}


/*ブロック１個あたりの設定*/
.list03{
	overflow: hidden;
	width: 43%;	/*幅*/
	float: left;	
	margin: 0 0 20px 3%;	
	border: 1px solid #ccc;	
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	
	padding: 0.8%;	/*ボックス内の余白*/
	border-radius: 3px;	
}



.list03 img{
	margin-bottom:10px;
}
/*h4（見出し）タグの設定*/
.list03 h4{
	font-size: 105%;	
	font-weight: bold;	
	text-align: left;	
	height: 2em;		
	overflow: hidden;
}
/*p（段落）タグの設定*/
.list03 p{
	padding: 0 !important;
	line-height: 1.5;	
	font-size: 80%;		
	color: #333;		
	overflow: hidden;	
}



/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption{
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta1設定*/
.ta1{
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
	background: #fff;	/*背景色*/
	color: #666;		/*文字色*/
}
.ta1, .ta1 td, .ta1 th{
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th{
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
}
/*labelタグ*/
.ta1 label{
	display: inline-block;
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td label{
	float: left;
	display: inline-block;
	margin-right: 10px;
}
.ta1 td .specialbox img{
	vertical-align: middle;
}
.ta1 td .specialtext{
	float: left;
	width: 45%;
}

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

/*btn
---------------------------------------------------------------------------*/
a.btn{
	display: block;text-decoration: none;
	background: #d90000;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#d90000, #a70000);	/*グラデーション*/
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	padding: 10px;		/*ボタン内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、ぼかし幅、0,0,0は黒の事で0.3は色が30%ついた状態。*/
	border: 1px solid #a70000;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
a:hover.btn{
	box-shadow: none;
	background: #fff;	/*背景色*/
	color: #a70000;		/*文字色*/
}

/*btn2
---------------------------------------------------------------------------*/
a.btn2{
	display: inline-block;text-decoration: none;
	background: #2e8bdb;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#51a9f3, #2e8bdb);	/*グラデーション*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
	border-radius: 2px;	/*角丸のサイズ*/
	font-size: 12px;	/*文字サイズ*/
}
/*マウスオン時*/
a.btn2:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

/*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: 50px;		
	line-height: 50px;	
	bottom: 50px;		
	right: 3%;			
	background: #000;	
	background: rgba(0,0,0,0.6);	
	color: #fff;	
	border: 1px solid #fff;
	animation-name: scroll;	
	animation-duration: 1S;	
	animation-fill-mode: forwards;
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover{
	background: #999;
}

/*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;
}

/*UPアイコン
---------------------------------------------------------------------------*/
.upicon{
	background: #0072ff;	
	color: #FFF;		
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}
.list-compact .newicon,.list-compact .upicon,.list-sub .newicon,.list-sub .upicon{
	margin: 0;
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check{
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a{
	color: #fff;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc{
	list-style: disc;
	padding: 0 20px 20px 45px;
}
ol{
	padding: 0 20px 20px 47px;
}



/*提言フォームここから　---------------------------------------------------------------------------*/


input[type="text"],
select,
textarea,
button{
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}
 
 
input[type="text"],
textarea{
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 95%;
  transition: 0.8s;
  border-radius: 0;
}
 
input[type="text"]:focus,
textarea:focus{
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
 
textarea[name="content"]{
  display: inline-block;
  width: 90%;
  height: 200px;
}
 
input::placeholder,
textarea::placeholder {
  color: #ccc;
}
 
::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}
 
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
 
:-ms-input-placeholder{
  color: #ccc;
  opacity: 1;
}
 
.form-table{
  width: 90%;
  margin: auto; /*追加*/
  margin-bottom: 35px; /*追加*/
}
 
.form-table th,
.form-table td{
  border-top: 1px solid #d7d7d7;
  padding: 20px;
}
 
.form-table th{
  background: #E3EED7;
  padding-left: 50px;
  position: relative;
  text-align: left;
}


/*提言フォームここまで　---------------------------------------------------------------------------*/



/*その他
---------------------------------------------------------------------------*/
.thumbnail{
	width: 80px;margin-bottom: 5px;
}
.look1{
	background: #eee;border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;
}
.look2{
	background: #E3EDD8;border: 1px solid #006400;padding: 5px 10px;border-radius: 4px;
} 
.look3{
	background: #FFD5D5;border: 1px solid #ff0000;padding: 5px 10px;border-radius: 4px;
} 
.mb15,.mb1em{
	margin-bottom: 15px !important;
}
.mb10{
	margin-bottom: 10px !important;
}
.mb30{
	margin-bottom: 30px !important;
}
.clear{
	clear: both;
}
.color1, .color1 a{
	color: #266640 !important;
}
.color2, .color2 a{
	color: #0000ff !important;
}
.color3, .color3 a{
	color: #ff0000 !important;
}
.txtsmall1{
	font-size: 0.7em;
}
.txtlarge1{
	font-size: 1.3em;
} 
.txtbold{
	font-weight: bold;
}
.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;width:40%;margin-left: 10px;margin-bottom: 10px;
}
img.fl{
	float: left;width:40%;margin-right: 10px;margin-bottom: 10px;
}
.big1{
	font-size: 24px;letter-spacing: 0.2em;
}
.mini1{
	font-size: 11px;
}
.sp{
	display: none;
}
.ofx{
	overflow-x: hidden;
}
.panorama-img{
	width: 600px !important;height: 400px !important;
}



/*画面幅1301px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1301px){

/*inner共通
---------------------------------------------------------------------------*/
.inner{
	width: 1301px;	
}

/*メインメニューとドロップダウンメニューの設定変更。
メニュー数が6個なので、1301÷6=216pxになります。
---------------------------------------------------------------------------*/
#menubar li, #menubar ul.ddmenu{
	width: 162px;
}

}



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

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents{
	margin: 0 ;	/*上下、左右へのコンテンツの外側へ空けるスペース*/
}

/*TOP9コマのため追加
----------------------------------*/
img.topmain{
	float: left;
	width:31.3%;
} 


}



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

/*ログイン（ヘッダー右側のログイン）
---------------------------------------------------------------------------*/
header .login a{
	float: left;			
	margin-left: 20px;		
	background-image: none;	
	padding: 5px 30px;		
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
body.is-fixed-menu header,body.is-fixed header{
	margin-bottom: 0px;
}

/*メインメニュー
---------------------------------------------------------------------------*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s{
	display: block;
	overflow: hidden;
	z-index: 10;
	position: absolute;
	top: 99px;	
	width: 100%;
	animation-name: menu1;		
	animation-duration: 0.5S;	
	animation-fill-mode: both;	
	left: -1px;
}
/*メニュー１個あたりの設定*/
#menubar-s li a{
	display: block;text-decoration: none;
	padding: 7px 10px 7px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #8fb85f;	
	font-size: 20px;	
	color: #fff;		
}
/*英語表記（飾り文字）*/
#menubar-s li a span{
	display: block;
	font-size: 12px;	
}
/*PC用メニューを非表示にする*/
#menubar{
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr{
	display: block;position: absolute;
	top: 14px;	
	right: 3%;	
	border: 1px solid #fff;	
}
/*アイコン共通設定*/
.close#menubar_hdr,
.open#menubar_hdr{
	width: 40px;		/*幅*/
	height: 40px;		/*高さ*/
	border-radius: 10%;	
}
/*三本バーアイコン*/
.close#menubar_hdr{
	background : url(../icon_menu.png) center top / 40px auto no-repeat scroll padding-box border-box #8fb85f;
}
/*閉じるアイコン*/
.open#menubar_hdr{
	background : url(../icon_menu.png) center bottom / 40px auto no-repeat scroll padding-box border-box #8fb85f;	
}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents{
	padding: 0px 2% 20px;	/*上下、左右へのボックス内の余白*/
}

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

/*TOP9コマのため追加
----------------------------------*/
img.topmain{
	float: left;
	width:45.5%;
} 



/*ここから提言フォーム------------------------*/
.form-table th,
.form-table td{
  display: block;
}

/*ここまで提言フォーム------------------------*/



/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side{
	display: none;
}
.sp{
	display:block;
}
/*.sh {display:block;}*/
.pc{
	display:none;
}

}



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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header{
	text-align: center;
	height: 65px;		
}
/*ロゴ画像*/
header #logo{
	float: left;		
	margin-left: 3%;	
	margin-top: 15px;	
	padding: 8px 0;
	width: 70%;
}

/*ログイン（ヘッダー右側のログイン）
---------------------------------------------------------------------------*/
header .login a{
	float: none;
	margin: 0;
}

/*その他
---------------------------------------------------------------------------*/
.panorama-img{
	width: 450px !important;height: 300px !important;
}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body{
	font-size: 14px;	/*文字サイズ*/
}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents{
	line-height: 1.8;	/*行間*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2, #main h3{
	font-size: 16px;
	font-weight: bold;/*追加*/
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 10px;
}
/*段落タグ設定*/
#main p{
	padding: 0px 10px 10px;
}

/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub .submenu li a,
#side .submenu li a{
	padding: 10px;	/*ボックス内の余白*/
}


/*listブロック（他よりインポートしてカスタマイズ）
---------------------------------------------------------------------------*/


/*ブロック１個あたりの設定*/
.list01{
	width: 44%;
	float: left;
	margin: 0 1% 20px 0;	
	padding: 2%;	
}
.list01 figure{
	float: left;
	width: 100%;
	margin-bottom: 2%;
}
/*h4（見出し）とp(段落)タグの設定*/
.list01 h4{
	font-size: 15px;
	height: 20px;
	overflow: visible;
	margin-top: 0;
	margin-bottom: 10px;
	clear:both;
}
.list01 p{
	height: 50px;
	overflow: visible;
}




/*ブロック１個あたりの設定*/
.list02,
.list03{
	width: 95%;
	float: left;
	margin: 0 1% 20px 0;	
	padding: 2%;	
}
.list02 figure,
.list03 figure{
	float: left;
	width: 100%;
	margin-bottom: 2%;
}
/*h4（見出し）とp(段落)タグの設定*/
.list02 h4,
.list03 h4{
	font-size: 15px;
	height: 20px;
	overflow: visible;
	margin-top: 0;
	margin-bottom: 10px;
	clear:both;
}
.list02 p,
.list03 p{
	overflow: visible;
}




/*フッターメニュー
ウィンドウ幅が狭くなって見づらくなるので、１列にレイアウト変更。
---------------------------------------------------------------------------*/
#footermenu ul{
	float: none;
	width: auto;
}

/*こだわりアイコン
---------------------------------------------------------------------------*/
/*アイコン共通*/
.icon{
	font-size: 9px;		
}

/*一覧ページのボックス内の右上のマーク
---------------------------------------------------------------------------*/
/*option1〜option2、と、newアイコン共通*/
.option1,.option2,.new{
	font-size: 9px;		
	padding: 0 10px;	
	line-height: 14px;	
	right: 15px;		
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 10px;	/*ブロックの下(外側)に空ける余白*/
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*質問と答えのボックス全体を囲むブロック*/
.faq{
	padding: 0 10px 10px;	
}

/*btn（赤い色の大きなボタン）
---------------------------------------------------------------------------*/
a.btn{
	font-size: 16px;		
	letter-spacing: normal;	
}

/*テーブル(ta1)
---------------------------------------------------------------------------*/
/*余白の上書き*/
.ta1 caption,.ta1 th,.ta1 td{
	padding: 5px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 100px;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc{
	list-style: disc;
	padding: 0 20px 20px 30px;
}
ol{
	padding: 0 20px 20px 30px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl{
	width: 94%;
}
.big1{
	font-size: 18px;letter-spacing: normal;
}
img.fr,img.fl{
	float: none;margin: 0;width: 100%;
}

}

/*ページ内リンクの位置調整
---------------------------------------------------------------------------*/
a.anchor{
    display: block;
    padding-top: 90px;
    margin-top: -90px;
}
