@charset "UTF-8";

html,html * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto Sans JP", sans-serif;
}

body {
	background: #FFFFFF;
	color: #707070;
	font-size: 16px;
}
a {
	text-decoration: none;
}
ul,ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* ヘッダー */
header .bg-geen {
	background: #004c26;
	padding: 10px 20px;
}
header .bg-geen .container {
	display: flex;
	justify-content: space-between;
}
.globalMenu {
	display: none;
}
.globalMenu li {
	border-top: 1px solid #707070;
}
.globalMenu li:last-child {
	border-bottom: 1px solid #707070;
}
.globalMenu a {
	display: block;
	text-align: center;
	color: #707070;
	padding: 15px 0px;
}
.globalMenu a:hover {
	background-color: #CCCCCC;
}

.search_box {
	display: none;
}

/* トグルボタン */
#nav_toggle {
	display: block;
	position: relative;
	right: 10px;
	width: 42px;
	height: 40px;
	cursor: pointer;
	background-color: #5a8b6e;
	text-align: center
}
#nav_toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: 3px solid #FFFFFF;
	transition: 0.35s ease-in-out;
}
#nav_toggle span:nth-child(1) {
	top: 9px;
}
#nav_toggle span:nth-child(2) {
	top: 18px;
}
#nav_toggle span:nth-child(3) {
	top: 27px;
}
.open #nav_toggle span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}
.open #nav_toggle span:nth-child(2),
.open #nav_toggle span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

/* フッター */
footer .map {
	background: #eeeeee;
	padding: 60px 0px;
}

footer .map .container {
	max-width: 1200px;
	margin: 0 auto;
}

footer .map .box-left {
	margin-bottom: 40px;
	padding: 0 20px;
}

footer .map .box-right {
	padding: 0 20px;
}

footer .map .box-left h2 {
	margin-bottom: 20px;
}

footer .map .box-left h2 img {
	display: block;
	width: 170px;
	height: 38px;
}

footer .map .box-left p {
	margin-bottom: 20px;
}

footer .map .box-left .line {
	border: 2px solid #FFFFFF;
}

footer .map .box-left iframe {
	width: 100%;
	height: 280px;
}

footer .map .box-right ul {
	margin-bottom: 20px;
}

footer .map .box-right ul:last-child {
	margin-bottom: 0px;
}

footer .map .box-right ul li a {
	color: #707070;
	font-size: 14px;
	display: block;
	padding: 15px 10px;
	background: #FFFFFF;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
}

footer .map .box-right ul li:last-child a {
	border-bottom: 1px solid #CCC;
}

footer .map .box-right ul li a img.arrow {
	display: inline-block;
	width: 14px;
	height: 16px;
	vertical-align: middle;
}

footer .banner {
	padding: 60px 30px 40px;
}

footer .banner ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

footer .banner ul li {
	padding: 5px;
}

footer .copy {
	background: #004c26;
	padding: 20px 30px;
}

footer .copy p {
	color: #FFFFFF;
	font-size: 14px;
	text-align: right;
}

/* 検索結果・404 */
.search-page,.notfound-page {
	padding: 60px 30px;
}

.search-page p,.notfound-page p {
	margin-bottom: 1em;
}

/* 大きい画面用の設定 */
@media(min-width:768px) {
	.container {
	max-width: 1200px;
	margin: 0 auto;
	}
	/* ヘッダー */
	.globalMenu {
	display: block !important ;
	}
	.globalMenu ul {
	display: flex;
	padding: 10px 0px;
	}
	.globalMenu li {
	border-top: none;
	}
	.globalMenu li:last-child {
	border-bottom: none;
	}
	.globalMenu li a {
	padding: 10px 20px;
	font-size: 14px;
	}
	/* トグルボタン */
	#nav_toggle {
	display: none;
	}
	/* フッター */
	footer .map .box {
	display: flex;
	justify-content: space-between;
	width: 100%;
	}
	footer .map .box-left {
	flex: 0 0 50%;
	margin-bottom: 0px;
	}
	footer .map .box-right ul {
	margin-bottom: 0px;
	}
	footer .map .box-right ul li a,
	footer .map .box-right ul li:last-child a {
	border: none;
	background: #eeeeee;
	padding: 10px 5px;
	}
}

@media(min-width:1024px) {
	/* ヘッダー */
	.container {
	display: flex;
	justify-content: space-between
	}
	.container .search_box {
	display: block !important ;
	padding: 10px 0px;
	position: relative;
	}
	.container .search_box::before {
	content: "";
	width: 16px;
	height: 16px;
	background: url(../img/icon_search.png) no-repeat center center / auto 100%;
	display: inline-block;
	position: absolute;
	top: 15px;
	left: 3px;
	}
	.container .search_box input {
	padding: 0px 0px 0px 20px;
	line-height: 2.4em;
	border: 1px solid #707070;
	width: 100%;
	}
	/* フッター */
	footer .map .box-right {
	display: flex;
	justify-content: flex-end;
	}
	footer .map .box-right ul {
	padding-right: 60px;
	}
	footer .map .box-right ul:last-child {
	padding-right: 0px;
	}
}