/* CSS Document */
/* ++++++++++++++++++++ ナビエリア ++++++++++++++++++++ */
.nav-area {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin0: 0px;
	padding: 0px;
	background-color: white;
	height: 60px;
}
/* ++++++++++++++++++++ サイトロゴ ++++++++++++++++++++ */
@media screen and (max-width: 440px) {
	.navbar-logo img {
		max-width: 240px;
		margin-left: 4px;
	}
}
@media screen and (min-width: 441px) {
	.navbar-logo img {
		max-width: 330px;
		margin-left: 12px;
	}
}
/* ++++++++++++++++++++ メニューエリア ++++++++++++++++++++ */
.menu-area {
	position: relative;
	align-items: center;
	justify-content: space-between;
	width: auto;
	margin: 0px;
	padding: 0px;
	background-color: white;
	overflow: hidden;
}
@media screen and (max-width: 1081px) {
	.menu-area {
		display: none;
	}
	.menu-label {
		font-family: "M PLUS 1p";
		font-weight: 500;
		font-size: 22px;
		padding-right: 81px;
		text-align: right;
		color: rgba(48, 180, 160, 1.00);
	}
}
@media screen and (max-width: 582px) {
	.menu-label {
		display: none;
	}
}
@media screen and (min-width: 1082px) {
	.menu-label {
		display: none;
	}
}
/* ++++++++++++++++++++ メニュー ++++++++++++++++++++ */
header {}
.menu {
	display: flex;
	margin: auto 0;
	padding-left: 0px;
}
.menu li {
	list-style: none;
	margin-left: 0px;
	margin-right: 0px;
	font-family: "M PLUS 1p";
	font-size: 17px;
	font-weight: 400;
	color: rgba(45, 44, 44, 0.8);
	text-decoration: none;
	padding: 0px 12px;
	white-space: nowrap;
}
/* ++++++++++++++++++++ メニューリンクカラー ++++++++++++++++++++ */
.menu li a:link {
	color: rgba(45, 44, 44, 0.80);
	text-decoration: none;
}
.menu li a:hover {
	color: rgba(45, 44, 44, 1.00);
}
.menu li a:visited {
	color: rgba(45, 44, 44, 0.80);
}
/* カレントメニュー表示 */
.current-menu {
	border-bottom: 4px solid rgba(45, 118, 255, 1.00);
}
/* hoverメニュー表示 */
.menu-hover:hover {
	border-bottom: 4px solid #FDA513;
}
.menu li {
	border-left: 1px solid rgba(48, 180, 160, 1.00); /* 区切り線 */
}
.menu li:first-child {
	border: none; /* 親要素から見て一番目のli要素のボーダーを無しに */
}
/* ++++++++++++++++++++ ハンバーガーメニュー ++++++++++++++++++++ */
@media screen and (max-width: 1082px) { /* もとは768px 992px */
	.menu {
		display: block;
	}
	header nav {
		position: fixed;
		width: 180px;
		top: 0px;
		right: -180px;
		background-color: #FFF;
		height: 100%;
		margin-top: 60px;
		height: auto;
		border-radius: 3px;
		transition: all .1s;
	}
	header nav ul li a {
		color: rgba(45, 44, 44, 1.00);
		padding-top: 15px;
		padding-left: 30px;
	}
	.menu li {
		font-family: "M PLUS 1p";
		font-size: 18px;
		line-height: 46px;
		color: rgba(45, 44, 44, 0.8);
		border-top: 1px solid rgba(48, 180, 160, 0.4);
	}
	/* カレントメニュー表示 */
	.current-menu {
		background-color: rgba(72, 206, 186, 1.00);
		border-bottom: none;
	}
	.current-menu span {
		color: #FFF;
	}
	/* hoverメニュー表示 */
	.menu-hover:hover {
		background-color: rgba(236, 249, 247, 1.00);
		border-bottom: none;
	}
	header .btn-gnavi {
		position: fixed;
		top: 8px;
		right: 16px;
		cursor: pointer;
		width: 45px;
		height: 45px;
		background: rgba(48, 180, 160, 1.00);
		border-radius: 50%;
		z-index: 3;
		transition: all 400ms;
		-webkit-transition: all 400ms;
	}
	header .btn-gnavi span {
		position: absolute;
		margin-top: 11px;
		right: 9px;
		width: 26px;
		height: 4px;
		background: #FFF;
		border-radius: 10px;
		-webkit-transition: all 400ms;
		transition: all 400ms
	}
	header .btn-gnavi span:nth-child(1) {
		top: 0px;
	}
	header .btn-gnavi span:nth-child(2) {
		top: 9px;
	}
	header .btn-gnavi span:nth-child(3) {
		top: 18px;
	}
	header .btn-gnavi.hb-open {
		transform: rotate(180deg);
		-webkit-transform: rotate(180deg);
	}
	header .btn-gnavi.hb-open span {
		background: #fff;
	}
	header .btn-gnavi.hb-open span:nth-child(1) {
		width: 24px;
		transform: translate(-7px, 17px) rotate(45deg);
		-webkit-transform: translate(-7px, 17px) rotate(45deg);
	}
	header .btn-gnavi.hb-open span:nth-child(3) {
		width: 24px;
		transform: translate(-7px, -17px) rotate(-45deg);
		-webkit-transform: translate(-7px, -17px) rotate(-45deg);
	}
}
/* ++++++++++++++++++++ SNS hoverメニュー表示 ++++++++++++++++++++ */
.menu-hover-s {
	transition: all 1s linear 0s;
	border-radius: 50%;
	cursor: pointer;
}
.menu-hover-s:hover {
	transform: rotateY(360deg);
}
/* ++++++++++++++++++++ トップへ戻るボタン ++++++++++++++++++++ */
#page_top {
	position: fixed;
	bottom: 100px;
	right: 10px;
	width: 60px;
	height: 60px;
	opacity: 0.6;
}
#page_top a {
	width: 60px;
	height: 60px;
	text-decoration: none;
}
#page_top a::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f0aa';
	font-size: 60px;
	color: #ef3f40;
}
.page-top-box {
	text-align: right;
	padding-right: 5px;
	padding-bottom: 10px;
}