@charset "utf-8";

/*----------------------------------------------------
 基本フレーム
----------------------------------------------------*/
body {
	min-width: 1120px;
}
.wrapper {
	width: 1120px;
	padding: 0 10px;
	margin: 0 auto;
	position: relative;
}
.contents {
	display: block;
	padding: 80px 0 0;
}
/* 見出し処理 */
h2.black {
	font-size: 33px;
	text-align: center;
	padding: 0 0 24px;
	line-height: 1;
	color: #666666;
}
h2.black::after {
	content: "";
	width: 40px;
	border-bottom: 2px solid #8fab1a;
	display: block;
	margin: 24px auto 0;
}
h2.green {
	font-size: 33px;
	text-align: center;
	padding: 0 0 24px;
	line-height: 1;
	color: #8fab1a;
}
h2.green::after {
	content: "";
	width: 40px;
	border-bottom: 2px solid #bbbbbb;
	display: block;
	margin: 24px auto 0;
}
h3.sBlack {
	font-size: 28px;
	text-align: center;
	padding: 0 0 22px;
	line-height: 1;
	color: #666666;
}
h3.sBlack::after {
	content: "";
	width: 40px;
	border-bottom: 2px solid #8fab1a;
	display: block;
	margin: 22px auto 0;
}

/* 基本カラム */
.column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* 字下げ文章 */
.sentence {
	line-height: 33px;
	text-indent: 1em;
	text-align: justify;
}

/* 注意書き */
.caution {
	text-indent: -1em;
	padding-left: 1em;
	color: #666666;
}

/* 背景ドロップシャドウ */
.bg_blur {
	box-shadow: 0 0 30px rgba(0,0,0,0.2);
}

/* 背景色 */
.base_green {
	background-color: #f0f2df;
	padding: 24px 28px;
}
.base_gray {
	background-color: #eeeeee;
	padding: 24px 28px;
}

@media screen and (max-width: 767px) {
	body {
		min-width: auto;
		overflow: hidden;
	}
	.contents {
		padding: 40px 0 0;
	}
	.wrapper {
		width: 100%;
		padding: 0 15px;
	}
	h2.black,
	h2.green {
		font-size: 28px;
	}
	h3.sBlack {
		font-size: 22px;
	}
	.column {
		display: block;
		margin: 0 auto;
	}
	.sentence {
		font-size: 15px;
		line-height: 30px;
	}
	.base_green,
	.base_gray {
		padding: 15px 15px;
	}

}

/* ヘッダー */
header {
	width: 100%;
}
header .wrapper {
	display: flex;
	align-items: center;
	height: 105px;
}
header .logo {
	width: 310px;
}
#pc_navi {
	margin-left: auto;
	text-align: right;
}
#pc_navi .header_tel {
	color: #8fab1a;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin: 0 0 10px;
}
#pc_navi .header_tel .tel {
	font-size: 20px;
}
#pc_navi ul {
	font-size: 0;
}
#pc_navi li {
	display: inline-block;
	font-size: 16px;
	line-height: 1;
}
#pc_navi li:not(:last-child)::after {
	content: "／";
	margin: 0 16px;
	color: #858585;
}
#pc_navi li a {
	color: #333333;
}
#spNaviIcon,
#sp_navi {
	display: none;
}

@media screen and (max-width: 767px) {
	header .wrapper {
		height: 84px;
		position: relative;
	}
	header .logo {
		width: 260px;
	}
	#pc_navi {
		display: none;
	}
	#spNaviIcon {
		cursor: pointer;
		display: block;
		width: 44px;
		height: 44px;
		background-color: #ffffff;
		z-index: 501;
		position: fixed;
		top: 20px;
		right: 15px;
		box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
	}
	#spNaviIcon div {
		position: relative;
		width: 30px;
		margin: 10px auto 0;
	}
	#spNaviIcon span {
		display: block;
		position: absolute;
		left: 0;
		height: 3px;
		width: 100%;
		background: #8fab1a;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	#spNaviIcon span:nth-child(1) { top: 0; }
	#spNaviIcon span:nth-child(2) { top: 10px; }
	#spNaviIcon span:nth-child(3) { top: 20px; }

	/* #spNaviIcon 切替アニメーション */
	.open #spNaviIcon {
		position: fixed;
	}
	.open #spNaviIcon span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.open #spNaviIcon span:nth-child(2),
	.open #spNaviIcon span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	/* ナビゲーションメニュー */
	#sp_navi {
		display: block;
		position: absolute;
		top: 0;
		right: -600px;
		height: 100%;
		background-color: #8fab1a;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		z-index: 500;
	}
	.open #sp_navi {
		-webkit-transform: translateX(-600px);
		-moz-transform: translateX(-600px);
		transform: translateX(-600px);
		position: fixed;
	}
	#sp_navi ul {
		padding: 84px 0 0;
	}
	#sp_navi ul > li {
		padding: 0;
		display: block;
		border-bottom: 1px solid #bfcf79;
	}
	#sp_navi ul > li:first-child {
		border-top: 1px solid #bfcf79;
	}
	#sp_navi ul > li > a {
		display: block;
		padding: 20px 80px 20px 14px;
		color: #ffffff;
		text-align: left;
		font-size: 16px;
		line-height: 1;
	}
	#overlay {
		position: fixed;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.6);
		z-index: 499;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}
	.cover {
		opacity: 0;
		height: 0 !important;
	}
}
@media screen and (max-width: 340px) {
	header .logo {
		width: 240px;
	}
}

/* ページTOP */
#pageTop {
	position: fixed;
	bottom: 0;
	right: 60px;
	text-align: center;
}
#pageTop a {
	font-size: 14px;
	position: relative;
	padding: 20px 0 6px;
	display: inline-block;
}
#pageTop a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 120px;
	border: 1px solid #8fab1a;
	background-color: rgba(255,255,255,0.4);
	border-radius: 100%;
	z-index: -1;
}
#pageTop a br {
	display: inline-block;
}
@media screen and (max-width: 767px) {
	#pageTop {
		right: 24px;
	}
	#pageTop a {
		padding: 20px 0 2px;
	}
	#pageTop a::after {
		width: 80px;
		height: 80px;
		top: 10px;

	}
}

/* フッター */
#footer {
	padding: 70px 0 20px;
}
#footer .wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}
#footer .logo {
	width: 284px;
}
#footer .footer_address {
	font-size: 14px;
	padding: 6px 0 10px 60px;
}
#footer .footer_tel {
	color: #8fab1a;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding-left: 60px;
	line-height: 1;
}
#footer .footer_tel .tel {
	font-size: 20px;
}
#footer .footerNavi {
	text-align: right;
}
#footer .footerNavi li {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0;
}
#footer .footerNavi li:not(:last-child)::after {
	content: "／";
	margin: 0 12px;
	color: #a3a3a3;
}
#footer .footerNavi li a {
	color: #333333;
}
#footer .footerNavi small {
	font-size: 12px;
	color: #808080;
	padding: 18px 0 5px;
	display: block;
}
@media screen and (max-width: 767px) {
	#footer {
		padding: 50px 0 30px;
	}
	#footer .wrapper {
		display: block;
	}
	#footer .logo_address {
		text-align: center;
		border-bottom: 1px solid #e6e6e6;
		padding: 0 0 20px;
		margin: 0 auto 30px;
		max-width: 420px;
	}
	#footer .logo {
		width: 240px;
		padding: 0 0 8px;
	}
	#footer .footer_address {
		padding: 6px 0 10px 0;
		font-size: 13px;
		line-height: 18px;
	}
	#footer .footer_tel {
		font-size: 24px;
		padding-left: 0;
	}
	#footer .footer_tel .tel {
		font-size: 18px;
	}
	#footer .footerNavi {
		text-align: center;
	}
	#footer .footerNavi li {
		display: block;
	}
	#footer .footerNavi li:not(:last-child)::after {
		content: "";
		display: block;
		border-top: 1px solid #cccccc;
		width: 10px;
		margin: 14px auto;
	}
	#footer .footerNavi small {
		padding: 40px 0 5px;
		line-height: 16px;
	}
}

/* コンテンツタイトル */
.title_visual {
	position: relative;
}
.title_visual img {
	object-fit: cover;
	height: 240px;
	width: 100%;
	position: absolute;
	z-index: -1;
}
.title_visual .wrapper {
	display: flex;
	align-items: center;
	height: 240px;
}
.title_visual h2 {
	font-size: 33px;
	color: #ffffff;
	text-shadow: 0 0 8px rgba(0,0,0,0.8);
	width: 360px;
	text-align: center;
	padding: 20px 0;
	margin: 0 auto;
	background-color: rgba(145,173,26,0.7);
}
@media screen and (max-width: 767px) {
	.title_visual h2 {
		font-size: 28px;
		width: 300px;
	}
}
