@charset "utf-8";

/*============================================
全体設定
============================================*/
body,html {
	position: relative;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

body {
	background-color:#91B122;		/*ページ全体の背景色*/
	font-size:100%;		/* フォントサイズを95%にする */
	font-family: 'Century Gothic', sans-serif;	/* フォントの種類をゴシック系にする */
	line-height:1.5;	/* 行の高さを1.5倍にする */
	color:#333333;		/* 文字色を濃い目のグレーにする */
}

div#wrapper {
	max-width:1000px;				/*1000px以上画面が広がらないようにする*/
	width:95%;			/*画面幅全体に表示*/
	margin:0 auto;
	padding:0;
}

div#pagebody {
	background-color:#ffffff;			/*内容全体の背景色*/
	margin:0 auto;
	width: 100%;
}

/*============================================
topmenu部分設定
============================================*/

.PC {display: block !important;
			padding-top:5px; }
.SP {display: none !important}

@media only screen and (max-width: 500px) {
	.PC {display: none !important}
	.SP {display: block !important;
				width:100%;}
}

/* デフォルト（PC 501px以上）*/
.img-index {
	display:block;
	float:left;
	width:100%;				/*画面に対する大きさに固定*/
	margin:0px auto;			/*内容全体をセンタリング*/
	padding-top:2%;
	padding-bottom:1%;
}

/*============================================
メニュー部分設定
============================================*/

div.menu {
	width:100%;		/*別cssの設定で割り切れる数にする*/
	display:block;
	color: green;	/*効いてない*/
	clear:both;
	margin:0 auto;			/*内容全体をセンタリング*/
}

/*============================================
PCメニュー部分設定
============================================*/

.PCmenu {
    display:inline-block;
    width: 86%;						/*なぜ96%でないとはみでるのか*/
    margin:0 1% auto;			/*内容全体をセンタリング*/
		padding-left: 12%;
		background-color: #009440;
}
.PCmenu > li {
    float:left;
    width: auto;
		margin:0 2% auto;
		line-height:400%;
}
.PCmenu > li a {
		display: block;
    text-decoration: none;
    color: #fff;
}
.PCmenu > li:hover {
    text-decoration: underline;	/*文字の下線ではなく同じ長さのバーを真ん中に出したい*/
}

/*============================================
SPメニュー部分設定
============================================*/
nav {
	display:block;
	position:absolute;
	left:-50%;
	top:38px;
	background-color: #E4F1B5;
	padding:1% 5% 0 2%;
}
#nav-input:checked ~ nav {
	position:absolute;
	left:6%;
	transition:all 0.5s;
}
.SPmenu-ul > li {
	padding-bottom:5%;
}
.SPmenu-ul > li a {
	color:black;
	text-decoration: none;
}
.nav-hidden {
	display:none;
}
#menubtn {
	position:relative;
	left:4%;
	top:10px;
	background-color: #009440;
	color: white;
	padding:1%;
	font-size:15px;
}
.SPmenu-ul {
	font-size: 16px;
}
/*区切り線*/
hr {
	display: block;
	width:100%;		/*幅の指定*/
	margin:0 auto;		/*マージン*/
	padding:0;
	border:3px solid #91B122;		/*内容の区切りをグレーの点線表示にする*/
}
/*============================================
メニュー以下の要素すべて
============================================*/

div#contents {
	width:98%;
	margin:1% auto;
	padding-top:2%;
}
div.link-title {
	width:96%;
	display:block;
	margin-top: 2%;
	background-color:#D7DBED;
}

div#main {
	width:69%;
	display:block;
	margin-top:1%;
	margin-right:3%;
	font-size: 14px;
}
@media (max-width: 500px) {
/* (スマホ 500px以下）*/
div#main {
	width:100%;
	float: none;
	margin-top: 2%;
	font-size:13px;
}}


iframe.map {
	display:block;
	width:60%;
	margin:2% auto;
}
@media (max-width: 500px) {
/* (スマホ 500px以下）*/
iframe.map {
	width:90%;
}}




/*============================================
フッタ
============================================*/
div#footer {
	clear:both;			/*回り込みを解除する*/
	padding:30px 0px 15px 0px;		/*パディング*/
	font-size:5px;
	text-align:center;		/*センタリング*/
}
div.pagetop {
	position:fixed;
	width:10%;
	text-align: right;
	right:5%;
	bottom:20px;
	margin-right: 2%;
	opacity: 0.7;
	z-index: 5;
}
.pagetop-bt {
	width:55%;
}
@media (max-width: 500px) {
/* (スマホ 500px以下）*/
.pagetop-bt {
	width:100%;
}}
div#ft_box:before {
	content:"";
	display:block;
	margin:0 auto;
	margin-bottom:3pt;
	width:85%;
	height:1px;
	background-color:#E8EBF0;
	position:relative;
	z-index: 1;
}
