@charset "utf-8";
/* CSS Document */

/*▼ヘッダの設定====================================================*/
/*
------------------------------------
★header area(header_2020.js に使用)
------------------------------------
*/
.headA {
	width: 100%;
}
.headA h1 {
	width: 200px;
	float: left;
}
.search {
	width: 445px;
	float: right;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.search li {
	display: inline-block;
	font-size: 28px;
	padding-right: 15px;
}
.search li a {
	color: #333;
	transition: all 300ms 0s ease;
}
.search li a:hover {
	opacity: 0.7;
}
.srch-b {
	background: #fff;
	border: solid 1px #333;
	color: #333;
	padding: 8px;
	border-radius: 5px;
	width: 200px;
	margin-right: 5px;
}
.s-btn {
	padding: 8px 12px;
	background: #009245;
	border-radius: 3px;
	border: none;
	color: #fff;
	cursor: pointer;
	transition: all 300ms 0s ease;
}
.s-btn:hover {
	opacity: 0.7;
}
.submenu {
	float: left;
	width: 100%;
	box-sizing: border-box;
	font-family: 'Noto Sans JP', sans-serif;
}
.submenu ul {
	float: right;
}
.submenu li {
	display: inline-block;
	padding: 0 10px;
	border-right: solid 1px #333;
	font-size: 12px;
}
.submenu li:last-child {
	border-right: none;
}
.submenu li a {
	color: #333;
	text-decoration: none;
	transition: all 300ms 0s ease;
}
.submenu li a:hover {
	opacity: 0.7;
}
li.large {
	font-size: 20px;
	font-weight: bold;
}
.mainmenu1 {
	float: left;
	width: 100%;
	/*margin-top: 20px;*/
	margin-top: 8px;
	font-family: 'Noto Sans JP', sans-serif;
}
.mainmenu1 ul {
	float: left;
	width: inherit;
	padding-left: 0;
}
.mainmenu1 li {
	width: calc(100% / 4);
	float: left;
	box-sizing: border-box;
	text-align: center;
	font-size: 16px;
	border-right: solid 1px #fff;
	background: #009245;
	transition: all 300ms 0s ease;
	list-style: none;
}
.mainmenu1 li:last-child{
	border-right: none;
}
.mainmenu1 li:hover {
	opacity: 0.7;
}
.mainmenu1 a {
	text-decoration: none;
	color: #fff;
	display: block;
	padding: 10px 0;
}
.mainmenu1 a:hover {
	color: #fff;
}
.mainmenu2 {
	float: left;
	width: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	/*margin-bottom: 20px;*/
	margin-bottom: 0;
}
.mainmenu2 ul {
	float: left;
	width: inherit;
	padding: 10px 0;
}
.mainmenu2 li {
	width: calc(100% / 5);
	float: left;
	box-sizing: border-box;
	text-align: center;
	border-right: solid 1px #333;
	font-size: 14px;
	list-style: none;
}
.mainmenu2 li:last-child {
	border-right: none;
}
.mainmenu2 a {
	color: #333;
	text-decoration: none;
	position: relative;
}
.mainmenu2 a:hover {
	color: #333;
}
.mainmenu2 a::after {
	position: absolute;
	display: block;
	content: "";
	width: 0;
	height: 1px;
	background: #333;
	bottom: 0;
	left: 0;
	transition: all 300ms 0s ease;
}
.mainmenu2 a:hover::after {
	width: 100%;
}

/*▼フッタの設定====================================================*/
/*
------------------------------------
★footer area(footer_2020.js に使用)
------------------------------------
*/
.footer {
	float: left;
	width: 100%;
	/*margin-top: 30px;*/
	font-family: 'Noto Sans JP', sans-serif;
}
.footer ul {
	display: flex;
	justify-content: space-around;
	padding: 10px 0;
	background: #009245;
}
.footer li {
	font-size: 13px;
	list-style: none;
}
.footer li a {
	color: #fff;
	text-decoration: none;
	transition: all 300ms 0s ease;
}
.footer li a:hover {
	opacity: 0.7;
}
.footer p {
	text-align: center;
	margin: 10px 0;
	font-size: 13px;
	color: #A3A3A3;
}
/*
------------------------------------
★Go to page top
------------------------------------
*/
main {
  position: relative;
}
.pagetop {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 10px;
	border-radius: 50% 50%;
  height: 75px;
  width: 75px;
  background-color: #009245;
}
.pagetop::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 28%;
  width: 25px;
  height: 25px;
  border: solid 4px;
	border-color: #fff #fff transparent transparent;
	transform: rotate(-45deg);
}
.pagetop:hover {
  opacity: .8;
}
