@charset "utf-8";
/* =========================================================================================
Layout
=========================================================================================*/
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
MAIN VISUAL
=========================================================================================*/
.main-visual {
	position: relative;
	z-index: 1;
}
.main-visual .catchphrase {
	width: 100%;
	max-width: 1920px;
	padding-inline: 40px;
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: right;
	gap: 5vh;
	position: absolute;
	left: 50%;
	bottom: 10vh;
	translate: -50% 0;
	z-index: 5;
}
.main-visual .catchphrase strong,
.main-visual .catchphrase p {
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 1em 0;
}
.main-visual .catchphrase strong span {
	color: #fff;
	font-size: clamp(1.5rem, calc(0.552rem + 4.045vw), 2.625rem); /* min: 24px, max: 42px */
	font-weight: var(--weight-medium);
	line-height: 1;
	display: inline-block;
	background: linear-gradient(to left, #7cccf0 0%, #00a0e9 100%);
	padding: 0.375em 0.5em;
}
.main-visual .catchphrase p span {
	font-size: clamp(0.688rem, calc(0.213rem + 2.022vw), 1.25rem); /* min: 11px, max: 20px */
	font-weight: var(--weight-medium);
	line-height: 1;
	display: inline-block;
	background: #fff;
	padding: 0.5em 0.5em 0.5em 1em;
}
.main-visual .swiper {
	padding: 0;
	margin: 0;
}
.main-visual .swiper-wrapper {
	/* wrapperのサイズを調整 */
	width: 100%;
	height: 100%;
}
.main-visual .swiper-slide {
	/* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
	width: 100%;
	height: 100vh;
	max-height: 1200px;
	min-height: 600px;
}
.main-visual .swiper-slide img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.main-visual .swiper-slide.bird {
	position: relative;
	z-index: 1;
}
.main-visual .swiper-slide.bird::before {
	content: "";
	width: 50%;
	max-width: 725px;
	aspect-ratio: 725 / 500;
	display: block;
	background: url(../images/common/object_bird_01.svg) no-repeat center / contain;
	position: absolute;
	top: 15%;
	left: 2.5%;
	z-index: 5;
	animation: tilt-in-fwd-br 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}
@keyframes tilt-in-fwd-br {
	0% {
		transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
		opacity: 0;
	}
	100% {
		transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
		opacity: 1;
	}
}
@media only screen and (max-width: 980px) {
	.main-visual .catchphrase {
		padding-inline: 20px;
	}
	.main-visual .swiper-slide {
		height: 85vh;
	}
}
@media only screen and (max-width: 468px) {
	.main-visual .catchphrase {
		padding-inline: 10px;
	}
}

/*scroll-navi*/
.main-visual #scroll-navi .scroll-navi {
	color: #fff;
	font-size: 0.8em;
	writing-mode: vertical-rl;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
	position: absolute;
	left: 5%;
	bottom: 0;
	z-index: 10;
	animation: scroll-navi 2.5s ease-in-out infinite;
	/* filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5)); */
}
@keyframes scroll-navi {
	0%,
	100% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
}
.main-visual #scroll-navi .scroll-navi span {
	display: inline-block;
	width: 1px;
	height: 90px;
	margin-left: 0.2em;
	overflow: hidden;
	position: relative;
}
.main-visual #scroll-navi .scroll-navi span::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	transform-origin: center top;
	animation: scroll-navi-anime 2.5s ease-in-out infinite;
}
@keyframes scroll-navi-anime {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	40% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	41% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	80%,
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}
@media only screen and (max-width: 980px) {
}
@media only screen and (max-width: 468px) {
	.main-visual #scroll-navi .scroll-navi {
		bottom: 4%;
	}
	.main-visual #scroll-navi .scroll-navi span {
		height: 50px;
	}
}
/* =========================================================================================
News
=========================================================================================*/
section.news {
	background: var(--color-beige);
}
section.news .inner {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 7.5%;
	position: relative;
	z-index: 1;
}
section.news .inner .title-block {
	padding-bottom: 100px;
}
section.news .inner .title-block .mid-xl {
	align-items: start;
	margin-bottom: 1em;
}
section.news .inner .post-list ul {
	margin-bottom: 0;
}
section.news .btn {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 5;
}
@media only screen and (max-width: 820px) {
	section.news .inner {
		display: flex;
		flex-direction: column;
		gap: 50px;
	}
	section.news .inner .title-block {
		padding-bottom: 0;
	}
	section.news .btn {
		position: static;
		margin-top: 3em;
	}
}
@media only screen and (max-width: 468px) {
}
/* =========================================================================================
About
=========================================================================================*/
section.about {
	padding-block: 10% 0;
	position: relative;
}
section.about::before {
	content: "";
	width: 100vw;
	min-width: 375px;
	height: 77%;
	background: var(--color-beige);
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% 0;
	z-index: -1;
}
section.about.object-wave.beige::after {
	top: 77%;
	translate: -50% -99%;
	transform: scale(1, -1);
}
section.about .object-bird {
	content: "";
	width: 50%;
	max-width: 500px;
	aspect-ratio: 500 / 355;
	display: block;
	background: url(../images/common/object_bird_02.svg) no-repeat center / contain;
	position: absolute;
	top: 15%;
	right: 5%;
	z-index: 1;
	opacity: 0;
}
section.about .inner.title-block {
	position: relative;
	z-index: 5;
}
section.about .inner.title-block .point01 {
	width: 70%;
	max-width: 590px;
	padding-bottom: 100px;
	margin-inline: auto 0;
	position: relative;
	z-index: 5;
	font-weight: var(--weight-medium);
}
section.about .inner.title-block .point01::before {
	content: "";
	width: 50vw;
	max-width: 950px;
	min-height: 700px;
	aspect-ratio: 980 / 840;
	border-radius: 20px;
	background: url(../images/about_01.webp) no-repeat center / cover;
	position: absolute;
	top: 0;
	left: 0;
	translate: -110% -15%;
	z-index: -1;
}
section.about .inner.title-block .point01 .mid-xl {
	flex-direction: row-reverse;
}
section.about .inner.large {
	max-width: var(--contents-width-large);
	padding-bottom: 22.5%;
	position: relative;
	z-index: 5;
}
section.about .inner.large .box {
	display: flex;
	flex-direction: column;
}
section.about .inner.large .box .image {
	margin-bottom: 2em;
}
section.about .inner.large .box .image img {
	border-radius: 20px;
}
section.about .inner.large .box.point02 {
	width: 40%;
	max-width: 700px;
	margin-inline: auto 0;
	font-weight: var(--weight-medium);
}
section.about .inner.large .box.point03 {
	width: 52.5%;
	max-width: 865px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	font-weight: var(--weight-medium);
}
@media only screen and (max-width: 1200px) {
	section.about .object-bird {
		right: 45%;
	}
	section.about .inner.title-block .point01 {
		width: 100%;
		max-width: 100%;
		padding-bottom: 75px;
	}
	section.about .inner.title-block .point01::before {
		content: "";
		width: 40%;
		min-width: 300px;
		aspect-ratio: 2 / 3;
		min-height: auto;
		position: absolute;
		top: 47.5%;
		left: auto;
		right: 0;
		translate: 15% -50%;
	}
	section.about .inner.title-block .point01 p {
		width: 60%;
	}
	section.about .inner.large .box.point02 {
		width: 100%;
		max-width: 100%;
		display: grid;
		grid-template-columns: minmax(40%, 250px) 1fr;
		align-items: end;
		gap: 0;
		margin-inline: 0;
		margin-bottom: 75px;
	}
	section.about .inner.large .box.point02 .image {
		margin: 0;
		translate: -15% 0;
	}
	section.about .inner.large .box.point02 .image img {
		object-fit: cover;
		width: 100%;
		height: 325px;
	}
	section.about .inner.large .box.point03 {
		width: 100%;
		max-width: 100%;
		display: grid;
		grid-template-columns: 1fr minmax(40%, 250px);
		align-items: center;
		gap: 0;
		margin-inline: 0;
		position: static;
	}
	section.about .inner.large .box.point03 .image {
		order: 2;
		margin: 0;
		translate: 12.5% 0;
	}
	section.about .inner.large .box.point03 .image img {
		object-fit: cover;
		width: 100%;
		height: 325px;
	}
	section.about .inner.large .box.point03 .text {
		order: 1;
	}
}
@media only screen and (max-width: 820px) {
	section.about .object-bird {
		top: -2.5%;
		right: 5%;
		z-index: 10;
	}
	section.about .inner.title-block .point01 {
		padding-bottom: 0;
		margin-bottom: 75px;
	}
	section.about .inner.title-block .point01::before {
		content: "";
		width: 80%;
		max-width: 525px;
		aspect-ratio: 1 / 1;
		top: 0;
		translate: 12.5% 0;
	}
	section.about .inner.title-block .point01 .mid-xl {
		flex-direction: column-reverse;
		align-items: start;
		justify-content: left;
		margin-bottom: 40%;
	}
	section.about .inner.title-block .point01 p {
		width: 100%;
	}
	section.about .inner.large .box.point02 {
		display: block;
		margin-bottom: 30px;
	}
	section.about .inner.large .box.point03 {
		display: block;
		margin-bottom: 0;
	}
	section.about .inner.large .box.point02 .text,
	section.about .inner.large .box.point03 .text {
		translate: 0 -1.5em;
	}
	section.about .inner.large .box.point02 .image {
		width: 110%;
		translate: -10% 0;
	}
	section.about .inner.large .box.point03 .image {
		width: 110%;
		translate: 5% 0;
	}
	section.about .inner.large .box.point02 .image img,
	section.about .inner.large .box.point03 .image img {
		height: auto;
	}
}
@media only screen and (max-width: 468px) {
	section.about .object-bird {
		top: 2%;
		right: -10%;
	}
	section.about .inner.title-block .point01 {
		margin-bottom: 40px;
	}
	section.about .inner.title-block .point01::before {
		width: 90%;
		translate: 12.5% 10%;
	}
	section.about .inner.title-block .point01 .mid-xl {
		margin-bottom: 50%;
	}
	section.about .inner.large {
		padding-bottom: 100px;
	}
	section.about .inner.large .box.point02 {
		margin-bottom: 10px;
	}
}

/* =========================================================================================
Service
=========================================================================================*/
section.service .inner {
	max-width: var(--contents-width-large);
	padding-bottom: 75px;
}
section.service .object-bird {
	content: "";
	width: 50%;
	max-width: 765px;
	aspect-ratio: 765 / 235;
	display: block;
	background: url(../images/common/object_bird_03.svg) no-repeat center / contain;
	position: absolute;
	top: -15%;
	right: 5%;
	z-index: 1;
	opacity: 0;
}
section.service .mid-xl {
	justify-content: center;
	margin-bottom: 2em;
}
section.service .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 50px 2.5%;
}
section.service .item {
	width: 23%;
	max-width: 360px;
	display: flex;
	flex-direction: column;
	gap: 50px;
}
section.service .item .image img {
	border-radius: 100%;
	filter: drop-shadow(5px 5px 0px rgba(124, 204, 240, 0.5));
}
section.service .item .text {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border: 5px solid rgba(124, 204, 240, 0.5);
	border-radius: 20px;
	padding: 30px 10px 20px;
	position: relative;
	z-index: 1;
}
section.service .item .text h3 {
	color: var(--color-main);
	font-size: clamp(1.25rem, calc(1.039rem + 0.899vw), 1.5rem); /* min: 20px, max: 24px */
	font-weight: var(--weight-bold);
	text-align: center;
	line-height: 1.4;
	width: calc(100% - 20px - 20px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% -50%;
	z-index: 2;
}
section.service .item .text li {
	font-size: clamp(0.875rem, calc(0.77rem + 0.449vw), 1rem); /* min: 14px, max: 16px */
}
section.service .item .text .btn a {
	min-width: 180px;
}
@media only screen and (max-width: 980px) {
	section.service .box {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 50px 5%;
	}
	section.service .item {
		width: 47.5%;
		gap: 35px;
	}
}
@media only screen and (max-width: 820px) {
	section.service .object-bird {
		width: 70%;
		top: -100px;
		right: 5%;
	}
	section.service .item .text .btn a {
		font-size: 1em;
		min-width: auto;
	}
}
@media only screen and (max-width: 468px) {
	section.service .object-bird {
		width: 80%;
		top: -80px;
	}
	section.service .box {
		gap: 30px 5%;
	}
	section.service .item .text {
		gap: 10px;
		padding-top: 35px;
	}
	section.service .item .text .btn a {
		font-size: 0.9em;
		min-width: 100%;
		padding: 0.5em 2.5em 0.5em 1em;
	}
	section.service .item .text .btn a::after {
		width: 1.25em;
	}
}

/* =========================================================================================
Staff
=========================================================================================*/
section.staff {
	padding-top: 0;
}
section.staff::before {
	content: "";
	width: 100vw;
	min-width: 375px;
	height: 50%;
	background: url(../images/common/bg_blue.webp) no-repeat center / cover;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% 0;
	z-index: -1;
}
section.staff .object-bird {
	content: "";
	width: 50%;
	max-width: 500px;
	aspect-ratio: 500 / 355;
	display: block;
	background: url(../images/common/object_bird_02.svg) no-repeat center / contain;
	position: absolute;
	top: 13.5%;
	left: 5%;
	z-index: 1;
	opacity: 0;
}
/*intro*/
section.staff .inner.intro {
	display: flex;
	justify-content: right;
	margin-bottom: 200px;
	position: relative;
	z-index: 5;
	font-weight: var(--weight-medium);
}
section.staff .inner.intro .title-block {
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	z-index: 1;
}
section.staff .inner.intro .title-block .mid-xl {
	flex-direction: row-reverse;
}
section.staff .inner.intro .image {
	width: 50%;
	max-width: 550px;
}
section.staff .inner.intro .image img {
	border-radius: 20px;
}
@media only screen and (max-width: 820px) {
	section.staff .object-bird {
		top: 7.5%;
		left: 1%;
	}
	section.staff .inner.intro {
		justify-content: left;
		margin-bottom: 20%;
	}
	section.staff .inner.intro .title-block {
		position: static;
		translate: 0 0;
		margin-bottom: 50px;
	}
	section.staff .inner.intro .title-block .mid-xl {
		flex-direction: column-reverse;
		align-items: start;
		justify-content: left;
		margin-bottom: calc(45% - 30px);
	}
	section.staff .inner.intro .image {
		width: 65%;
		max-width: 400px;
		position: absolute;
		top: 0;
		right: 0;
		translate: 20% -10%;
		z-index: -1;
	}
}
@media only screen and (max-width: 468px) {
}

/*staff-list*/
section.staff .inner.staff-list::before {
	content: "";
	width: 100vw;
	min-width: 375px;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% 0;
	z-index: -1;
}
section.staff .inner.staff-list {
	padding-top: 2em;
	position: relative;
	z-index: 5;
}
section.staff .inner.staff-list h3 {
	color: var(--color-main);
	font-size: clamp(1.25rem, calc(0.197rem + 4.494vw), 2.5rem); /* min: 20px, max: 40px */
	text-align: center;
	line-height: 1.4;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
section.staff .inner.staff-list > p {
	text-align: center;
	margin-bottom: 2em;
	font-weight: var(--weight-medium);
}
section.staff .inner.staff-list .box {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 75px 4.5%;
}
section.staff .inner.staff-list .box .item {
	width: calc((100% - 4.5% - 4.5%) / 3);
	display: flex;
	flex-direction: column;
	gap: 20px;
}
section.staff .inner.staff-list .box .item .image img {
	border-radius: 20px;
}
section.staff .inner.staff-list .box .item .text {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: stretch;
	gap: 1em;
}
section.staff .inner.staff-list .box .item .text .name {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: stretch;
}
section.staff .inner.staff-list .box .item .text .name h4 {
	color: var(--color-main);
	font-size: clamp(1.125rem, calc(0.914rem + 0.899vw), 1.375rem); /* min: 18px, max: 22px */
	line-height: 1.4;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	margin-bottom: 0.5em;
}
section.staff .inner.staff-list .box .item .text .name h4 small {
	font-size: 0.725em;
}
section.staff .inner.staff-list .box .item .text .name .post {
	font-size: clamp(1rem, calc(0.895rem + 0.449vw), 1.125rem); /* min: 16px, max: 18px */
	text-align: center;
	font-weight: var(--weight-medium);
}
section.staff .inner.staff-list .box .item .text .comment {
	font-size: 0.8em;
	background: var(--color-beige);
	border-radius: 20px;
	padding: 1em;
}
@media only screen and (max-width: 820px) {
	section.staff .inner.staff-list .box {
		gap: 50px 5%;
	}
	section.staff .inner.staff-list .box .item {
		width: calc((100% - 5%) / 2);
	}
}
@media only screen and (max-width: 468px) {
	section.staff .inner.staff-list .box .item {
		width: 100%;
	}
}

/*staff-photo*/
section.staff .staff-photo {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-inline: 2.5%;
	padding-top: 100px;
	position: relative;
	z-index: 5;
}
section.staff .staff-photo::before {
	content: "";
	width: 100vw;
	min-width: 375px;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% 0;
	z-index: -1;
}
section.staff .staff-photo strong {
	color: var(--color-main);
	font-size: clamp(1.5rem, calc(0.447rem + 4.494vw), 2.75rem); /* min: 24px, max: 44px */
	text-align: center;
	line-height: 1.3;
	width: fit-content;
	display: block;
	padding-inline: 2.75em;
	margin-bottom: 0.5em;
	position: relative;
	z-index: 1;
}
section.staff .staff-photo strong::before,
section.staff .staff-photo strong::after {
	content: "";
	width: 3em;
	height: 5px;
	background: var(--color-main);
	border-radius: 10px;
	position: absolute;
	top: 80%;
	translate: 0 -50%;
	z-index: 1;
}
section.staff .staff-photo strong::before {
	left: 0;
	transform: rotate(50deg);
}
section.staff .staff-photo strong::after {
	right: 0;
	transform: rotate(-50deg);
}
section.staff .staff-photo img {
	object-fit: cover;
	width: 100%;
	min-height: 300px;
	aspect-ratio: 1800 / 700;
	border-radius: 100px 100px 0 0;
}
@media only screen and (max-width: 820px) {
	section.staff .staff-photo strong::before,
	section.staff .staff-photo strong::after {
		content: "";
		width: 4em;
		height: 4px;
	}
	section.staff .staff-photo img {
		border-radius: 75px 75px 0 0;
	}
}
@media only screen and (max-width: 468px) {
	section.staff .staff-photo {
		padding-top: 50px;
	}
	section.staff .staff-photo img {
		min-height: 200px;
		border-radius: 50px 50px 0 0;
	}
}

/* =========================================================================================
Facility
=========================================================================================*/
section.facility {
	position: relative;
	z-index: 5;
}
section.facility::before {
	content: "";
	width: 100vw;
	min-width: 375px;
	height: 100%;
	background: var(--color-beige);
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% 0;
	z-index: -1;
}
section.facility .inner {
	max-width: var(--contents-width-large);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
section.facility .inner .title-block {
	margin-bottom: 0px;
}
/*slide-contents*/
section.facility .slide-contents {
	width: 100%;
	max-width: 1400px;
	display: grid;
	grid-template-columns: 1fr minmax(40%, 300px);
	align-items: stretch;
	gap: 3.5%;
	margin-bottom: 100px;
}
section.facility .swiper-slide img {
	border: 10px solid #fff;
	border-radius: 20px;
}
section.facility .slider-main .swiper-wrapper,
section.facility .slider-thumbnail .swiper-wrapper {
	overflow: hidden;
}
/* slider-main */
section.facility .slider-main {
	min-width: 0;
}
section.facility .slider-main .swiper-slide {
	position: relative;
	z-index: 1;
}
section.facility .slider-main .swiper-slide img {
	width: 100%;
	min-height: 100%;
	aspect-ratio: 960 / 660;
	object-fit: cover;
	object-position: center;
}
section.facility .slider-main .swiper-slide figcaption {
	color: #fff;
	font-weight: var(--weight-bold);
	background: var(--color-accent);
	border-radius: 20px 0 10px 0;
	padding: 0.5em 1em;
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 5;
}
/* slider-thumbnail */
section.facility .slider-thumbnail .swiper-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: start;
	gap: 15px 25px;
}
section.facility .slider-thumbnail .swiper-slide {
	width: auto; /*表示数と余白はcommon.jsで管理*/
	height: auto;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.5s;
	margin: 0 !important;
}
section.facility .slider-thumbnail .swiper-slide img {
	width: 100%;
	aspect-ratio: 260 / 195;
	object-fit: cover;
	object-position: center;
}

section.facility .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
	opacity: 1;
}
@media only screen and (max-width: 980px) {
	section.facility .swiper-slide img {
		border: 5px solid #fff;
		border-radius: 15px;
	}
	section.facility .slide-contents {
		width: 100%;
		max-width: 1400px;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	section.facility .slider-thumbnail .swiper-wrapper {
		width: 100% !important; /* 画面の見切れ防止 */
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 10px;
	}
	section.facility .slider-thumbnail .swiper-slide img {
		aspect-ratio: 1 / 1;
	}
}
@media only screen and (max-width: 468px) {
}

/*price*/
section.facility .price {
	width: 100%;
	max-width: var(--contents-width-main);
	background: #fff;
	border: 5px solid var(--color-main);
	border-radius: 20px;
	padding: 80px 40px 40px;
	position: relative;
	z-index: 1;
}
section.facility .price .mid-s {
	width: 80%;
	max-width: 700px;
	gap: 0 0.5em;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% -50%;
	z-index: 1;
}
section.facility .box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px 5%;
	margin-bottom: 40px;
}
section.facility .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5em;
}
section.facility .item .image img {
	border-radius: 15px;
	filter: drop-shadow(5px 5px 0px rgba(124, 204, 240, 0.5));
}
section.facility .item .text {
	flex-grow: 1;
}
section.facility .item .text h4 {
	color: var(--color-main);
	font-size: clamp(1.25rem, calc(0.829rem + 1.798vw), 1.75rem); /* min: 20px, max: 28px */
	text-align: center;
	line-height: 1.4;
	margin-bottom: 0.375em;
}
section.facility .item .text dl {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: center;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
	section.facility .box {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}
}

/* =========================================================================================
Access
=========================================================================================*/
section.access {
	padding-top: 50px;
}
section.access::before {
	content: "";
	width: 100vw;
	min-width: 375px;
	height: 30%;
	background: var(--color-beige);
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% 0;
	z-index: -1;
}
section.access .title-block {
	margin-bottom: 30px;
}
section.access iframe {
	width: 100%;
	height: 700px;
	pointer-events: all !important;
}
section.access .inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
	gap: 60px 5%;
	padding-top: 100px;
}
section.access .box {
	width: 100%;
	max-width: 550px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 5px solid var(--color-main);
	border-radius: 20px;
	padding: 60px 30px 30px;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}
section.access .box .mid-s {
	width: 80%;
	max-width: 400px;
	gap: 0 0.5em;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% -50%;
	z-index: 1;
}
section.access .box .text {
	flex-grow: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
}
section.access .box .text b {
	color: var(--color-main);
	font-size: clamp(1.125rem, calc(0.914rem + 0.899vw), 1.375rem); /* min: 18px, max: 22px */
	text-align: center;
	line-height: 1.4;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
section.access .box .text p,
section.access .box .text address {
	font-size: clamp(1rem, calc(0.895rem + 0.449vw), 1.125rem); /* min: 16px, max: 18px */
	font-style: normal;
	line-height: 1.4;
}
section.access .box.contact .text b {
	margin-bottom: 1em;
}
section.access .box.contact .text p.tel {
	margin-block: 0.6em 0;
}
section.access .box.contact .text p.tel a {
	color: var(--color-accent);
	font-size: clamp(1.875rem, calc(1.066rem + 1.579vw), 2.25rem); /* min: 30px, max: 36px */
	font-weight: var(--weight-bold);
	white-space: nowrap;
	text-decoration: none !important;
	opacity: 1 !important;
}
section.access .box.contact .text p.fax {
	font-size: clamp(1.125rem, calc(0.914rem + 0.899vw), 1.375rem); /* min: 18px, max: 22px */
}
section.access .box.access b {
	margin-bottom: 0.5em;
}
section.access .box.access b:nth-of-type(2) {
	margin-top: 1.25em;
}
section.access .box .btn {
	width: 100%;
	margin-top: 1.5em;
}
section.access .box .btn a {
	min-width: 300px;
}
@media only screen and (max-width: 820px) {
	section.access iframe {
		height: 550px;
	}
}
@media only screen and (max-width: 468px) {
	section.access .inner {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}
}

/* =========================================================================================
Katsuura
=========================================================================================*/
section.katsuura {
	padding-bottom: 250px;
}
section.katsuura::before {
	content: "";
	width: 100vw;
	min-width: 375px;
	height: 100%;
	background: url(../images/common/bg_blue.webp) no-repeat center / cover;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% 0;
	z-index: -1;
}
section.katsuura .inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	font-weight: var(--weight-medium);
}
section.katsuura .mid-xl {
	margin-bottom: 3em;
}
section.katsuura .box {
	display: grid;
	align-items: center;
	margin-bottom: 75px;
}
section.katsuura .box:nth-of-type(odd) {
	grid-template-columns: 1fr minmax(42.5%, 450px);
	gap: 20px 5%;
}
section.katsuura .box:nth-of-type(even) {
	grid-template-columns: minmax(42.5%, 450px) 1fr;
	gap: 20px 4%;
}
section.katsuura .box:nth-of-type(even) .text {
	order: 1;
}
section.katsuura .box:nth-of-type(even) .image {
	order: 2;
}
section.katsuura .box .image {
	width: 100%;
	height: 100%;
}
section.katsuura .box .image img {
	width: 100%;
	min-height: 100%;
	aspect-ratio: 630 / 395;
	object-fit: cover;
	border-radius: 20px;
}
section.katsuura .link-area {
	width: 100%;
	display: grid;
	grid-template-columns: auto 1fr;
	border-radius: 15px;
	overflow: hidden;
}
section.katsuura .link-area dt {
	color: #fff;
	background: var(--color-main);
	padding: 1em 1.25em;
}
section.katsuura .link-area dd {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: left;
	gap: 0.25em 2em;
	background: #fff;
	padding: 1em 1.25em;
}
section.katsuura .link-area dd a {
	line-height: 1.6;
	padding-left: 1.25em;
	position: relative;
}
section.katsuura .link-area dd a::after {
	content: "";
	background: var(--color-accent);
	width: 1em;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0.375em;
	z-index: 1;
	-webkit-mask-image: url(../images/common/arrow_mask.svg);
	mask-image: url(../images/common/arrow_mask.svg);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	transition: 0.3s;
}
@media only screen and (max-width: 820px) {
	section.katsuura .mid-xl {
		margin-bottom: 2.5em;
	}
	section.katsuura .box {
		display: flex;
		flex-direction: column;
		gap: 0 !important;
		margin-bottom: 25px;
	}
	section.katsuura .box .text {
		order: 2 !important;
		translate: 0 -25px;
	}
	section.katsuura .box .image {
		order: 1 !important;
	}
	section.katsuura .box .text .mid-m {
		margin-bottom: 0.5em;
	}
	section.katsuura .link-area {
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	section.katsuura .link-area dt {
		padding-block: 0.375em;
	}
}
@media only screen and (max-width: 468px) {
	section.katsuura .box {
		display: flex;
		flex-direction: column;
		gap: 0 !important;
		margin-bottom: 15px;
	}
}
