@charset "utf-8";


/*slide.cssの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@import url(slide.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: 18px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fcf6d4;	/*背景色*/
	-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;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #f7960c;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*container（footer以外を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1500px;	/*サイトの最大幅*/
	margin: 0 auto;
	position: relative;
	padding: 0 10%;		/*上下、左右へのボックス内の余白*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅*/
}
/*ロゴ画像ブロック*/
header #logo {
	margin-bottom: 50px;	/*画像ブロックの下に空けるスペース*/
	background: rgba(9,104,88,1.00);	/*背景色*/
	border-radius: 0px 0px 10px 10px;	/*角丸のサイズ。左上、右上、右下、左下の順番の指定。*/
}

/*メニューブロック
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
.submenu {
	overflow: hidden;
	border-radius: 10px;	/*角丸のサイズ*/
	margin-bottom: 20px;	/*ブロックの下に空けるスペース*/
    
}
/*メニュー１個あたりの設定*/
.submenu li {
	text-align: center;			/*文字をセンタリング*/
	border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
	font-size: 18px;			/*文字サイズ*/
    background-image: url("../images/menu_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
}
.submenu li a {
	display: block;text-decoration: none;
	padding: 15px 3px;	/*上下、左右へのメニュー内の余白*/
	background: rgba(255,178,0,1.00);	/*背景色*/
    background-image: url("../images/menu_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    color: #fff;
}
/*マウスオン時*/
.submenu li a:hover {
	background: #E98B07;	/*背景色*/
    background-image: url("../images/menu_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
}
/*１つ目のメニューへの追加指定*/
.submenu li:first-child {
	border: none;	/*上の線を消す*/
}




/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*contents
---------------------------------------------------------------------------*/
#contents {
	clear: both;
    overflow: hidden;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainブロック全体の設定*/
#main {
	float: right;	/*右に回り込み*/
	width: 75%;		/*ブロックの幅*/
    margin-top: 30%;
}
#main2 {
	float: right;	/*右に回り込み*/
	width: 75%;		/*ブロックの幅*/
    margin-top: 23%;
}



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

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック全体の設定*/
#sub {
	float: left;		/*左に回り込み*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 1.5;
	width: 20%;			/*ブロックの幅*/
}
#sub h2 {
	font-size: 18px;	/*文字サイズ*/
}
#sub h2::first-letter {
	border-left: 3px solid #f7960c;
	padding-left: 10px;
}
#sub .box h2::first-letter {
	border-left: 3px solid #fff;
}



/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	padding-top: 40px;
	text-align:left;
	border-top: 3px solid #006858;
    margin-top: 20px;
    background-color: #faf9f1;
}
footer .footer_inner{
    width: 100%;
    margin: 0 auto;
    max-width: 1500px;
    overflow: hidden;
}
footer .foott_logo{
    float: left;
    width: 30%;
    font-size: 15px;
    line-height: 1.8em;
    color: rgba(6,106,57,1.00);
    margin-left: 30px;
}
footer .foott_logo img{
    width: 100%;
}
/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/

.footermenu {
    width: 200px;
    margin-right: 5%;
    float:right;
	overflow: hidden;
	border-radius: 10px;	/*角丸のサイズ*/
    border: 2px solid rgba(9,104,88,1.00);
}
/*メニュー１個あたりの設定*/
.footermenu ul li {
	text-align: center;			/*文字をセンタリング*/
	border-top: 1px solid rgba(9,104,88,1.00);	/*上の線の幅、線種、色*/
	font-size: 14px;			/*文字サイズ*/
    line-height: 1em
}
.footermenu ul li a {
	display: block;
    text-decoration: none;
	padding: 15px 3px;	/*上下、左右へのメニュー内の余白*/
	background: #fff;	/*背景色*/
    color: rgba(9,104,88,1.00);
}
/*マウスオン時*/
.footermenu ul li a:hover {
	background:  rgba(9,104,88,1.00);	/*背景色*/
    color: #FFFFFF;
}
/*１つ目のメニューへの追加指定*/
.footermenu ul li:first-child {
	border: none;	/*上の線を消す*/
}


/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
    text-align: center;
    clear: both;
    margin: 0 20px 0 0;
	color: #444;		/*文字色*/
    font-size: 85%;
}
#copyright a {
	text-decoration: none;
	color: #444;		/*文字色*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new{
    width: 80%;
    padding: 60px 9% 40px 10%;
    background-color: #fff;
    border-radius: 15px;
    margin: 40px auto;
    position: relative;
    font-size: 15px;
    z-index: 1;
    -webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
#new .news_ttl{
    position: absolute;
    width: 40%;
    top:-50px;
    left: 8%;
}
#new .news_ttl img{
    width: 100%;
}
#new dl {
    clear: both;
	padding: 10px 0;		/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
    border-bottom: 1px solid rgba(5,124,65,1.00);	/*下線の幅、線種、色*/
    overflow: hidden;
}
/*日付設定*/
#new dt {
	float: left;
	width: 8em;
	letter-spacing: 0.1em;
}
#new .cat1 {
	float: left;
	width: 6em;
	padding:3px 10px 3px 10px;
	background-color:#2EA424;
	color:#fff;
	text-align:center;
	margin-right:12px;
	font-size:14px;
	line-height:1.6em;
    border-radius: 8px;
    margin-bottom: 5px;

}
#new .cat2 {
    float: left;
	width: 6em;
	padding:3px 10px 3px 10px;
	background-color:#EC5294;
	color:#fff;
	text-align:center;
	margin-right:12px;
	font-size:14px;
	line-height:1.6em;
    border-radius: 8px;
        margin-bottom: 5px;

}#new .cat3 {
    float: left;
	width: 6em;
	padding:3px 10px 3px 10px;
	background-color:#0E94D2;
	color:#fff;
	text-align:center;
	margin-right:12px;
	font-size:14px;
	line-height:1.6em;
    border-radius: 8px;
        margin-bottom: 5px;

}

/*記事設定*/
#new dd {
    float: left;
    padding:3px 10px 3px 10px;
    margin: 0 auto;
    width: auto;
}
#new dd a{
    color: #424242;
    border-bottom: 1px solid #ccc;
}
#new dd a:hover{
    color: #2253B2;
    border-bottom: 1px solid #2253B2;
}
/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	color: #F00;		/*文字色*/
	font-size: 85%;
    font-weight: 700;

}

/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list {
	overflow: hidden;
	width: 30.3%;	/*幅*/
	float: left;	/*左に回り込み*/
	margin: 0 1% 20px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
}
.list img {
    width: 100%;
}
.list a{
	opacity: 1.0;
}
.list a:hover {
	opacity: 0.7;
}
/*list2ブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list2 {
	overflow: hidden;
	width: 97%;	/*幅*/
	margin: 10px 1% 30px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
}
.list2 img {
    width: 100%;
}
.list2 a{
	opacity: 1.0;
}
.list2 a:hover {
	opacity: 0.7;
}


/*サムネイル画像の設定
---------------------------------------------------------------------------*/
.thumbnail {
	width: 70px;	/*サムネイル画像の幅*/
	margin: 5px;	/*画像同士に空けるスペース*/
	opacity: 0.7;	/*透明度。色が70%出た状態。*/
}
/*マウスオン時*/
.thumbnail:hover {
	opacity: 1;	/*透明度。色が100%出た状態。*/
}


/*ページ内メニュー
---------------------------------------------------------------------------*/
/*ブロック全体*/
.menu {
	overflow: hidden;
	margin-bottom: 20px;	/*下に空けるスペース*/
	text-align: center;		/*内容をセンタリング*/
}
/*メニュー１個あたりの指定*/
.menu li {
	display: inline;	/*横並びになる指定*/
	border-right: 1px solid #999;	/*右側の線の幅、線種、色*/
}
.menu li a {
	padding: 10px;	/*メニュー内余白*/
}
/*最初のメニューへの追加指定*/
.menu li:first-child {
	border-left: 1px solid #999;	/*左側の線の幅、線種、色*/
}

  /*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
#goto_top {
    position: fixed;
    right: 3%;
    bottom: 210px;
    z-index: 6000;
}

#goto_top a {
    width: 80px;
    height: 73px;
    border-radius: 8px;
    background: rgba(255,255,255,0.70);
    display: block;
    background-image:url("../images/pagetop.png");
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid rgba(193,23,32,0.70)
}
#goto_top a:hover{
    background: rgba(255,255,255,1.00);
    background-image: url("../images/pagetop.gif");
    background-repeat: no-repeat;
    background-position: center;

}
/*各ページのボックス*/
.page_box{
    width: 88%;
    padding: 40px 5% 40px 5%;
    background-color: #fff;
    border-radius: 15px;
    margin: 40px 1%;
    position: relative;
    font-size: 15px;
    -webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    z-index: 1;
    overflow: hidden;
}
.page_box_ttl{
    position: relative;
    width: 50%;
    margin: 0 50% 30px 0;
}
.page_box_ttl img{
    width: 100%;
    
}

     
/*pdfアイコン
---------------------------------------------------------------------------*/
a[href$=".pdf"]{
	display: inline-block;
	background: url(../images/PDF_32.png) no-repeat right center;
	padding: 5px 40px 5px 0px;
}



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

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

/*その他
---------------------------------------------------------------------------*/
.look {background: #eee;border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb10 {margin-bottom: 10px;}
.mb30 {margin-bottom: 30px;}
.clear {clear: both;}
.color1, .color1 a {color: #f7960c;}
.bgcolor1 {background: #f2f2f2 !important;}
.bgcolor2 {background: #dbebf7 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.w40p {width: 40%;}
.w20p {width: 20%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fr {float: right;margin-left: 2%;margin-bottom: 20px;}
.fl {float: left;margin-right: 2%;margin-bottom: 20px;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
#sub .big1 {font-size: 20px;letter-spacing: normal;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.dn {display: none;}






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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: absolute;
	left: 3%;	/*画面の左からの配置場所指定*/
	top: 0px;	/*画面の上からの配置場所指定*/
}
/*ロゴ画像ブロック*/
header #logo {
	width: 170px;	/*ロゴ画像の幅*/
}



/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;
    overflow: hidden;
	position: absolute;
	top: 0px;
	left: 0px;
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 100%;
	z-index: 10;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;
    text-decoration: none;
	padding: 15px 10px 15px 55px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: rgba(255,178,0,1.00);	/*背景色*/
    background-image: url("../images/menu_bg.png");
    background-repeat: no-repeat;
    background-size: 40%;
	font-size: 20px;
	color: #fff;	/*文字色*/
}

/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	z-index: 11;
	top: 10px;	/*上からの配置場所指定*/
	right: 3%;	/*右からの配置場所指定*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border-radius: 50%;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #f7960c url(../images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #f7960c url(../images/icon_menu.png) no-repeat center bottom/50px;
}
/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainブロック全体の設定*/
#main {
	float: none;	/*右に回り込み*/
	width: 100%;		/*ブロックの幅*/
    margin-top: 50%;
}
#main2 {
	float: none;	/*右に回り込み*/
	width: 100%;		/*ブロックの幅*/
    margin-top: 47%;
}

/*各ページのボックス*/
.page_box{
    width: 94%;
    padding: 40px 2% 40px 2%;
    background-color: #fff;
    border-radius: 15px;
    margin: 30px auto;
    position: relative;
    font-size: 15px;
    -webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    overflow: hidden;
}
.page_box_ttl{
    position: relative;
    width: 50%;
    margin: 0 50% 30px 0;
}

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



/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	width: 60px;	/*幅*/
}
	

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new{
    width: 80%;
    padding: 60px 9% 40px 10%;
    background-color: #fff;
    border-radius: 15px;
    margin: 50px auto;
    position: relative;
    font-size: 15px;
    z-index: 1;
    -webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
#new .news_ttl{
    position: absolute;
    width: 40%;
    top:-45px;
    left: 8%;
}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像ブロック*/
header #logo {
	width: 120px;	/*ロゴ画像の幅*/
}
    /*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;
    text-decoration: none;
	padding: 15px 10px 15px 50px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: rgba(255,178,0,1.00);	/*背景色*/
    background-image: url("../images/menu_bg.png");
    background-repeat: no-repeat;
    background-size: 70%;
	font-size: 18px;
	color: #fff;	/*文字色*/
}
/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainブロック全体の設定*/
#main {
	float: none;	/*右に回り込み*/
	width: 100%;		/*ブロックの幅*/
    margin-top: 110%;
}
#main2 {
	float: none;	/*右に回り込み*/
	width: 100%;		/*ブロックの幅*/
    margin-top: 100%;
}

/*各ページのボックス*/
.page_box{
    width: 95%;
    padding: 20px 2%;
    background-color: #fff;
    border-radius: 15px;
    margin: 20px 2% 20px 0;
    position: relative;
    font-size: 15px;
    -webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    overflow: hidden;
}
.page_box_ttl{
    position: relative;
    width: 75%;
    margin: 110px 23% 0 2%;
}
/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list {
	overflow: hidden;
	width: 90%;	/*幅*/
	float: none;	/*左に回り込み*/
	margin: 0 auto 20px auto;	/*上、右、下、左へのボックスの外側に空けるスペース*/
}

/*list2ブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list2 {
	overflow: hidden;
	width: 80%;	/*幅*/
	margin: 30px auto;	/*上、右、下、左へのボックスの外側に空けるスペース*/
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new{
    width: 89%;
    padding: 60px 5% 20px 5%;
    background-color: #fff;
    border-radius: 15px;
    margin: 45px auto;
    position: relative;
    font-size: 14px;
    z-index: 1;
    -webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
#new .news_ttl{
    position: absolute;
    width: 80%;
    top:-40px;
    left: 10%;
}
#new dl {
    clear: both;
	padding: 10px 0;		/*上下、左右へのブロック内の余白*/
	margin-bottom: 10px;	/*ブロックの下(外側)に空ける余白*/
    border-bottom: 1px solid rgba(5,124,65,1.00);	/*下線の幅、線種、色*/
    overflow: hidden;
}


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

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	padding-top: 40px;
	text-align:left;
	border-top: 3px solid #006858;
}
footer .footer_inner{
    width: 100%;
    margin: 0 auto;
    max-width: 1500px;
    overflow: hidden;
}
footer .foott_logo{
    float: none;
    width: 80%;
    font-size: 14px;
    line-height: 1.8em;
    color: rgba(6,106,57,1.00);
    margin-left: auto;
    margin-right: auto;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/

.footermenu {
    width: 60%;
    margin: 10px auto 30px auto;
    float: none;
	overflow: hidden;
	border-radius: 10px;	/*角丸のサイズ*/
    border: 2px solid rgba(9,104,88,1.00);
}
/*メニュー１個あたりの設定*/
.footermenu ul li {
	text-align: center;			/*文字をセンタリング*/
	border-top: 1px solid rgba(9,104,88,1.00);	/*上の線の幅、線種、色*/
	font-size: 14px;			/*文字サイズ*/
    line-height: 1em
}
.footermenu ul li a {
	display: block;
    text-decoration: none;
	padding: 15px 3px;	/*上下、左右へのメニュー内の余白*/
	background: #fff;	/*背景色*/
    color: rgba(9,104,88,1.00);
}
/*マウスオン時*/
.footermenu ul li a:hover {
	background:  rgba(9,104,88,1.00);	/*背景色*/
    color: #FFFFFF;
}
/*１つ目のメニューへの追加指定*/
.footermenu ul li:first-child {
	border: none;	/*上の線を消す*/
}


/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
    text-align: center;
    clear: both;
    margin: 10px auto;
	color: #444;		/*文字色*/
    font-size: 100%;
}


/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 18px;letter-spacing: normal;}
.sh {display:block;}
.pc {display:none;}

}
