/*------------------------------------
.mv
------------------------------------*/
.mv {
	background-image: url("../images/top/mv.jpg");
	background-position: left -70px center;
	background-repeat: no-repeat;
	background-size: 110%;
	height: 93.58vh;
	clip-path: ellipse(120% 100% at 50% 0%);
}
.mv__txt {
	margin-left: 8.594vw;
	padding-top: 22.308vh;
}
.mv__txt h1 {
	font-size: 50px;
	line-height: 1.4;
	text-shadow: 0 0 5px #fff, 0 0 10px #fff;
	margin-bottom: 25px;
}
.mv__catch {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.mv__catch span {
	display: flex;
	align-items: center;
	background-color: #037d67;
	width: fit-content;
	height: 46px;
	font-size: 27px;
	font-weight: 700;
	color: #fff;
	padding: 0 0 0 20px;
}
.mv__desc {
	font-size: 18px;
	font-weight: 700;
	text-shadow: 0 0 5px #fff, 0 0 10px #fff;
	padding-top: 30px;
}
@media screen and (max-width: 1300px) {
	.mv {
		background-size: 140%;
	}
}
@media screen and (max-width: 768px) {
	.mv {
		background-position: left -250px top;
		background-size: 200%;
		height: 63vh;
	}
	.mv__txt {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		height: 100%;
		padding: 10vh 0 6vh;
	}
	.mv__txt h1 {
		font-size: 25px;
		margin-bottom: 15px;
	}
	.mv__catch {
		gap: 5px;
	}
	.mv__catch span {
		font-size: 16px;
		height: 32px;
		padding: 0 0 0 10px;
	}
	.mv__desc {
		font-size: 16px;
		padding: 0;
	}
}


/*------------------------------------
.intro
------------------------------------*/
.intro {
	padding: 50px 0 100px;
}
.intro .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 60px;
	max-width: 1200px;
}
@media screen and (max-width: 768px) {
	.intro {
		padding-bottom: 80px;
	}
	.intro .container {
		display: block;
	}
}

/*#schedule*/
#schedule {
	flex: 1 1 400px;
	max-width: 400px;
	min-width: 0;
}
#schedule table {
	width: 100%;
	font-size: 15px;
	letter-spacing: .05em;
}
#schedule tr {
	border-bottom: 1px solid #c4c2be;
}
#schedule thead th {
	white-space: nowrap;
}
#schedule thead th:first-child {
	text-align: left;
}
#schedule tbody th {
	font-weight: 400;
	text-align: left;
}
#schedule td {
	text-align: center;
}
.schedule-list {
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	margin-top: 10px;
}
.schedule-list li {
	margin-right: 8px;
}
@media screen and (max-width: 768px) {
	.schedule-list {
		margin-top: 16px;
	}
}

/*#news*/
#news {
	flex: 1 1 700px;
	max-width: 700px;
	min-width: 0;
}
.news__info {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 10px;
}
.news__info h2 {
	font-size: 27px;
}
.news__info a {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: #037d67;
}
.news__info a::after {
	content: "";
	display: block;
	background-image: url("../images/arrow_gr.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 15px;
}
@media screen and (max-width: 768px) {
	#news {
		padding-top: 60px;
	}
	.news__info h2 {
		font-size: 20px;
	}
}


/*------------------------------------
#cause
------------------------------------*/
#cause {
	background-color: #037d67;
	padding: 100px 0;
}
#cause .container {
	position: relative;
	max-width: 900px;
	text-align: center;
	color: #fff;
}
#cause .container::before,
#cause .container::after {
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
}
#cause .container::before {
	top: -116px;
	left: -70px;
	background-image: url("../images/top/cause-img01.svg");
	width: 195px;
	height: 151px;
}
#cause .container::after {
	right: -70px;
	bottom: -120px;
	background-image: url("../images/top/cause-img02.svg");
	width: 170px;
	height: 145px;
}
#cause h2 {
	position: relative;
	font-size: 27px;
	margin-bottom: 30px;
	padding-bottom: 40px;
}
#cause h2::after {
	content: "";
	background-color: #fff;
	position: absolute;
	bottom: 0;
	left: calc(50% - 70px);
	width: 140px;
	height: 2px;
}
@media screen and (max-width: 768px) {
	#cause {
		padding: 70px 0;
	}
	#cause .container::before {
		top: -94px;
		left: 0;
		width: 107px;
		height: 83px;
	}
	#cause .container::after {
		right: 0;
		bottom: -90px;
		width: 94px;
		height: 80px;
	}
	#cause h2 {
		font-size: 20px;
		margin-bottom: 20px;
		padding-bottom: 30px;
	}
}


/*------------------------------------
#promise
------------------------------------*/
#promise {
	padding-top: 120px;
}
#promise .container {
	max-width: 1200px;
}
#promise h2 {
	font-size: 27px;
	text-align: center;
	margin-bottom: 50px;
}
.promise-list {
	counter-reset: promise;
	display: flex;
	gap: 6px;
}
.promise-list li {
	counter-increment: promise;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background-color: #fff;
	width: calc((100% - 12px) / 3);
	text-align: center;
	padding: 50px 40px 60px;
}
.promise-list .img {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fcf6c8;
	border-radius: 50%;
	width: 130px;
	height: 130px;
	margin-bottom: 30px;
}
.promise-list li:first-child img {
	width: 61px;
	height: 68px;
}
.promise-list li:nth-child(2) img {
	width: 78px;
	height: 61px;
}
.promise-list li:nth-child(3) img {
	width: 90px;
	height: 48px;
}
.promise-list h3 {
	font-size: 23px;
	margin-bottom: 20px;
}
.promise-list strong {
	display: flex;
	justify-content: center;
	background-color: #037d67;
	border-radius: 100px;
	width: fit-content;
	line-height: 1;
	text-align: left;
	color: #fff;
	margin: auto;
	padding: 10px 20px;
}
.promise-list strong::before {
	content: counter(promise) ". ";
	margin-right: 0.3em;
}
.promise-list p {
	text-align: justify;
	padding-top: 16px;
}
.promise-list a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #eff4f1;
	width: fit-content;
	line-height: 1;
	text-decoration: underline;
	color: #037d67;
	margin: auto;
	padding: 16px;
}
.promise-list a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	#promise {
		padding-top: 90px;
	}
	#promise h2 {
		font-size: 20px;
		margin-bottom: 30px;
	}
	.promise-list {
		flex-wrap: wrap;
		gap: 10px;
	}
	.promise-list li {
		width: 100%;
		padding: 30px 30px 40px;
	}
	.promise-list .img {
		width: 100px;
		height: 100px;
		margin-bottom: 20px;
	}
	.promise-list li:first-child img {
		width: 47px;
		height: 53px;
	}
	.promise-list li:nth-child(2) img {
		width: 60px;
		height: 47px;
	}
	.promise-list li:nth-child(3) img {
		width: 72px;
		height: 38px;
	}
	.promise-list h3 {
		font-size: 18px;
	}
	.promise-list strong {
		font-size: 16px;
		padding: 10px 15px;
	}
	.promise-list p {
		padding-top: 10px;
	}
}


/*------------------------------------
#care
------------------------------------*/
#care {
	padding: 120px 0;
}
#care .container {
	max-width: 1200px;
}
#care h2 {
	font-size: 27px;
	text-align: center;
	margin-bottom: 50px;
}
.care-list {
	counter-reset: care;
}
.care-list li {
	counter-increment: care;
}
.care-list li:not(:last-child) {
	margin-bottom: 90px;
}
.care__row {
	display: flex;
	align-items: flex-start;
	position: relative;
	z-index: 0;
}
.care-list li:nth-child(odd) .care__row {
	flex-direction: row-reverse;
}
.care__row::after {
	content: "";
	top: 35px;
	left: 0;
	position: absolute;
	background-color: #fff;
	border: 5px solid #c4c2be;
	width: 70%;
	height: 100%;
	z-index: -1;
}
.care-list li:nth-child(even) .care__row::after {
	right: 0;
	left: auto;
}
.care__row .img {
	width: 48%;
	aspect-ratio: 3 / 2;
}
.care__row img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.care__row .txt {
	width: 52%;
	text-align: justify;
	padding: 40px 60px 0;
}
.care-list span {
	display: block;
	position: relative;
	background-color: #037d67;
	width: fit-content;
	height: 50px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 50px;
	text-align: center;
	color: #FFF;
	margin-top: -25px;
	padding: 0 15px 0 20px;
}
.care-list span::before {
	content: counter(care, decimal-leading-zero) "｜";
}
.care-list span::after {
	content: "";
	position: absolute;
	top: 0;
	right: -15px;
	width: 0;
	height: 0;
	border-width: 25px 0 25px 15px;
	border-style: solid;
	border-color: transparent transparent transparent #037d67;
}
.care-list h3 {
	font-size: 23px;
	margin-bottom: 20px;
	padding-top: 40px;
}
@media screen and (max-width: 768px) {
	#care {
		padding: 90px 0;
	}
	#care h2 {
		font-size: 20px;
		margin-bottom: 30px;
	}
	.care-list li:not(:last-child) {
		margin-bottom: 40px;
	}
	.care__row {
		flex-wrap: wrap;
		padding: 30px 0 40px;
	}
	.care__row::after {
		top: 0;
		left: -3.65vw;
		width: 100%;
	}
	.care-list li:nth-child(odd) .care__row::after {
		border-left: none;
	}
	.care-list li:nth-child(even) .care__row::after {
		right: -3.65vw;
		left: auto;
		border-right: none;
	}
	.care__row .img,
	.care__row .txt {
		width: 100%;
	}
	.care__row .txt {
		width: 100%;
		padding: 0;
	}
	.care-list li:nth-child(odd) .txt {
		padding-right: 40px;
	}
	.care-list li:nth-child(even) .txt {
		padding-left: 40px;
	}
	.care-list span {
		height: 40px;
		font-size: 16px;
		line-height: 40px;
		padding: 0 10px 0 15px;
	}
	.care-list span::after {
		border-width: 20px 0 20px 15px;
	}
	.care-list h3 {
		font-size: 18px;
		margin-bottom: 10px;
		padding-top: 15px;
	}
}


/*------------------------------------
#story
------------------------------------*/
#story {
	background-color: #fff;
	padding: 120px 0;
}
#story .container {
	max-width: 1200px;
}
#story h2 {
	font-size: 27px;
	text-align: center;
	margin-bottom: 70px;
}
.story__row {
	display: flex;
	gap: 70px;
}
.story__row .img {
	flex: 1 1 400px;
	max-width: 400px;
	min-width: 0;
	text-align: center;
}
.story__row small {
	display: block;
	font-size: 16px;
	padding-top: 10px;
}
.story__row .sign {
	font-size: 23px;
	font-weight: 700;
	line-height: 1.5;
}
.story__row span {
	display: block;
	font-size: 14px;
	font-weight: 400;
}
.story__row .txt {
	flex: 1 1 730px;
	max-width: 730px;
	min-width: 0;
}
.story__desc {
	font-size: 18px;
	text-align: justify;
	margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
	#story {
		padding: 90px 0;
	}
	#story h2 {
		font-size: 20px;
		margin-bottom: 30px;
	}
	.story__row {
		display: block;
	}
	.story__row .img {
		margin-bottom: 20px;
	}
	.story__row small {
		font-size: 14px;
	}
	.story__row .sign {
		font-size: 16px;
	}
	.story__row span {
		font-size: 12px;
	}
	.story__desc {
		font-size: 15px;
	}
}


/*------------------------------------
#flow
------------------------------------*/
#flow {
	padding: 120px 0;
}
#flow .container {
	max-width: 1400px;
}
.flow__title {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 27px;
	text-align: center;
	margin-bottom: 50px;
}
.flow__title span {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #037d67;
	border-radius: 17.5px;
	width: fit-content;
	height: 35px;
	font-size: 18px;
	line-height: 1;
	color: #fff;
	margin: auto;
	padding: 0 20px;
}
.flow-list {
	counter-reset: flow;
	display: flex;
	gap: 25px;
	position: relative;
	z-index: 0;
}
.flow-list::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	background-color: #fff;
	width: 100%;
	height: 5px;
	z-index: -1;
}
.flow-list li {
	counter-increment: flow;
	background-color: #fff;
	width: calc((100% - 75px) / 4);
	padding: 40px 40px 50px;
	z-index: 1;
}
.flow__block {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.flow__block .img {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px;
	margin-bottom: 20px;
}
.flow__block img {
	width: auto;
	max-height: 70px;
}
.flow__block h3 {
	font-size: 23px;
	text-align: center;
	margin-bottom: 20px;
}
.flow__block h3::before {
	content: "STEP " counter(flow, decimal-leading-zero);
	display: block;
	font-size: 16px;
	color: #037D67;
}
.flow-list p {
	text-align: justify;
}
@media screen and (max-width: 768px) {
	#flow {
		padding: 90px 0;
	}
	.flow__title {
		font-size: 20px;
		margin-bottom: 30px;
	}
	.flow__title span {
		font-size: 16px;
		padding: 0 15px;
	}
	.flow-list {
		flex-wrap: wrap;
		gap: 20px;
	}
	.flow-list::after {
		top: 0;
		left: 50%;
		width: 5px;
		height: 100%;
	}
	.flow-list li {
		width: 100%;
		padding: 40px;
	}
	.flow__block .img {
		height: 56px;
		margin-bottom: 20px;
	}
	.flow__block img {
		max-height: 56px;
	}
	.flow__block h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}
}


/*------------------------------------
#price
------------------------------------*/
#price {
	background-color: #fff;
	padding: 120px 0;
}
#price .container {
	max-width: 1400px;
}
.price__title {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 27px;
	text-align: center;
	margin-bottom: 30px;
}
.price__title span {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #037d67;
	border-radius: 17.5px;
	width: fit-content;
	height: 35px;
	font-size: 18px;
	line-height: 1;
	color: #fff;
	margin: auto;
	padding: 0 20px;
}
.price__inner {
	border: 5px solid #c4c2be;
	max-width: 900px;
	margin: auto;
	padding: 50px 80px 80px;
}
.price__subtitle {
	font-size: 23px;
	text-align: center;
	margin-bottom: 30px;
}
.price__subtitle span {
	display: block;
	font-size: 14px;
	font-weight: 400;
}
.price__inner small {
	display: block;
}
.price__inner dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #c4c2be;
	line-height: 1.6;
	padding: 15px 0;
}
.price__inner dl:first-of-type {
	border-top: 1px solid #c4c2be;
}
.price__inner dt {
	font-size: 18px;
	font-weight: 700;
}
.price__inner dd {
	text-align: right;
}
.price__inner strong {
	font-size: 20px;
}
.price__inner small {
	font-size: 14px;
}
@media screen and (max-width: 768px) {
	#price {
		padding: 90px 0;
	}
	.price__title {
		font-size: 20px;
	}
	.price__title span {
		font-size: 16px;
		padding: 0 15px;
	}
	.price__inner {
		padding: 30px 30px 40px;
	}
	.price__subtitle {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.price__inner dt {
		font-size: 15px;
	}
	.price__inner strong {
		font-size: 15px;
	}
	.price__inner small {
		font-size: 12px;
		padding-top: 8px;
	}
	.price__inner dl {
		flex-direction: column;
		align-items: flex-start;
	}
	.price__inner dt,
	.price__inner dd {
		width: 100%;
	}
	.price__inner dd {
		text-align: justify;
	}
}


/*------------------------------------
#faq
------------------------------------*/
#faq {
	padding-top: 120px;
}
#faq .container {
	max-width: 900px;
}
#faq h2 {
	font-size: 27px;
	text-align: center;
	margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
	#faq {
		padding-top: 90px;
	}
	#faq h2 {
		font-size: 20px;
		margin-bottom: 30px;
	}
}


/*------------------------------------
#access
------------------------------------*/
#access {
	padding: 120px 0;
}
#access .container {
	max-width: 1200px;
}
#access h2 {
	font-size: 27px;
	text-align: center;
	margin-bottom: 50px;
}
.access__row {
	display: flex;
	gap: 60px;
	margin-bottom: 90px;
}
.access__row .half {
	width: calc((100% - 60px) / 2);
}
.google-map {
	width: 100%;
	height: 460px;
}
.google-map iframe {
	width: 100%;
	max-height: 100% !important;
	height: 100%;
}
.access__txt h3 {
	font-size: 23px;
	margin-bottom: 8px;
}
.access__txt p:not([class]) {
	margin-bottom: 30px;
}
.access__txt .table {
	margin-bottom: 30px;
}
.access__txt small {
	display: block;
}
.access__txt .notes {
	background-color: #fff;
	text-align: justify;
	padding: 15px 35px;
}
@media screen and (max-width: 768px) {
	#access {
		padding: 70px 0;
	}
	#access h2 {
		font-size: 20px;
		margin-bottom: 30px;
	}
	.access__row {
		flex-wrap: wrap;
		gap: 30px;
		margin-bottom: 50px;
	}
	.access__row .half {
		width: 100%;
	}
	.google-map {
		height: 350px;
	}
	.access__txt h3 {
		font-size: 18px;
	}
	.access__txt p:not([class]) {
		margin-bottom: 20px;
	}
	.access__txt .notes {
		padding: 15px 30px;
	}
}

/*3枚以下（静止）*/
.access__slider.is-static {
  list-style: none;
  display: flex;
  gap: 30px;
}
.access__slider.is-static > li {
  width: calc((100% - 60px) / 3);
}

/*3枚以上（slick）*/
.access__slider.is-slick .slick-next,
.access__slider.is-slick .slick-prev {
  background-color: transparent !important;
  width: 32px;
  height: 32px;
  z-index: 1;
}
.access__slider.is-slick .slick-next { right: -30px; }
.access__slider.is-slick .slick-prev { left: -30px; }

.access__slider.is-slick .slick-next::before,
.access__slider.is-slick .slick-prev::before {
  background: #112D12 !important;
  -webkit-clip-path: polygon(30% 0, 80% 50%, 30% 100%, 25% 95%, 70% 50%, 25% 5%);
  clip-path: polygon(30% 0, 80% 50%, 30% 100%, 25% 95%, 70% 50%, 25% 5%);
  content: '';
  display: block;
  height: 100%;
  opacity: 1;
  width: 100%;
}
.access__slider.is-slick .slick-prev::before {
  transform: rotateY(180deg);
}
@media screen and (max-width: 768px) {
  .access__slider.is-slick {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .access__slider.is-slick .slick-next,
  .access__slider.is-slick .slick-prev {
    width: 24px;
    height: 24px;
  }
  .access__slider.is-slick .slick-next { right: 15px; }
  .access__slider.is-slick .slick-prev { left: 15px; }

  .access__slider.is-slick .slick-slide {
    margin: 0 10px;
  }
}


/*------------------------------------
#reserve
------------------------------------*/
#reserve .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #037d67;
	border-radius: 20px;
	max-width: 1600px;
	text-align: center;
	color: #fff;
	padding: 60px;
	box-shadow: 0 2px 10px rgba(3,125,103,.05);
}
.reserve__title {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 27px;
	text-align: center;
	margin-bottom: 20px;
}
.reserve__title span {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border-radius: 17.5px;
	width: fit-content;
	height: 35px;
	font-size: 18px;
	line-height: 1;
	color: #037d67;
	margin: auto;
	padding: 0 20px;
}
#reserve .num {
	display: flex;
	align-items: baseline;
	gap: 15px;
	font-size: 50px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1;
	margin-bottom: 16px;
}
#reserve .num::before {
	content: "";
	display: block;
	background-image: url("../images/tel.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 36px;
	height: 36px;
}
#reserve small {
	font-size: 16px;
}
#reserve .notes {
	font-size: 14px;
	line-height: 1.6;
	padding-top: 20px;
}
@media screen and (max-width: 768px) {
	#reserve .container {
		border-radius: 16px;
		padding: 40px;
	}
	.reserve__title {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.reserve__title span {
		font-size: 16px;
		padding: 0 15px;
	}
	#reserve .num {
		gap: 12px;
		font-size: 32px;
		margin-bottom: 8px;
	}
	#reserve .num::before {
		width: 28px;
		height: 28px;
	}
	#reserve .notes {
		font-size: 12px;
		padding-top: 15px;
	}
}
