@charset "UTF-8";

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, figure {
	margin: 0;
	padding: 0;
	list-style: none;
	word-break: break-all;
}

html {
	width: 100%;
	max-width: 100%;
	font-size: 62.5%;
	overflow-x: hidden;
}

body {
	font-size: 1.6rem;
}

main {
	overflow: hidden;
}

* {
	box-sizing: border-box;
}

img {
	vertical-align: bottom;
	width: 100%;
	height: auto;
	max-width: 100%;
}

a {
	text-decoration: none;
	color: #000;
}

figcaption {
	text-align: center;
}

/* ------------------------------
		common
------------------------------ */

:root {
	--bg: #F5F1E8;
	--d_gr: #10763C;
	--l_gr: #8CBB4A;
}

body {
	background: var(--bg);
	color: #000;
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: 18px;
	font-weight: bold;
}

.sp {
	display: block;
}

.pc {
	display: none;
}

.content_area {
	margin: 0 20px;
	max-width: 100%;
}

.content_area .ttl {
	font-feature-settings: "palt";
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.625;
	margin-bottom: 32px;
	text-align: center;
}

.content_area p,
.content_area dd {
	font-size: 18px;
	font-weight: bold;
	line-height: 2;
}

.color_txt {
	color: var(--d_gr);
}

.small_ttl {
	font-size: 18px;
	line-height: 1.72;
	text-align: center;
}

.btn_lead {
	font-size: 32px;
	line-height: 1.625;
	margin-bottom: 24px;
	text-align: center;
}


@media (min-width: 769px) {
	.sp {
		display: none;
	}

	.pc {
		display: block;
	}

	.content_area {
		max-width: 1180px;
		margin: 0 auto;
	}

	.btn_lead {
		margin-bottom: 46px;
	}
}

/* ------------------------------
		btn
------------------------------ */
.btn_nav {
	background: #fff;
	border: solid 2px var(--d_gr);
	border-radius: 405px;
	color: var(--d_gr);
	font-size: 24px;
	letter-spacing: 0.1em;
	line-height: 1;
	padding: 20px 70px;
	text-align: center;
}

.btn_g, .btn_w {
	background: var(--d_gr);
	border: solid 2px var(--d_gr);
	border-radius: 100px;
	color: #fff;
	display: block;
	font-size: 28px;
	letter-spacing: 0.1em;
	line-height: 1.5;
	padding: 24px 0;
	text-align: center;
}

.btn_g:hover, .btn_w {
	background: #fff;
	color: var(--d_gr);
}

.btn_nav, .btn_g, .btn_w {
	cursor: pointer;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.btn_nav:active, .btn_w:hover {
	background: var(--d_gr);
	color: #fff;
}

.btn_g:hover {
	background: #fff;
	color: var(--d_gr);
}

@media (min-width: 769px) {
	.btn_nav {
		background: var(--d_gr);
		color: #fff;
		padding: 20px 46px;
	}

	.btn_nav:hover {
	background: #fff;
	color: var(--d_gr);
	}

	.btn_g, .btn_w {
	font-size: 48px;
	letter-spacing: 0.1em;
	line-height: 0;
	padding: 76px 0;
	margin: 0 auto;
	max-width: 1000px;
}

	@media (max-width: 1180px) {
		.btn_nav {
				font-size: 18px;
				letter-spacing: 0;
				padding: 18px 28px;
			}
	}
}


/* ------------------------------
		page-top
------------------------------ */

.page-top {
	bottom: 8px;
	position: fixed;
	right: 8px;
	opacity: 0;
	transition: ease-in-out 0.5s;
}

.page-top.in {
	opacity: 1;
}

.page-top.in a:hover {
	opacity: 0.8;
}

.page-top a {
	background: var(--d_gr);
	border-radius: 50%;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	color: #fff;
	display: block;
	font-size: 10px;
	height: 56px;
	line-height: 1.3;
	padding-top: 20px;
	position: relative;
	text-align: center;
	width: 56px;
}

.page-top a::before {
	content: "\003009";
	display: block;
	font-size: 14px;
	font-weight: bold;
	left: 19px;
	height: 7px;
	position: absolute;
	top: 9px;
	transform: rotate(-90deg);
	width: 7px;
}

@media (min-width: 769px) {
.page-top {
		bottom: 32px;
		right: 40px;
	}

	.page-top a {
		font-size: 16px;
		height: 80px;
		line-height: 1.1;
		padding-top: 28px;
		width: 80px;
	}

	.page-top a::before {
		left: 33px;
		height: 7px;
		top: 14px;
		width: 7px;
	}
}

/* ------------------------------
		header
------------------------------ */
.header {
	width: 100%;
	position: absolute;
	z-index: 1;
}

.nav_pc {
	display: none;
}

.header .nav_sp {
	align-items: flex-start;
	background: var(--d_gr);
	display: flex;
	flex-flow: column nowrap;
	height: 100vh;
	position: fixed;
	right: -120%;
	transition: all 0.6s;
	width: 100%;
	z-index: 100;
}

.header .nav_sp.panelactive {
	right: 0;
}

.header .g-nav,
.header .sub-nav {
	align-items: flex-start;
	display: flex;
	flex-flow: column nowrap;
}

.header .g-nav li,
.header .sub-nav li {
	display: block;
}

.menu {
	cursor: pointer;
	height: 18px;
	position: fixed;
	right: 20px;
	top: 20px;
	width: 18px;
	z-index: 10;
}

.menu span {
	background: #000;
	border-radius: 2px;
	display: inline-block;
	height: 2px;
	left: 0;
	position: absolute;
	transition: all .4s;
	top: 0;
	width: 18px;
}

.menu span:nth-of-type(1) {
	top: 0px;
}

.menu span:nth-of-type(2) {
	top: 6px;
}

.menu span:nth-of-type(3) {
	top: 12px;
}

.menu.active span {
	background: #fff;
}

.menu.active span:nth-of-type(1) {
	transform: rotate(45deg);
	top: 9px;
}

.menu.active span:nth-of-type(2) {
	opacity: 0;
}

.menu.active span:nth-of-type(3) {
	transform: rotate(-45deg);
	top: 9px;
}

.header .nav_sp {
	width: 100%;
	padding: 115px 40px 0;
}

.header .nav_sp .g-nav {
	margin-bottom: 115px;
}

.header .nav_sp .g-nav li {
	padding-left: 22px;
	position: relative;
}

.header .nav_sp .g-nav li::before {
	background: var(--l_gr);
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 14px;
	left: 0px;
	position: absolute;
	top: 7px;
	width: 14px;
}

.header .nav_sp .g-nav li a {
	color: #fff;
	font-size: 18px;
}

.header .nav_sp .g-nav li {
	margin-bottom: 60px;
}

.header .nav_sp .g-nav li:last-child {
	margin-bottom: 0;
}

.nav_sp .sub-nav li {
	width: 100%;
}

.header .nav_sp .sub-nav .btn_nav {
	display: block;
	padding: 20px 0;
}

.header .nav_sp .sub-nav li {
	color: #fff;
	font-feature-settings: "palt";
	font-size: 14px;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
}

@media (min-width: 769px) {
	.header {
		background: var(--bg);
		position: fixed;
		z-index: 100;
	}

	.menu, .nav_sp {
		display: none;
	}

	.header .nav_pc {
		align-items: center;
		display: flex;
		flex-flow: row nowrap;
		justify-content: flex-end;
		padding: 22px 0 20px;
		position: relative;
		right: 0;
	}

	.header .g-nav,
	.header .sub-nav {
		align-items: center;
		flex-flow: row nowrap;
	}

	.header .sub-nav {
		margin: 0 24px;
	}

	.header .g-nav li {
		margin-left: 71px;
	}
	
	.header .g-nav li a {
		transition: all 0.6s;
	}
	
	.header .g-nav li:hover a {
		color: var(--d_gr);
		opacity: 0.8;
	}

	.header .g-nav li:first-child {
		margin-left: 0;
	}

	.header .sub-nav li {
		margin-left: 24px;
		text-align: center;
	}

	.header .sub-nav li img {
		max-width: 337px;
	}

	.header .sub-nav li p {
		font-size: 16px;
	}

	@media (max-width: 1180px) {
		.header .g-nav li {
			margin-left: 24px;
		}

		.header .g-nav li:first-child {
			margin-left: 0;
		}

		.header .sub-nav {
			margin: 0 18px;
		}

		.header .sub-nav li {
			margin-left: 16px;
		}

		.header .sub-nav li:last-child {
			width: 200px;
		}
	}
}


/* ------------------------------
		MV
------------------------------ */

.mv_area {
	height: auto;
	margin-bottom: 32px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.mv_area img {
	object-fit: cover;
	position: relative;
	z-index: -100;
}

.mv_area .txtover {
	left: 20px;
	position: absolute;
	top: 242px;
}

.mv_area .txtover h1 {
	font-size: 24px;
	letter-spacing: 0.1em;
	line-height: 1.7;
}

.mv_area .txtover .h1 {
	color: var(--d_gr);
	display: block;
	font-size: 64px;
	line-height: 1.15;
	margin-top: 16px;
}

.mv_area .txtover p {
	line-height: 2.1;
	margin-top: 8px
}

@media (min-width: 769px) {
	.mv_area {
		padding-top: 130px;
		margin-bottom: 87px;
	}

	.mv_area .txtover {
		left: 18.5%;
		top: 194px;
	}

	.mv_area .txtover .h1 {
		color: var(--d_gr);
		font-size: 72px;
	}

	.mv_area .txtover p {
		line-height: 2;
		margin-top: 20px;
	}

	@media (max-width: 1019px) {
		.mv_area .txtover {
			left: 12%;
		}
	}
}

/* ------------------------------
		feature
------------------------------ */

.feature {
	margin-bottom: 80px;
}

.feature .feature_ttl {
	background: var(--l_gr);
	border-radius: 20px;
	color: #fff;
	display: block;
	font-size: 32px;
	line-height: 2.69em;
	text-align: center;
}

.feature .feature_ttl:last-of-type {
	margin-top: 64px;
}

.feature .feature_box {
	display: flex;
	flex-flow: column nowrap;
}

.feature .feature_item {
	background: #fff;
	border-radius: 20px;
	margin-top: 24px;
	padding: 48px 24px;
}

.feature .feature_item dt {
	font-size: 20px;
	line-height: 1;
	text-align: center;
}

.feature .feature_item dd:has(img) {
	height: auto;
	margin: 20px auto 30px;
	max-width: 280px;
}

.feature .feature_txt {
	border: dotted 5pt var(--l_gr);
	border-radius: 20px;
	display: block;
	font-size: 24px;
	line-height: 1.83;
	margin-top: 67px;
	padding: 24px;
}

@media (min-width: 769px) {
	.feature {
		margin-bottom: 200px;
	}

	.feature .feature {
		border-radius: 30px;
	}

	.feature .feature_box {
		flex-flow: row nowrap;
		justify-content: space-between;
	}

	.feature .feature_item {
		border-radius: 30px;
		padding: 48px 24px;
	}

	.feature .feature_item dd {
		max-width: 330px;
	}

	.feature .feature_item dd:has(img) {
		margin: 16px auto 30px;
		max-width: 280px;
	}

	.feature .feature_txt {
		border-radius: 30px;
		font-size: 32px;
		letter-spacing: 0.04em;
		line-height: 1.93;
		margin-top: 64px;
		padding: 48px 0;
		text-align: center;
	}

	@media (max-width: 1199px) {
		.feature .feature_box {
			flex-flow: column nowrap;
		}

		.feature .feature_item dd {
			max-width: 700px;
			margin: 0 auto;
		}

		.feature .feature_txt {
			font-size: 24px;
		}
	}
}

/* ------------------------------
		facility
------------------------------ */

.facility {
	margin-bottom: 22px;
}

.facility .facility_ttl {
	margin-bottom: 32px;
	text-align: center;
}

.facility .facility_ttl .ttl {
	position: relative;
	display: inline-block;
	margin-bottom: 16px;
}

.facility figure {
	margin-top: 64px;
}

.facility figure:first-child {
	margin-top: 0;
}

.facility figcaption {
	margin-top: 16px;
}

.facility .facility_box {
	display: flex;
	flex-flow: column nowrap;
	margin-bottom: 80px;
}

.facility .facility_box:last-of-type {
	margin-bottom: 64px;
}


@media (min-width: 769px) {
	.facility {
		margin-bottom: 130px;
	}

	.facility .facility_ttl .ttl {
		margin-bottom: 32px;
	}

	.facility .facility_ttl .ttl::before {
		background-image: url(../img/deco01_l.png);
		background-size: contain;
		background-repeat: no-repeat;
		content: "";
		display: block;
		height: 110px;
		left: -160px;
		position: absolute;
		top: -10px;
		width: 120px;
	}

	.facility .facility_ttl .ttl::after {
		background-image: url(../img/deco01_r.png);
		background-size: contain;
		background-repeat: no-repeat;
		content: "";
		display: block;
		height: 110px;
		right: -160px;
		position: absolute;
		top: -10px;
		width: 120px;
	}

	.facility .facility_ttl p {
		font-size: 24px;
	}

	.facility figure {
		margin-top: 0;
	}

	.facility figure img {
		max-width: 378px;
	}

	.facility .facility_box {
		flex-flow: row nowrap;
		justify-content: space-between;
		margin: 56px 0 64px;
	}

	@media (max-width: 1199px) {}
}


/* ------------------------------
		intro
------------------------------ */
.intro {
	margin-bottom: 56px;
}

.intro .intro_ttl {
	text-align: center;
}

.intro .intro_ttl .ttl {
	display: inline-block;
	letter-spacing: 0.1em;
	line-height: 1.625;
	position: relative;
}

.intro .intro_txt {
	margin-bottom: 32px;
}

.intro .intro_txt p {
	font-size: 18px;
	line-height: 2.2;
	text-align: center;
}

.intro .intro_txt p:last-of-type {
	font-feature-settings: "palt";
	letter-spacing: 0.04em;
	margin-top: 18px;
}

.intro .intro_txt .color_txt {
	font-size: 24px;
}


@media (min-width: 769px) {
	.intro {
			margin-bottom: 200px;
		}

	.intro .intro_ttl .ttl {
		line-height: 2;
	}

	.intro .intro_ttl .ttl::before {
		background-image: url(../img/deco02_l.png);
		background-size: contain;
		background-repeat: no-repeat;
		content: "";
		display: block;
		height: 245px;
		left: -160px;
		position: absolute;
		top: -10px;
		width: 132px;
	}

	.intro .intro_ttl .ttl:after {
		background-image: url(../img/deco02_r.png);
		background-size: contain;
		background-repeat: no-repeat;
		content: "";
		display: block;
		height: 245px;
		position: absolute;
		right: -150px;
		top: -10px;
		width: 132px;
	}

	.intro .intro_txt {
		margin-bottom: 32px;
	}

	.intro .intro_txt p {
		line-height: 2;
	}

	@media (max-width: 1199px) {}
}

/* ------------------------------
		contact
------------------------------ */

.contact {
	margin-bottom: 64px;
}

.contact .small_ttl {
	margin-bottom: 64px;
}

.contact p {
	font-size: 16px;
	line-height: 1.6875;
}

.contact .phone {
	text-align: center;
	margin-bottom: 38px;
}

.contact .phone img {
	margin-bottom: 4px;
	max-width: 100%;
}

.contact .phone>p {
	font-size: 14px;
	line-height: 1;
	text-align: center;
}

.contact .btn_lead:last-of-type {
	margin-top: 64px;
}


@media (min-width: 769px) {
	.contact {
		margin-bottom: 115px;
	}

	.contact p {
		font-size: 18px;
		line-height: 2;
		text-align: center;
	}

	.contact .phone {
		margin-bottom: 64px;
	}

	.contact .phone img {
		margin: 0 auto 24px;
		max-width: 556px;
	}

	.contact .phone>p {
		font-size: 22px;
	}

	.contact 	.btn_lead:last-of-type {
		margin-top: 120px;
	}

	@media (max-width: 1199px) {}
}


/* ------------------------------
		estate
------------------------------ */

.estate {
	margin-bottom: 64px;
}

.estate .small_ttl {
	font-size: 16px;
	margin-bottom: 24px;
}

@media (min-width: 769px) {
	.estate {
		margin-bottom: 170px;
	}

		.estate .small_ttl {
			font-size: 18px;
			margin-bottom: 46px;
		}

	@media (max-width: 1199px) {}
}

/* ------------------------------
		footer
------------------------------ */

.footer {
	padding-bottom: 170px;
	position: relative;
}

.footer::after {
	background-image: url(../img/footer_sp.png);
	background-position: 55% center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	position: absolute;
	height: 185px;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: -10;
}

.footer .footer_box {
	align-items: center;
	display: flex;
	flex-flow: column nowrap;
	margin-bottom: -35px;
}

.footer .footer_box a {
	max-width: 230px;
}

.footer .footer_box .copy {
	font-size: 18px;
	line-height: 2.11;
	margin-top: 24px;
}

@media (min-width: 769px) {
	.footer {
		padding-bottom: 350px;
	}

	.footer::after {
		background-image: url(../img/footer_pc.png);
		background-position: bottom center;
		background-repeat: no-repeat;
		height: 353px;
	}

	.footer .footer_box {
		align-items: flex-end;
		flex-flow: row nowrap;
		justify-content: center;
		margin: 0 auto -30px;
		max-width: 1180px;
		position: relative;
	}

	.footer .footer_box a {
		left: 0;
		position: absolute;
		transition: all 0.6s;
	}

	.footer .footer_box a:hover {
		opacity: 0.6;
	}

	.footer .footer_box .copy {
		display: block;
		text-align: center;
		margin-top: 0;
	}

	@media (max-width: 1099px) {
		.footer .footer_box {
			align-items: center;
			flex-flow: column nowrap;
			justify-content: center;
			margin: 0 auto -30px;
			max-width: 100%;
		}

		.footer .footer_box a {
			position: relative;
		}

		.footer .footer_box .copy {
			margin-top: 24px;
		}
	}
}