@charset "utf-8";
/* =========================================================================================
PAGE HEADER
=========================================================================================*/
.page-header {
	height: 50vh;
	min-height: 350px;
	max-height: 540px;
	background: url(../images/page/page_header_default.webp) no-repeat center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-block: 150px 20px;
	margin: 0;
	position: relative;
}
.page-header .page-title {
	font-size: clamp(1.75rem, calc(0.697rem + 4.494vw), 3rem); /* min: 28px, max: 48px */
	text-align: left;
	font-weight: var(--weight-medium);
	letter-spacing: 0.025em;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: left;
	gap: 0.5rem;
	margin: 0;
}
.page-header .page-title span {
	color: #fff;
	line-height: 1;
	display: inline-block;
	background: linear-gradient(to left, #7cccf0 0%, #00a0e9 100%);
	padding: 0.3em 0.5em 0.375em;
}

@media only screen and (max-width: 980px) {
	.page-header {
		height: 380px;
		min-height: auto;
		max-height: none;
		padding-block: 120px 20px;
	}
}
@media only screen and (max-width: 468px) {
	.page-header {lor
		height: 280px;
		min-height: auto;
		max-height: none;
		padding-block: 100px 20px;
	}
}

/* =========================================================================================
LAYOUT
=========================================================================================*/
body.page .entry-content.object-wave {
	position: relative;
	z-index: 1;
}
body.page .entry-content.object-wave::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;
}
.entry-content.object-wave.beige::after {
	top: 30%;
	translate: -50% -50%;
	transform: scale(1, -1);
}
.entry-content section:nth-of-type(1) /*ページの一番最初のsection*/ {
	padding-top: 50px;
}
.entry-content section:nth-last-of-type(1) /*ページの一番最最後のsection*/ {
	padding-bottom: 250px;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
	.entry-content section:nth-last-of-type(1) {
		padding-bottom: 175px;
	}
}

/* google map */
.entry-content .map {
	position: relative;
	min-height: 260px;
}

.entry-content .map iframe {
	width: 100%;
	aspect-ratio: 400 / 260;
	height: auto;
	pointer-events: all !important;
}

/*bg*/
.entry-content section .bg-beige {
	background: var(--color-beige);
	border-radius: 20px;
	padding: 1.5em;
}
.entry-content section .bg-white {
	background: #fff;
	border-radius: 20px;
	padding: 1.5em;
}

/* =========================================================================================
FACILITY
=========================================================================================*/
body.facility h3.wp-block-heading {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: left;
}
.object-dot {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin: 1em auto;
}
.object-dot span {
	display: inline-block;
	width: 14px;
	aspect-ratio: 1 / 1;
	background: var(--color-green);
	border-radius: 100%;
}
.object-dot span:nth-of-type(2) {
	opacity: 0.5;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/*message -----------------------------------------------------------------------------------*/
body.facility section.message .inner {
	position: relative;
	z-index: 5;
}
body.facility section.message .box {
	display: grid;
	grid-template-columns: minmax(40%, 300px) 1fr;
	gap: 50px 7.5%;
}
body.facility section.message .box .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
}
body.facility section.message .box .item .image {
	margin-bottom: 1.25em;
}
body.facility section.message .box .item .image img {
	border-radius: 20px;
}
body.facility section.message .box .item p {
	line-height: 1.6;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
body.facility section.message .box .item p.name {
	font-size: clamp(1.125rem, calc(0.914rem + 0.899vw), 1.375rem); /* min: 18px, max: 22px */
	font-weight: var(--weight-bold);
	gap: 0 1em;
}
body.facility section.message .box .text p + p {
	margin-top: 1em;
}
body.facility section.message .box h3.wp-block-heading {
	color: var(--color-red);
}
/*message - chairman ---------------------------------------------------------------------------*/
body.facility section.message.chairman {
	padding-bottom: 50px;
}
body.facility section.message.chairman::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;
}
body.facility section.message.chairman .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;
	bottom: -5%;
	right: 2.5%;
	z-index: 1;
	opacity: 0;
}
body.facility section.message.chairman .box .item p {
	gap: 0 1em;
}
/*message - director ---------------------------------------------------------------------------*/
body.facility section.message.director::before {
	content: "";
	width: 100vw;
	min-width: 375px;
	height: 40%;
	background: var(--color-beige);
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% 0;
	z-index: -1;
}
body.facility section.message.director.object-wave.beige::after {
	top: 40%;
	transform: scale(1, -1);
}
@media only screen and (max-width: 820px) {
	body.facility section.message .object-bird {
		bottom: -2.5%;
	}
	body.facility section.message .box {
		display: flex;
		flex-direction: column;
		gap: 50px;
	}
	body.facility section.message .box .item .image {
		width: 100%;
		max-width: 500px;
	}
}
@media only screen and (max-width: 468px) {
}

/*Key --------------------------------------------------------------------------------*/
body.facility section.Key .inner {
	max-width: var(--contents-width-large);
}
body.facility section.Key .box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 50px 5%;
}
body.facility section.Key .box .image {
	margin-bottom: 1.5em;
}
body.facility section.Key .box .image img {
	border-radius: 20px;
	filter: drop-shadow(5px 5px 0px rgba(124, 204, 240, 0.5));
}
body.facility section.Key .box h3.wp-block-heading {
	text-align: center;
	justify-content: center;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/*about ---------------------------------------------------------------------------*/
body.facility section.about th {
	white-space: nowrap;
}
body.facility section.about dl {
	width: fit-content;
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: space-between;
}
body.facility section.about dd {
	padding-left: 1em;
	position: relative;
	z-index: 1;
}
body.facility section.about dd::before {
	content: "...";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
@media only screen and (max-width: 820px) {
	body.facility section.about th,
	body.facility section.about td {
		display: block;
	}
}
@media only screen and (max-width: 468px) {
}

/*floor-map --------------------------------------------------------------------------*/
body.facility section.floor-map {
	padding-bottom: 250px;
}
body.facility section.floor-map.object-wave::after {
	top: 400px;
}
body.facility section.floor-map::before {
	content: "";
	width: 100vw;
	min-width: 375px;
	height: calc(100% - 400px);
	background: url(../images/common/bg_blue.webp) no-repeat center / cover;
	position: absolute;
	left: 50%;
	bottom: 0;
	translate: -50% 0;
	z-index: -1;
}
body.facility section.floor-map .object-bird {
	content: "";
	width: 50%;
	max-width: 500px;
	aspect-ratio: 500 / 355;
	display: block;
	background: url(../images/common/object_bird_03.svg) no-repeat center / contain;
	position: absolute;
	top: 2.5%;
	left: 2.5%;
	z-index: 1;
	opacity: 0;
}
body.facility section.floor-map .image {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 30px;
}
body.facility section.floor-map h3.wp-block-heading {
	color: var(--color-main);
	border-bottom: 1px solid #ccc;
	padding-bottom: 0.5em;
}
body.facility section.floor-map ul.list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 0.25em 1em;
}
body.facility section.floor-map ul.list li {
	margin: 0;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/*facilities -------------------------------------------------------------------------*/
body.facility section.facilities {
	padding-top: 0;
}
body.facility section.facilities .inner {
	padding-top: 3.5em;
}
body.facility section.facilities h2.mid-l {
	translate: 0 25%;
}
body.facility section.facilities .box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
	gap: 40px 5%;
}
body.facility section.facilities .box .image {
	margin-bottom: 1.5em;
}
body.facility section.facilities .box .image img {
	border-radius: 20px;
	filter: drop-shadow(5px 5px 0px rgba(124, 204, 240, 0.5));
}
body.facility section.facilities .box .text h3.wp-block-heading {
	color: var(--color-main);
	font-size: clamp(1.125rem, calc(0.914rem + 0.899vw), 1.375rem); /* min: 18px, max: 22px */
	justify-content: center;
}
body.facility section.facilities .box .text p {
	font-size: 0.8em;
	background: var(--color-beige);
	border-radius: 20px;
	padding: 1.5em;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/*sample -------------------------------------------------------------------------*/
body.facility section.sample .object-bird {
	content: "";
	width: 50%;
	max-width: 500px;
	aspect-ratio: 500 / 355;
	display: block;
	background: url(../images/common/object_bird_04.svg) no-repeat center / contain;
	position: absolute;
	top: -10%;
	right: 2.5%;
	z-index: 1;
	opacity: 0;
}
body.facility section.sample .inner {
	position: relative;
	z-index: 5;
}
body.facility section.sample .box {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: left;
	gap: 50px 20px;
}
body.facility section.sample .box .item {
	width: 52%;
	display: grid;
	grid-template-columns: minmax(180px, 40%) 1fr;
	align-items: start;
	justify-content: left;
	gap: 50px 5%;
}
body.facility section.sample .box .item:nth-of-type(even) {
	width: calc(48% - 20px);
}
body.facility section.sample .box .item .image img {
	border-radius: 20px;
	filter: drop-shadow(5px 5px 0px rgba(124, 204, 240, 0.5));
}
body.facility section.sample .box .item .text h3.wp-block-heading {
	color: var(--color-main);
	font-size: clamp(1.25rem, calc(1.145rem + 0.449vw), 1.375rem); /* min: 20px, max: 22px */
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: start;
	gap: 0.25em;
	margin-top: 1em;
}
body.facility section.sample .box .item .text h3.wp-block-heading .time {
	color: var(--color-accent);
	font-size: clamp(1.25rem, calc(0.934rem + 1.348vw), 1.625rem); /* min: 20px, max: 26px */
	white-space: nowrap;
	background: no-repeat left center / contain;
	min-height: 36px;
	padding-left: 45px;
}
body.facility section.sample .box .item .text h3.wp-block-heading .time.am6 {
	background-image: url(../images/page/facility/icon_am_6.svg);
}
body.facility section.sample .box .item .text h3.wp-block-heading .time.am8 {
	background-image: url(../images/page/facility/icon_am_8.svg);
}
body.facility section.sample .box .item .text h3.wp-block-heading .time.am10 {
	background-image: url(../images/page/facility/icon_am_10.svg);
}
body.facility section.sample .box .item .text h3.wp-block-heading .time.pm12 {
	background-image: url(../images/page/facility/icon_pm_12.svg);
}
body.facility section.sample .box .item .text h3.wp-block-heading .time.pm14 {
	background-image: url(../images/page/facility/icon_pm_14.svg);
}
body.facility section.sample .box .item .text h3.wp-block-heading .time.pm16 {
	background-image: url(../images/page/facility/icon_pm_16.svg);
}
body.facility section.sample .box .item .text h3.wp-block-heading .time.pm18 {
	background-image: url(../images/page/facility/icon_pm_18.svg);
}
body.facility section.sample .box .item .text h3.wp-block-heading .time.pm21 {
	background-image: url(../images/page/facility/icon_pm_21.svg);
}
body.facility section.sample .box .item .text p {
	font-size: clamp(0.875rem, calc(0.77rem + 0.449vw), 1rem); /* min: 14px, max: 16px */
}
@media only screen and (max-width: 980px) {
	body.facility section.sample .object-bird {
		top: -5%;
		right: -2.5%;
	}
	body.facility section.sample .box .item {
		width: 100% !important;
	}
}
@media only screen and (max-width: 468px) {
	body.facility section.sample .object-bird {
		top: -1.5%;
		right: -2%;
	}
	body.facility section.sample .box .item {
		display: block;
	}
	body.facility section.sample .box .item .text h3.wp-block-heading {
		margin-top: 1.5em;
	}
}

/*event ---------------------------------------------------------------------*/
body.facility section.event::before {
	content: "";
	width: 100vw;
	min-width: 375px;
	height: 60%;
	background: var(--color-beige);
	position: absolute;
	left: 50%;
	bottom: 0;
	translate: -50% 0;
	z-index: -1;
}
body.facility section.event.object-wave.beige::after {
	top: 40%;
	translate: -50% -99%;
}
body.facility section.event .inner.event-list .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 50px 2.5%;
}
body.facility section.event .inner.event-list .item {
	width: 23%;
	max-width: 360px;
	display: flex;
	flex-direction: column;
	gap: 50px;
	position: relative;
	z-index: 1;
}
body.facility section.event .inner.event-list .item h3 {
	color: #fff;
	font-size: clamp(2rem, calc(1.263rem + 3.146vw), 2.875rem); /* min: 32px, max: 46px */
	line-height: 1;
	width: 1.875em;
	aspect-ratio: 1 / 1;
	background: var(--color-main);
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	filter: drop-shadow(5px 5px 0px rgba(255, 255, 255, 1));
}
body.facility section.event .inner.event-list .item.spring h3 {
	background: var(--color-red);
}
body.facility section.event .inner.event-list .item.summer h3 {
	background: var(--color-main);
}
body.facility section.event .inner.event-list .item.autumn h3 {
	background: var(--color-accent);
}
body.facility section.event .inner.event-list .item.winter h3 {
	background: #7cccf0;
}
body.facility section.event .inner.event-list .item .image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 100%;
	filter: drop-shadow(5px 5px 0px rgba(124, 204, 240, 0.5));
}
body.facility section.event .inner.event-list .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;
}
body.facility section.event .inner.event-list .item .text h4 {
	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: var(--color-beige);
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% -50%;
	z-index: 2;
}
body.facility section.event .inner.event-list .item .text p {
	font-size: clamp(0.875rem, calc(0.77rem + 0.449vw), 1rem); /* min: 14px, max: 16px */
}

body.facility section.event .inner.hospital {
	padding-top: 100px;
}
body.facility section.event .inner.hospital .box {
	width: 100%;
	display: grid;
	grid-template-columns: minmax(200px, 40%) 1fr;
	align-items: center;
	gap: 50px 5%;
	background: #fff;
	border: 5px solid var(--color-main);
	border-radius: 20px;
	padding: 75px 40px 40px;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}
body.facility section.event .inner.hospital .mid-s {
	width: 80%;
	max-width: 700px;
	gap: 0 0.5em;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% -50%;
	z-index: 1;
}
body.facility section.event .inner.hospital .image img {
	border-radius: 20px;
	filter: drop-shadow(5px 5px 0px rgba(124, 204, 240, 0.5));
}
body.facility section.event .inner.hospital .text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
body.facility section.event .inner.hospital .text h4 {
	font-size: clamp(1.375rem, calc(1.059rem + 1.348vw), 1.75rem); /* min: 22px, max: 28px */
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
body.facility section.event .inner.hospital .text h4 span {
	color: #fff;
	font-size: clamp(1rem, calc(0.895rem + 0.449vw), 1.125rem); /* min: 16px, max: 18px */
	background: var(--color-accent);
	padding: 0.5em;
}
@media only screen and (max-width: 980px) {
	body.facility section.event .inner.event-list .box {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 50px 5%;
	}
	body.facility section.event .inner.event-list .item {
		width: 47.5%;
		gap: 35px;
	}
	body.facility section.event .inner.event-list .item:nth-of-type(1) .text h4,
	body.facility section.event .inner.event-list .item:nth-of-type(2) .text h4 {
		background: #fff;
	}
}
@media only screen and (max-width: 820px) {
	body.facility section.event .inner.hospital .box {
		display: flex;
		flex-direction: column;
		gap: 50px;
		padding: 60px 7.5% 30px;
	}
}
@media only screen and (max-width: 468px) {
	body.facility section.event .inner.event-list .box {
		gap: 30px 5%;
	}
	body.facility section.event .inner.event-list .item {
		width: 100%;
	}
	body.facility section.event .inner.event-list .item .text {
		gap: 10px;
		padding-top: 35px;
	}
}

/* =========================================================================================
SERVICE
=========================================================================================*/
body.service .page-header {
	background-image: url(../images/page/page_header_service.webp);
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/*for-you -----------------------------------------------------------------------------*/
body.service section.for-you::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;
}
body.service section.for-you .inner > dl {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: stretch;
	gap: 0;
	border: 5px solid;
	border-radius: 20px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
body.service section.for-you .inner > dl::after {
	content: "";
	width: 10%;
	max-width: 100px;
	min-width: 75px;
	aspect-ratio: 1 / 1;
	background: no-repeat center / contain;
	border: 5px solid;
	border-radius: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: 5;
}
body.service section.for-you .inner > dl + dl {
	margin-top: 50px;
}
body.service section.for-you .inner > dl dt,
body.service section.for-you .inner > dl dd {
	font-size: clamp(1.75rem, calc(0.132rem + 3.158vw), 2.5rem); /* min: 28px, max: 40px */ /* min: 32px, max: 40px */
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding-block: 20px;
}
body.service section.for-you .inner > dl dt {
	padding-inline: 20px 40px;
}
body.service section.for-you .inner > dl dd {
	background: #fff;
	padding-inline: 40px 20px;
}
body.service section.for-you .inner > dl dt span,
body.service section.for-you .inner > dl dd span {
	font-size: clamp(1.125rem, calc(1.02rem + 0.449vw), 1.25rem); /* min: 18px, max: 20px */
	font-weight: var(--weight-bold);
	line-height: 1.5;
	padding: 0.25em 0.75em;
	border-radius: 10px;
	background: var(--color-gray);
}

/*老人ホーム*/
body.service section.for-you .inner > dl.nursing-home {
	border-color: var(--color-red);
}
body.service section.for-you .inner > dl.nursing-home::after {
	background-image: url(../images/page/service/arrow_red.svg);
	border-color: #fff;
}
body.service section.for-you .inner > dl.nursing-home dt {
	color: #fff;
	background: var(--color-red);
}
body.service section.for-you .inner > dl.nursing-home dt span {
	color: var(--color-red);
	background: #fff;
}
body.service section.for-you .inner > dl.nursing-home dd {
	color: var(--color-red);
}
body.service section.for-you .inner > dl.nursing-home dd span {
	color: #fff;
	background: var(--color-red);
}
/*在宅*/
body.service section.for-you .inner > dl.at-home {
	border-color: var(--color-green);
}
body.service section.for-you .inner > dl.at-home::after {
	background-image: url(../images/page/service/arrow_green.svg);
	border-color: var(--color-green);
}
body.service section.for-you .inner > dl.at-home dt {
	color: #fff;
	background: var(--color-green);
}
body.service section.for-you .inner > dl.at-home dt span {
	color: var(--color-green);
	background: #fff;
}
body.service section.for-you .inner > dl.at-home dd {
	color: var(--color-green);
}
body.service section.for-you .inner > dl.at-home dd span {
	color: #fff;
	background: var(--color-green);
}
@media only screen and (max-width: 820px) {
	body.service section.for-you .inner > dl {
		grid-template-columns: repeat(1, 1fr);
	}
	body.service section.for-you .inner > dl::after {
		transform: rotate(90deg);
	}
	body.service section.for-you .inner > dl dt,
	body.service section.for-you .inner > dl dd {
		font-size: clamp(1.75rem, calc(1.118rem + 2.697vw), 2.5rem); /* min: 28px, max: 40px */
	}
	body.service section.for-you .inner > dl dt {
		padding-block: 20px 50px;
		padding-inline: 20px;
	}
	body.service section.for-you .inner > dl dd {
		padding-block: 50px 20px;
		padding-inline: 20px;
	}
}
@media only screen and (max-width: 468px) {
}

/*services -----------------------------------------------------------------------------*/
body.service section.services::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;
}
body.service section.services.object-wave.beige::after {
	top: 30%;
	translate: -50% -99%;
	transform: scale(1, -1);
}
body.service section.services .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: -2.5%;
	right: 3%;
	z-index: 1;
	opacity: 0;
}
body.service section.services .box {
	display: flex;
	flex-wrap: wrap;
	gap: 75px 7.5%;
}
body.service section.services .box .item {
	width: calc((100% - 7.5%) / 2);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #fff;
	border: 5px solid;
	border-radius: 20px;
}
body.service section.services .box .item h3 {
	font-size: clamp(1.75rem, calc(0.132rem + 3.158vw), 2.5rem); /* min: 28px, max: 40px */
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 20px;
}
body.service section.services .box .item h3 span {
	font-size: clamp(1.125rem, calc(1.02rem + 0.449vw), 1.25rem); /* min: 18px, max: 20px */
	font-weight: var(--weight-bold);
	line-height: 1.5;
	padding: 0.25em 0.75em;
	border-radius: 10px;
	background: var(--color-gray);
}
body.service section.services .box .item .text {
	display: flex;
	flex-direction: column;
	gap: 25px;
	padding-block: 50px 30px;
	padding-inline: 30px;
}
body.service section.services .box .item .text .recommendation {
	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 30px 20px;
	position: relative;
	z-index: 1;
}
body.service section.services .box .item .text .recommendation h4 {
	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;
	white-space: nowrap;
	width: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding-inline: 0.5em;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% -50%;
	z-index: 2;
}
body.service section.services .box .item .text .bg-beige h4 {
	margin-bottom: 0.75em;
}
body.service section.services .box .item .text .bg-beige ul {
	margin-bottom: 0;
}
body.service section.services .box .item .text li {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: left;
}
body.service section.services .box .item .text .btn a {
	min-width: auto;
}
/*老人ホーム*/
body.service section.services .box .item.nursing-home {
	border-color: var(--color-red);
}
body.service section.services .box .item.nursing-home h3 {
	color: #fff;
	background: var(--color-red);
}
body.service section.services .box .item.nursing-home h3 span {
	color: var(--color-red);
	background: #fff;
}
body.service section.services .box .item.nursing-home dd {
	color: var(--color-red);
}
body.service section.services .box .item.nursing-home .text .recommendation {
	border: 5px solid rgba(242, 111, 89, 0.3);
}
body.service section.services .box .item.nursing-home h4 {
	color: var(--color-red) !important;
}
/*在宅*/
body.service section.services .box .item.at-home {
	border-color: var(--color-green);
}
body.service section.services .box .item.at-home h3 {
	color: #fff;
	background: var(--color-green);
}
body.service section.services .box .item.at-home h3 span {
	color: var(--color-green);
	background: #fff;
}
body.service section.services .box .item.at-home dd {
	color: var(--color-green);
}
body.service section.services .box .item.at-home .text .recommendation {
	border: 5px solid rgba(0, 179, 139, 0.3);
}
body.service section.services .box .item.at-home h4 {
	color: var(--color-green) !important;
}
@media only screen and (max-width: 980px) {
	body.service section.services .box {
		width: 100%;
		max-width: 700px;
		gap: 50px;
		margin-inline: auto;
	}
	body.service section.services .box .item {
		width: 100%;
	}
}
@media only screen and (max-width: 468px) {
	body.service section.services .box .item .text {
		padding-block: 40px 20px;
		padding-inline: 20px;
	}
	body.service section.services .box .item .text .recommendation {
		padding: 30px 20px 20px;
	}
}

/*comparison -----------------------------------------------------------------------------*/
body.service section.comparison .scroll-table {
	overflow: auto;
}
body.service section.comparison .scroll-table table {
	width: 1200px;
}
body.service section.comparison thead th.nursing-home {
	color: #fff;
	text-align: center;
	background: var(--color-red);
}
body.service section.comparison thead th.at-home {
	color: #fff;
	text-align: center;
	background: var(--color-green);
}
body.service section.comparison th,
body.service section.comparison td {
	border-right: 1px solid #707070;
}
body.service section.comparison th:last-child,
body.service section.comparison td:last-child {
	border-right: none;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/*details -----------------------------------------------------------------------------*/
body.service section.details dl.item {
	background: #fff;
	border: 5px solid;
	border-radius: 20px;
}
body.service section.details dl.item + dl {
	margin-top: 75px;
}
body.service section.details dt.title {
	font-size: clamp(1.75rem, calc(0.132rem + 3.158vw), 2.0rem); /* min: 28px, max: 40px */
	text-align: center;
	font-weight: var(--weight-bold);
	line-height: 1.5;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding-block: 10px 15px;
	padding-inline: 0.5em;
}
body.service section.details dt.title + dd {
	display: flex;
	flex-direction: column;
	gap: 2.5em;
	padding: 50px;
}
/* parts - service-list */
body.service section.details dd .service-list {
	margin-block: 0 1em;
}
body.service section.details dd .service-list > ul.check {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 0.5em 1em;
	margin-block: 1em 0.25em;
}
body.service section.details dd .service-list .box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}
body.service section.details dd .service-list .box .item {
	background: #fff;
	border-radius: 20px;
	padding: 1.25em;
}
body.service section.details dd .service-list .box .item h5.green {
	color: var(--color-green);
}
body.service section.details dd .service-list .box .item h5.red {
	color: var(--color-red);
}
body.service section.details dd .service-list .box .item ul {
	margin-block: 1em 0;
}
/* parts - image-box */
body.service section.details dd .image-box {
	display: grid;
	grid-template-columns: minmax(280px, 32.5%) 1fr;
	gap: 40px;
	padding-block: 0 2.5em;
}
body.service section.details dd .image-box + .image-box {
	border-top: 1px solid #ccc;
	padding-block: 2.5em 1em;
}
body.service section.details dd .image-box .image img {
	border-radius: 20px;
}
body.service section.details dd .image-box .text ul {
	margin-bottom: 0;
}
/* parts - flow */
body.service section.details dd .flow ol.flow {
	margin-block: 1em 0.25em;
}
/* parts - schedule */
body.service section.details dd .schedule {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
	padding-block: 0 1em;
}
body.service section.details dd .schedule dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	align-items: center;
	gap: 1em 0;
	padding-top: 0.5em;
}
body.service section.details dd .schedule dl.time dt {
	color: var(--color-green);
	font-size: 30px;
	font-weight: var(--weight-bold);
	line-height: 1;
	width: 150px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: left;
	gap: 10px;
	background: #fff;
}
body.service section.details dd .schedule dl.time dd {
	font-size: clamp(1.125rem, calc(0.809rem + 1.348vw), 1.2rem); /* min: 18px, max: 24px */
	line-height: 1.5;
	width: calc(100% - 150px);
}
/* parts - text-box */
body.service section.details dd .text-box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}
/* parts - check-list */
body.service section.details dd .check-list > ul.check {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 0.5em 10%;
	margin-block: 1em 0.25em;
}
/* parts - care-manager */
body.service section.details dd .care-manager {
	margin-block: 0 2em;
	position: relative;
	z-index: 1;
}
body.service section.details dd .care-manager > ul.check {
	margin-block: 1em 0;
	width: 50%:
}
@media screen and (max-width: 1200px) {
body.service section.details dd .care-manager > ul.check {
	margin-block: 1em 0;
	width: 100%:
}
}
body.service section.details dd .care-manager .image {
	width: 47%;
	margin-left: 3%;
}
@media screen and (max-width: 1200px) {
body.service section.details dd .care-manager .image {
	width: 70%;
	margin-right: auto;
	margin-left: auto;
margin-top: 3%;
}
}
body.service section.details dd .care-manager-role  {
	display:flex;
	justify-content: space-between;
}
@media screen and (max-width: 1200px) {
body.service section.details dd .care-manager-role  {
	display:block;
}
}
/* parts - contact */
body.service section.details dd .contact {
	text-align: center;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 5px solid var(--color-main);
	border-radius: 20px;
	padding: 60px 10px 30px;
	margin-top: 25px;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}
body.service section.details dd .contact .mid-s {
	color: #fff !important;
	width: 90%;
	max-width: 450px;
	gap: 0;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% -50%;
	z-index: 1;
}
body.service section.details dd .contact p.tel {
	margin-block: 1em 0;
}
body.service section.details dd .contact p.tel a {
	color: var(--color-accent);
	font-size: clamp(1.5rem, calc(0.868rem + 2.697vw), 2.25rem); /* min: 24px, max: 36px */
	font-weight: var(--weight-bold);
	white-space: nowrap;
	text-decoration: none !important;
	opacity: 1 !important;
}
/* color - 老人ホーム */
body.service section.details .item.nursing-home {
	border-color: var(--color-red);
}
body.service section.details .item.nursing-home dt {
	color: #fff;
	background: var(--color-red);
}
body.service section.details .item.nursing-home h3 {
	color: var(--color-red);
}
/* color - 在宅 */
body.service section.details .item.at-home {
	border-color: var(--color-green);
}
body.service section.details .item.at-home dt {
	color: #fff;
	background: var(--color-green);
}
body.service section.details .item.at-home h3 {
	color: var(--color-green);
}
@media only screen and (max-width: 820px) {
	body.service section.details dt.title + dd {
		padding: 40px 30px;
	}
	body.service section.details dd .image-box {
		display: flex;
		flex-direction: column;
	}
	body.service section.details dd .schedule dl.time dt {
		font-size: 28px;
		width: 130px;
	}
	body.service section.details dd .schedule dl.time dd {
		width: calc(100% - 130px);
		padding-top: 0.15em;
	}
	body.service section.details dd .care-manager .image {
		width: 80%;
		max-width: 400px;
		position: static;
		margin: auto;
		translate: 0 1.5em;
	}
}
@media only screen and (max-width: 468px) {
	body.service section.details dt.title + dd {
		padding: 30px 20px;
	}
	body.service section.details dd .service-list .box {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	body.service section.details dd .schedule dl.time dt {
		font-size: 24px;
		width: 105px;
		gap: 5px;
	}
	body.service section.details dd .schedule dl.time dt img {
		width: 1.25em;
	}
	body.service section.details dd .schedule dl.time dd {
		width: calc(100% - 105px);
	}
	body.service section.details dd .text-box {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
}

/*simulator -----------------------------------------------------------------------------*/
body.service section.simulator .bg-beige {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 50px;
}
body.service section.simulator .bg-beige h3.wp-block-heading {
	text-align: center;
}
body.service section.simulator .form-section {
	width: 100%;
	margin-bottom: 30px;
}
body.service section.simulator .form-group {
	border-bottom: 1px solid #707070;
	padding-block: 30px;
}
body.service section.simulator .form-group:last-child {
	border: none;
}
body.service section.simulator .form-group .box {
	width: 100%;
	max-width: var(--contents-width-small);
	display: grid;
	grid-template-columns: 220px 1fr;
	align-items: center;
	gap: 1em;
	margin: auto;
}
body.service section.simulator .form-group .box label {
	font-size: clamp(1.25rem, calc(1.039rem + 0.899vw), 1.5rem); /* min: 20px, max: 24px */
	font-weight: var(--weight-bold);
	line-height: 1.4;
	display: block;
	padding-left: 1.25em;
	position: relative;
	z-index: 1;
}
body.service section.simulator .form-group .box label::before {
	position: absolute;
	content: "";
	width: 1em;
	aspect-ratio: 1 / 1;
	background: #fff;
	border: 0.34em solid var(--color-green);
	border-radius: 50%;
	top: 0.275em;
	left: 0;
}
body.service section.simulator .form-group .box select {
	font-size: 1em;
	width: 100%;
	border: 1px solid #707070;
	border-radius: 5px;
	background: #fff url(../images/common/icon_dropdown.svg) no-repeat;
	background-position: right 1em center;
	background-size: 1em;
	padding: 0.5em 2em 0.5em 1em;
	transition: border-color 0.3s ease;
}
body.service section.simulator .form-group .box select:focus {
	outline: none;
	border-color: var(--color-green);
}
body.service section.simulator .form-group .box select:disabled {
	background-color: #f5f5f5;
	cursor: not-allowed;
}
body.service section.simulator .result-section {
	width: 100%;
	background: #fff;
	border-radius: 20px;
	padding: 30px 5% 5%;
	display: none; /*最初は非表示*/
}
body.service section.simulator .result-section.show {
	display: block;
}
body.service section.simulator .monthly-cost {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
}
body.service section.simulator .monthly-cost dl {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
body.service section.simulator .monthly-cost dt {
	font-size: clamp(1.125rem, calc(0.704rem + 1.798vw), 1.625rem); /* min: 18px, max: 26px */
	font-weight: bold;
	padding-top: 0.25em;
}
body.service section.simulator .monthly-cost dd {
	color: var(--color-red);
	font-weight: bold;
	line-height: 1;
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 5px;
	justify-content: left;
}
body.service section.simulator .monthly-cost dd .price {
	font-size: clamp(1.75rem, calc(0.065rem + 7.191vw), 3.75rem); /* min: 28px, max: 60px */ /* min: 34px, max: 54px */
}
body.service section.simulator .monthly-cost dd .unit {
	font-size: 1em;
}
body.service section.simulator .monthly-cost ul.note {
	font-size: 0.8em;
}
body.service section.simulator .breakdown-table {
	width: 100%;
	margin-bottom: 30px;
}
body.service section.simulator .breakdown-table th,
body.service section.simulator .breakdown-table td {
	text-align: left;
	padding: 0.5em 1em;
}
body.service section.simulator .breakdown-table th {
	color: #fff;
	background: var(--color-main);
}
body.service section.simulator .breakdown-table td {
	white-space: nowrap;
	border-bottom: 1px dotted #707070;
}
body.service section.simulator .breakdown-table td span {
	display: inline-block;
}
body.service section.simulator .breakdown-table td:last-child {
	text-align: right;
	font-weight: bold;
}
body.service section.simulator .breakdown-table .total-row {
	background-color: #f0f8ff;
	font-weight: bold;
}
body.service section.simulator .notes-area {
	background: #fff5e6;
	border: 1px solid #ffcc80;
	border-radius: 10px;
	padding: 30px;
}
body.service section.simulator .notes-area h4 {
	color: var(--color-red);
	margin-bottom: 0.75em;
}
body.service section.simulator .notes-area ul.list {
	font-size: 0.8em;
}
@media only screen and (max-width: 820px) {
	body.service section.simulator .bg-beige {
		padding: 40px 20px 20px;
	}
	body.service section.simulator .form-group .box {
		width: 90%;
		display: flex;
		flex-direction: column;
		align-items: start;
		gap: 1em;
		margin: auto;
	}
	body.service section.simulator .form-group .box label {
		font-size: clamp(1.25rem, calc(1.039rem + 0.899vw), 1.5rem); /* min: 20px, max: 24px */
		font-weight: var(--weight-bold);
		line-height: 1.4;
		display: block;
	}
	body.service section.simulator .result-section {
		padding: 30px 20px 20px;
	}
	body.service section.simulator .breakdown-table {
		font-size: 0.8em;
	}
	body.service section.simulator .notes-area {
		padding: 20px;
	}
}
@media only screen and (max-width: 468px) {
}

/*faq -----------------------------------------------------------------------------*/
body.service section.faq::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;
}
body.service section.faq dl.faq-block {
	background: #fff;
	border-radius: 20px;
	padding: 50px 5%;
}
body.service section.faq dl.faq-block dt {
	font-size: clamp(1.5rem, calc(1.079rem + 1.798vw), 1.8rem); /* min: 24px, max: 32px */
	font-weight: var(--weight-semibold);
	line-height: 1.4;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 0.25em;
	padding-top: 60px;
}
body.service section.faq dl.faq-block dt:first-child {
	padding-top: 30px;
}
body.service section.faq dl.faq-block dt span {
	color: var(--color-main);
	font-size: 60px;
	font-weight: var(--weight-black);
	line-height: 1;
	letter-spacing: 0.1em;
	translate: 0 -0.2em;
}
body.service section.faq dl.faq-block dd {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 0.75em;
	border-bottom: 1px solid #707070;
	padding-block: 30px 60px;
	padding-inline: 115px 0;
}
body.service section.faq dl.faq-block dd:last-child {
	border: none;
	padding-bottom: 15px;
}
body.service section.faq dl.faq-block dd span {
	color: var(--color-red);
	font-size: 60px;
	font-weight: var(--weight-black);
	line-height: 1;
	letter-spacing: 0.1em;
	translate: 0 -0.3em;
}
@media only screen and (max-width: 820px) {
	body.service section.faq dl.faq-block {
		padding: 50px 30px;
	}
	body.service section.faq dl.faq-block dt {
		padding-top: 50px;
	}
	body.service section.faq dl.faq-block dd {
		padding-inline: 45px 0;
		padding-bottom: 40px;
	}
	body.service section.faq dl.faq-block dd span,
	body.service section.faq dl.faq-block dt span {
		font-size: 50px;
	}
}
@media only screen and (max-width: 468px) {
	body.service section.faq dl.faq-block dt {
		padding-top: 40px;
	}
	body.service section.faq dl.faq-block dt:first-child {
		padding-top: 0;
	}
	body.service section.faq dl.faq-block dd {
		padding-inline: 0;
		padding-bottom: 30px;
	}
	body.service section.faq dl.faq-block dd:last-child {
		padding-bottom: 0;
	}
	body.service section.faq dl.faq-block dd span,
	body.service section.faq dl.faq-block dt span {
		font-size: 40px;
	}
}
/* =========================================================================================
GUIDE
=========================================================================================*/
body.guide .page-header {
	background-image: url(../images/page/page_header_guide.webp);
}
/* process  -------------------------------------------------------------------------*/
body.guide section.process::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;
}
body.guide section.process.object-wave.beige::after {
	top: 30%;
	translate: -50% -99%;
	transform: scale(1, -1);
}
body.guide section.process .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: 5%;
	right: 3%;
	z-index: 1;
	opacity: 0;
}
body.guide section.process .parts-tabs .tab-list {
	grid-template-columns: repeat(4, 1fr);
}
body.guide section.process .parts-tabs .tab-list .tab-item {
	font-size: clamp(1.25rem, calc(0.441rem + 1.579vw), 1.425rem); /* min: 20px, max: 26px */
	text-align: center;
	line-height: 1.3;
	min-height: 65px;
	flex-direction: row;
	flex-wrap: wrap;
}
body.guide section.process .tab-panel > .box {
	display: flex;
	flex-direction: column;
	gap: 2.5em;
}
body.guide section.process .tab-panel .box .image img {
	border-radius: 20px;
}
body.guide section.process .tab-panel .box h3.wp-block-heading {
	border-bottom: 1px solid #ccc;
	padding-bottom: 0.5em;
	margin-block: 1em 0;
}
body.guide section.process .tab-panel .box .bg-beige {
	padding: 0.75em 1em;
}
body.guide section.process .tab-panel .box .bg-beige ul {
	margin-block: 0;
}
body.guide section.process .tab-panel .box p + .bg-beige {
	margin-top: 1em;
}
/* download */
body.guide section.process .tab-panel .box .download {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
body.guide section.process .tab-panel .box .download h4 {
	color: var(--color-main);
	font-size: clamp(1.5rem, calc(0.763rem + 3.146vw), 2.375rem); /* min: 24px, max: 38px */
	margin-bottom: 1em;
}
body.guide section.process .tab-panel .box .download .box {
	width: 100%;
	max-width: 800px;
	border: 5px solid #7cccf0;
	border-radius: 20px;
	display: flex;
	align-items: start;
	justify-content: left;
	gap: 0;
	position: relative;
	z-index: 1;
}
/* 
body.guide section.process .tab-panel .box .download .box::before {
	content: "";
	width: 1px;
	height: calc(100% - 40px);
	background: #ccc;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: 5;
}
*/
body.guide section.process .tab-panel .box .download .box .item {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 20px 20px 30px;
}
body.guide section.process .tab-panel .box .download .box .item:only-child {
	width: 100%;
}
body.guide section.process .tab-panel .box .download .box .item strong {
	color: var(--color-main);
	font-size: clamp(1.25rem, calc(0.723rem + 2.247vw), 1.875rem); /* min: 20px, max: 30px */
}
/* contact */
body.guide section.process .tab-panel .box .contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 3.5vh;
}
body.guide section.process .tab-panel .box .contact > h4 {
	color: var(--color-main);
	font-size: clamp(1.5rem, calc(0.763rem + 3.146vw), 2.375rem); /* min: 24px, max: 38px */
}
body.guide section.process .tab-panel .box .contact .box {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
	gap: 50px 3.5%;
}
body.guide section.process .tab-panel .box .contact > h4 + .box {
	padding-top: 3em;
}
body.guide section.process .tab-panel .box .contact .box .item {
	font-size: clamp(1rem, calc(0.895rem + 0.449vw), 1.125rem); /* min: 16px, max: 18px */
	width: 100%;
	max-width: 550px;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: start;
	gap: 1em;
	background: #fff;
	background-color: var(--color-beige);
	border-radius: 20px;
	padding: 60px 30px 30px;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}
body.guide section.process .tab-panel .box .contact .box .item .mid-s {
	width: 80%;
	max-width: 400px;
	gap: 0 0.5em;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% -50%;
	z-index: 1;
}
body.guide section.process .tab-panel .box .contact .box .item ul.list li {
	display: grid;
	grid-template-columns: 6em 1fr;
	gap: 0 0.5em;
}
body.guide section.process .tab-panel .box .contact .box .item.visit ul.list li {
	grid-template-columns: 7em 1fr;
}
body.guide section.process .tab-panel .box .contact .box .item strong {
	color: var(--color-main);
	font-size: clamp(1.125rem, calc(0.809rem + 1.348vw), 1.5rem); /* min: 18px, max: 24px */
	line-height: 1.4;
}
body.guide section.process .tab-panel .box .contact .box .item ul.note {
	margin-top: 0;
	margin-bottom: 1em;
}
/* flow */
body.guide section.process .tab-panel .box .flow h4 {
	color: #fff;
	font-size: clamp(1.125rem, calc(0.809rem + 1.348vw), 1.5rem); /* min: 18px, max: 24px */
	line-height: 1.4;
	background: var(--color-green);
	padding: 0.5em;
	margin-bottom: 1.5em;
}
body.guide section.process .tab-panel .box .flow .box {
	display: grid;
	grid-template-columns: minmax(80px, 15%) 1fr;
	align-items: center;
	gap: 30px;
}
body.guide section.process .tab-panel .box .flow .box + .box {
	margin-top: 1.5em;
}
body.guide section.process .tab-panel .box .flow .box .image img {
	border-radius: 0;
}
/* price */
body.guide section.process .tab-panel .box .price h4 {
	color: #fff;
	font-size: clamp(1.125rem, calc(0.914rem + 0.899vw), 1.375rem); /* min: 18px, max: 22px */
	line-height: 1.4;
	background: var(--color-green);
	padding: 0.5em;
}
body.guide section.process .tab-panel .box .price .scroll-table {
	overflow: auto;
	margin-bottom: 1.5em;
}
body.guide section.process .tab-panel .box .price .scroll-table table {
	width: 100%;
	min-width: 680px;
}
body.guide section.process .tab-panel .box .price th,
body.guide section.process .tab-panel .box .price td {
	border-right: 1px solid #707070;
}
body.guide section.process .tab-panel .box .price th:last-child,
body.guide section.process .tab-panel .box .price td:last-child {
	border-right: none;
}
/* price-pdf */
body.guide section.process .tab-panel .box .price-pdf {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 1.5em;
}
body.guide section.process .tab-panel .box .price-pdf .box {
	width: 100%;
	max-width: 800px;
	border: 5px solid #7cccf0;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 30px 20px;
}
body.guide section.process .tab-panel .box .price-pdf .box h4 {
	color: var(--color-main);
	font-size: clamp(1.5rem, calc(0.763rem + 3.146vw), 2.375rem); /* min: 24px, max: 38px */
	margin-bottom: 0.5em;
}
/* area-map */
body.guide section.process .tab-panel .box .area-map {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 1.5em;
}
body.guide section.process .tab-panel .box .area-map h4 {
	color: var(--color-main);
	font-size: clamp(1.5rem, calc(0.763rem + 3.146vw), 2.375rem); /* min: 24px, max: 38px */
	margin-bottom: 1em;
}
/* annotation */
body.guide section.process .tab-panel .box dl.annotation {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 1.5em;
	margin-top: 1.5em;
}
body.guide section.process .tab-panel .box dl.annotation dt {
	color: var(--color-green);
	font-size: clamp(1.125rem, calc(0.809rem + 1.348vw), 1.5rem); /* min: 18px, max: 24px */
	line-height: 1.4;
	font-weight: var(--weight-bold);
}
body.guide section.process .tab-panel .box dl.annotation ul {
	margin-block: 0.175em 0;
}
/* 老人ホーム*/
body.guide section.process .tab-panel.nursing-home .box h3.wp-block-heading {
	color: var(--color-red);
}
/* 在宅*/
body.guide section.process .tab-panel.at-home .box h3.wp-block-heading {
	color: var(--color-green);
}
@media only screen and (max-width: 820px) {
	body.guide section.process .parts-tabs .tab-list {
		grid-template-columns: repeat(2, 1fr);
	}
	body.guide section.process .tab-content {
		padding-inline: 30px;
	}
	body.guide section.process .tab-panel .box .download .box {
		flex-direction: column;
		gap: 40px;
		padding: 20px;
	}
	body.guide section.process .tab-panel .box .download .box::before {
		width: 80%;
		height: 1px;
		translate: -50% calc(-50% + 10px);
	}
	body.guide section.process .tab-panel .box .download .box .item {
		width: 100%;
		padding: 0;
	}
	body.guide section.process .tab-panel .box .contact .box {
		grid-template-columns: repeat(1, 1fr);
	}
	body.guide section.process .tab-panel .box .flow .box {
		align-items: start;
		gap: 25px;
	}
}
@media only screen and (max-width: 468px) {
	body.guide section.process .tab-content {
		padding-inline: 20px;
	}
	body.guide section.process .tab-panel .box .contact .box .item {
		padding: 50px 15px 20px;
	}
	body.guide section.process .tab-panel .box .contact .box .item p {
		padding-inline: 0.5em;
	}
	body.guide section.process .tab-panel .box .contact .box .item ul.list li {
		grid-template-columns: repeat(1, 1fr) !important;
	}
	body.guide section.process .tab-panel .box .flow .box {
		gap: 20px;
	}
	body.guide section.process .tab-panel .box .price dl.annotation {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		align-items: start;
		gap: 0.5em;
	}
}

/* =========================================================================================
MEDICAL CARE
=========================================================================================*/
body.medical-care .page-header {
	background-image: url(../images/page/page_header_medical-care.webp);
}
/* support ------------------------------------------------------------------ */
body.medical-care section.support {
	background: var(--color-beige);
}
body.medical-care section.support .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: 50%;
	right: 1.5%;
	z-index: 1;
	opacity: 0;
}
body.medical-care section.support .inner {
	position: relative;
	z-index: 5;
}
body.medical-care section.support .box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px 5%;
}
body.medical-care section.support .box .item {
	width: 100%;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	background: #fff;
	border: 5px solid var(--color-main);
	border-radius: 20px;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}
body.medical-care section.support .box .item .mid-s {
	width: 100%;
}
body.medical-care section.support .box .item .text {
	width: calc(100% - 30px - 30px);
	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;
	margin: 30px auto 20px;
	position: relative;
	z-index: 1;
}
body.medical-care section.support .box .item .text h4 {
	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: fit-content;
	min-width: 70%;
	max-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;
}
body.medical-care section.support .box .item p {
	width: calc(100% - 30px - 30px);
	margin-bottom: 30px;
}
body.medical-care section.support .box:nth-of-type(2) {
	display: grid;
	grid-template-columns: minmax(300px, 40%) 1fr;
	gap: 30px 5%;
	margin-top: 100px;
}
body.medical-care section.support .box:nth-of-type(2) h3.wp-block-heading {
	color: var(--color-main);
}
body.medical-care section.support .box:nth-of-type(2) .image img {
	border-radius: 20px;
}
@media only screen and (max-width: 820px) {
	body.medical-care section.support .object-bird {
		content: "";
		top: 70%;
		right: -1.5%;
		z-index: 10;
	}
	body.medical-care section.support .box {
		display: flex !important;
		flex-direction: column !important;
	}
}
@media only screen and (max-width: 468px) {
}

/* care -------------------------------------------------------------*/
body.medical-care section.care.object-wave.beige::after {
	top: 0;
	transform: scale(1, -1);
}
body.medical-care section.care .inner > p {
	text-align: center;
	margin-bottom: 5vh;
}
body.medical-care section.care .box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
	gap: 30px 4%;
}
body.medical-care section.care .box .item {
	width: 100%;
	max-width: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: end;
	background: #fff;
	border: 5px solid #7cccf0;
	border-radius: 20px;
	padding: 20px;
	margin: auto;
}
body.medical-care section.care .box .item .image {
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
body.medical-care section.care .box .item h3.wp-block-heading {
	color: var(--color-main);
	text-align: center;
	margin-block: 0.5em;
}
body.medical-care section.care .box .item p {
	flex-grow: 1;
	width: 100%;
	font-size: clamp(1rem, calc(0.895rem + 0.449vw), 1.125rem); /* min: 16px, max: 18px */
	background: var(--color-beige);
	border-radius: 20px;
	padding: 0.75em 1em;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/*rehabilitation ----------------------------------------------------*/
body.medical-care section.rehabilitation {
	padding-bottom: 100px;
}
body.medical-care section.rehabilitation .box {
	display: grid;
	grid-template-columns: 1fr minmax(300px, 42.5%);
	gap: 30px 5%;
}
body.medical-care section.rehabilitation .box h3.wp-block-heading {
	color: var(--color-red);
}
body.medical-care section.rehabilitation .box .image img {
	border-radius: 20px;
}
body.medical-care section.rehabilitation .box .inner-box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px 5%;
	margin-top: 2em;
}
@media only screen and (max-width: 820px) {
	body.medical-care section.rehabilitation {
		padding-bottom: 75px;
	}
	body.medical-care section.rehabilitation .box {
		display: flex;
		flex-direction: column;
	}
}
@media only screen and (max-width: 468px) {
	body.medical-care section.rehabilitation {
		padding-bottom: 50px;
	}
}

/*meal --------------------------------------------------------------------------*/
body.medical-care section.meal .object-bird {
	content: "";
	width: 50%;
	max-width: 500px;
	aspect-ratio: 500 / 355;
	display: block;
	background: url(../images/common/object_bird_03.svg) no-repeat center / contain;
	position: absolute;
	top: 2.5%;
	left: 2.5%;
	z-index: 1;
	opacity: 0;
}
body.medical-care section.meal .inner {
	z-index: 5;
}
body.medical-care section.meal .inner p {
	text-align: center;
}
body.medical-care section.meal .inner.image {
	max-width: var(--contents-width-large);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 60px 4%;
	padding-block: 50px 100px;
}
body.medical-care section.meal .inner.image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 360 / 280;
	object-fit: cover;
	border-radius: 20px;
	filter: drop-shadow(5px 5px 0px rgba(124, 204, 240, 0.5));
}
body.medical-care section.meal .box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 60px 5%;
}
body.medical-care section.meal .box .item {
	text-align: left;
	width: 100%;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	background: #fff;
	border: 5px solid var(--color-main);
	border-radius: 20px;
	padding: 60px 30px 30px;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}
body.medical-care section.meal .box .item .mid-s {
	flex-grow: 1;
	width: 90%;
	max-width: 400px;
	gap: 0 0.5em;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% -50%;
	z-index: 1;
}
body.medical-care section.meal .box .item ul {
	width: 100%;
	max-width: 370px;
}
@media only screen and (max-width: 820px) {
	body.medical-care section.meal .object-bird {
		top: -5%;
	}
	body.medical-care section.meal .box {
		grid-template-columns: repeat(1, 1fr);
		gap: 40px;
	}
	body.medical-care section.meal .box .item {
		padding: 40px 35px 20px;
	}
}
@media only screen and (max-width: 468px) {
	body.medical-care section.meal .inner.image {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		padding-block: 50px;
	}
}

/*prevention ---------------------------------------------------------*/
body.medical-care section.prevention .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;
	left: 2.5%;
	top: -15%;
	z-index: 1;
	opacity: 0;
}
body.medical-care section.prevention .inner {
	z-index: 5;
}
body.medical-care section.prevention .inner p {
	text-align: center;
}
body.medical-care section.prevention .box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 60px 5%;
	margin-top: 100px;
}
body.medical-care section.prevention .box .item {
	text-align: left;
	width: 100%;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	background: #fff;
	border: 5px solid var(--color-main);
	border-radius: 20px;
	padding: 60px 30px 30px;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}
body.medical-care section.prevention .box .item .mid-s {
	flex-grow: 1;
	width: 90%;
	max-width: 400px;
	gap: 0 0.5em;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% -50%;
	z-index: 1;
}
body.medical-care section.prevention .box .item ul {
	width: 100%;
	max-width: 210px;
}
@media only screen and (max-width: 820px) {
	body.medical-care section.prevention .object-bird {
		top: 0;
	}
	body.medical-care section.prevention .box {
		grid-template-columns: repeat(1, 1fr);
		gap: 40px;
		margin-top: 75px;
	}
	body.medical-care section.prevention .box .item {
		padding: 40px 35px 20px;
	}
}
@media only screen and (max-width: 468px) {
	body.medical-care section.prevention .box {
		margin-top: 50px;
	}
}

body.medical-care .entry-content .bg-blue {
	padding-bottom: 50px;
	position: relative;
	z-index: -1;
}
body.medical-care .entry-content .bg-blue::before {
	content: "";
	width: 100vw;
	min-width: 375px;
	height: 80%;
	background: url(../images/common/bg_blue.webp) no-repeat center / cover;
	position: absolute;
	bottom: 0;
	left: 50%;
	translate: -50% 0;
	z-index: -1;
}
body.medical-care .entry-content .bg-blue.object-wave::after {
	top: 20%;
	translate: -50% 0;
}
/* =========================================================================================
ACCESS
=========================================================================================*/
body.access .page-header {
	background-image: url(../images/page/page_header_access.webp);
}

/* access-map ------------------------------------------------------------------ */
body.access section.access-map {
	background: var(--color-beige);
}
body.access section.access-map .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;
	bottom: 10%;
	right: 1.5%;
	z-index: 1;
	opacity: 0;
}
body.access section.access-map .inner {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 5;
}
body.access section.access-map .inner > p {
	margin-bottom: 7.5vh;
}
body.access section.access-map .inner .map {
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}
body.access section.access-map .inner .box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2em;
	padding-top: 2em;
}
body.access section.access-map .inner .box h3 {
	color: var(--color-main);
	font-size: clamp(1.125rem, calc(0.914rem + 0.899vw), 1.375rem); /* min: 18px, max: 22px */
	margin-bottom: 0.5em;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* about ------------------------------------------------------------------ */
body.access section.about::before {
	content: "";
	width: 100vw;
	min-width: 375px;
	height: 70%;
	background: var(--color-beige);
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% 0;
	z-index: -1;
}
body.access section.about.object-wave.beige::after {
	top: 70%;
	translate: -50% -99%;
	transform: scale(1, -1);
}

@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* tour ------------------------------------------------------------------ */
body.access section.tour::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;
}
body.access section.tour .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;
	left: 2.5%;
	bottom: 25%;
	z-index: 1;
	opacity: 0;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
CONTACT
=========================================================================================*/
body.contact #main .inner {
	max-width: var(--contents-width-small);
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
404
=========================================================================================*/
body.error404 .entry-header {
	text-align: center;
	padding: 40px 20px;
	margin: 0;
}
body.error404 .error-message {
	text-align: center;
	padding: 20px;
	margin-bottom: 30px;
}
body.error404 .error-message p img {
	max-width: 300px;
	margin: 0 auto 50px;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
********
=========================================================================================*/
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}
