/* Kaigo LP - scoped styles */

:root {
	--kaigo-black: #3a3434;
	--kaigo-red: #d90000;
	--kaigo-gray: #aaa19f;
	--kaigo-beige: #fcf8f0;
	--kaigo-bubble: #f6f4f3;
	--kaigo-gradient: linear-gradient(90deg, #ff7272 0%, #ffa060 100%);
	--kaigo-shadow: 0 4px 30px rgba(191, 173, 150, 0.3);
	--kaigo-inner: min(1000px, calc(100% - 40px));
	--kaigo-mv-design-width: 1366;
	--kaigo-font: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	--kaigo-font-en: "Montserrat", sans-serif;
	--kaigo-fs-xs: 12px;
	--kaigo-fs-sm: 14px;
	--kaigo-fs-base: 16px;
	--kaigo-fs-md: 18px;
	--kaigo-fs-lg: 20px;
	--kaigo-fs-xl: 22px;
	--kaigo-fs-2xl: 24px;
	--kaigo-fs-3xl: 28px;
	--kaigo-fs-4xl: 30px;
	--kaigo-fs-5xl: 32px;
	--kaigo-fs-6xl: 40px;
	--kaigo-fs-hero-title-sp: 32px;
	--kaigo-fs-hero-title-pc: 60px;
	--kaigo-fs-feature-num-sp: 120px;
	--kaigo-fs-feature-num-pc: 120px;
}

.u-pc {
	display: block;
}
@media (max-width: 768px) {
	.u-pc {
		display: none;
	}
}

.u-sp {
	display: none;
}
@media (max-width: 768px) {
	.u-sp {
		display: block;
	}
}

body.p-kaigo-page {
	margin: 0;
	color: var(--kaigo-black);
	font-family: var(--kaigo-font);
	line-height: 1.8;
	background: #fff;
	overflow-x: hidden;
}

.p-kaigo {
	overflow-x: hidden;
}

.p-kaigo-page * {
	box-sizing: border-box;
}

.p-kaigo-page img {
	max-width: 100%;
	/* width: 107px; */
	height: auto;
	vertical-align: middle;
}
.p-kaigo-page img.p-kaigo-case-card__dots {
	max-width: 100%;
	width: 107px;
}

.l-kaigo-inner {
	width: var(--kaigo-inner);
	margin: 0 auto;
}
.l-kaigo-inner--wide {
	width: min(1160px, calc(100% - 40px));
}

.p-kaigo-text-accent { color: var(--kaigo-red); }
.p-kaigo-text-underline {
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 4px;
	font-weight: 700;
}
@media (max-width: 768px) {
	.p-kaigo-text-underline {
		text-decoration: none;
		background-image: radial-gradient(circle closest-side, currentColor 1.1px, transparent 1.15px);
		background-size: 6px 3px;
		background-position: left calc(100% - 1px);
		background-repeat: repeat-x;
		padding-bottom: 5px;
		-webkit-box-decoration-break: clone;
		box-decoration-break: clone;
	}
}

.p-kaigo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 70px;
	padding: 0 24px;
	border-radius: 100px;
	font-family: var(--kaigo-font-en);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 2px solid var(--kaigo-red);
}
.p-kaigo-btn--primary { background: var(--kaigo-red); color: #fff; }
.p-kaigo-btn--primary:hover { 
	background: #fff!important; 
	color:var(--kaigo-red)!important;
}
.p-kaigo-btn__icon {
	position: relative;
	flex-shrink: 0;
	display: block;
	width: 20px;
	height: 16px;
}
.p-kaigo-btn__icon img {
	position: absolute;
	inset: 0;
	display: block;
	width: 20px;
	height: 16px;
	transition: opacity 0.2s ease;
}
.p-kaigo-btn__icon-hover {
	opacity: 0;
}
.p-kaigo-btn--primary:hover .p-kaigo-btn__icon-default {
	opacity: 0;
}
.p-kaigo-btn--primary:hover .p-kaigo-btn__icon-hover {
	opacity: 1;
}

.p-kaigo-btn--outline {
	background: #fff;
	color: var(--kaigo-red);
	border: 2px solid var(--kaigo-red);
}

/* MV wrapper */
.p-kaigo-mv {
	position: relative;
	width: 100%;
}

/* Header */
.p-kaigo-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	width: 100%;
	padding: 0 0 0 20px;
	overflow: visible;
}

.p-kaigo-header a:hover {
	font-weight: bold;
	color: var(--kaigo-red)!important;
}

.p-kaigo-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	width: 100%;
	margin: 0 auto;
	min-height: 90px;
	padding: 0 24px;
	background: #fff;
	border-radius: 0 0 0 40px;
	box-shadow: 0 3px 20px rgba(191, 173, 150, 0.2);
	overflow: visible;
}
.p-kaigo-header__logo picture { display: block; }
.p-kaigo-header__logo img { display: block; width: 252px; height: auto; }
.p-kaigo-header__nav {
	display: flex;
	align-items: center;
	align-self: stretch;
	gap: 30px;
	margin-left: auto;
}
.p-kaigo-header__nav-item {
	position: relative;
}
.p-kaigo-header__nav-item--has-menu {
	align-self: stretch;
	display: flex;
	align-items: center;
}
.p-kaigo-header__nav-item--has-menu > button {
	flex-shrink: 0;
}
.p-kaigo-header__nav-link,
.p-kaigo-header__nav-item > button {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border: 0;
	background: transparent;
	color: var(--kaigo-black);
	font-family: var(--kaigo-font);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease;
}
.p-kaigo-header__nav-link:hover,
.p-kaigo-header__nav-item > button:hover,
.p-kaigo-header__nav-item.is-open > button {
	color: var(--kaigo-red);
}
.p-kaigo-header__chevrons {
	position: relative;
	flex-shrink: 0;
	width: 12px;
	height: 24px;
}
.p-kaigo-header__chevron {
	position: absolute;
	inset: 0;
	display: block;
	width: 12px;
	height: 24px;
	transition: opacity 0.2s ease;
}
.p-kaigo-header__chevron--active {
	opacity: 0;
}
.p-kaigo-header__nav-link:hover .p-kaigo-header__chevron--default,
.p-kaigo-header__nav-item > button:hover .p-kaigo-header__chevron--default,
.p-kaigo-header__nav-item.is-open .p-kaigo-header__chevron--default {
	opacity: 0;
}
.p-kaigo-header__nav-link:hover .p-kaigo-header__chevron--active,
.p-kaigo-header__nav-item > button:hover .p-kaigo-header__chevron--active,
.p-kaigo-header__nav-item.is-open .p-kaigo-header__chevron--active {
	opacity: 1;
}
.p-kaigo-mega {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	z-index: 120;
	width: 882px;
	max-width: calc(100vw - 40px);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(-8px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	pointer-events: none;
}
.p-kaigo-header__nav-item.is-open .p-kaigo-mega {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
.p-kaigo-mega__panel {
	display: grid;
	grid-template-columns: minmax(0, 326px) minmax(0, 230px) minmax(0, 1fr);
	min-height: 274px;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 1px 20px rgba(191, 173, 150, 0.4);
	overflow: hidden;
}
.p-kaigo-mega__intro {
	padding: 20px 24px 20px 30px;
}
.p-kaigo-mega__lead {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
	color: var(--kaigo-black);
}
.p-kaigo-mega__title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--kaigo-black);
	text-decoration: none;
	transition: color 0.2s ease;
}
.p-kaigo-mega__icon {
	position: relative;
	flex-shrink: 0;
	width: 8px;
	height: 14px;
	transition: transform 0.2s ease;
}
.p-kaigo-mega__icon img {
	position: absolute;
	inset: 0;
	display: block;
	width: 8px;
	height: 14px;
	transform: translateY(1px);
	transition: opacity 0.2s ease;
}
.p-kaigo-mega__icon-hover {
	opacity: 0;
}
.p-kaigo-mega__title:hover,
.p-kaigo-mega__cat:hover,
.p-kaigo-mega__link:hover {
	color: var(--kaigo-red);
}

.p-kaigo-mega__title:hover .p-kaigo-mega__icon {
	transform: translateX(4px);
}

.p-kaigo-mega__cat:hover .p-kaigo-mega__icon {
	transform: translateX(4px);
}

.p-kaigo-mega__cat:hover {
	background-color: #fcf8f0;
}

.p-kaigo-mega__title:hover .p-kaigo-mega__icon-default,
.p-kaigo-mega__cat:hover .p-kaigo-mega__icon-default,
.p-kaigo-mega__link:hover .p-kaigo-mega__icon-default {
	opacity: 0;
}
.p-kaigo-mega__title:hover .p-kaigo-mega__icon-hover,
.p-kaigo-mega__cat:hover .p-kaigo-mega__icon-hover,
.p-kaigo-mega__link:hover .p-kaigo-mega__icon-hover {
	opacity: 1;
}

.p-kaigo-mega__link:hover .p-kaigo-mega__icon {
	transform: translateX(4px);
}
.p-kaigo-mega__categories {
	position: relative;
}
.p-kaigo-mega__categories::before,
.p-kaigo-mega__categories::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 3px;
	z-index: 2;
	pointer-events: none;
	background-image: radial-gradient(circle closest-side, #e1d8c6 1.1px, transparent 1.15px);
	background-size: 3px 6px;
	background-position: center top;
	background-repeat: repeat-y;
}
.p-kaigo-mega__categories::before {
	left: 0;
}
.p-kaigo-mega__categories::after {
	right: 0;
}
.p-kaigo-mega__cat {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	position: relative;
	min-height: 54px;
	padding: 0 20px 0 24px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--kaigo-black);
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}
.p-kaigo-mega__categories .p-kaigo-mega__cat:not(:first-child)::before {
	content: "";
	position: absolute;
	left: 6px;
	right: 6px;
	top: 0;
	height: 3px;
	z-index: 1;
	pointer-events: none;
	background-image: radial-gradient(circle closest-side, #e1d8c6 1.1px, transparent 1.15px);
	background-size: 6px 3px;
	background-position: left center;
	background-repeat: repeat-x;
}
.p-kaigo-mega__cat.is-active {
	background-color: var(--kaigo-beige);
	font-weight: 700;
	color: var(--kaigo-black);
}
.p-kaigo-mega__cat.is-muted {
	font-weight: 500;
	color: var(--kaigo-gray);
}
.p-kaigo-mega__links-area {
	grid-column: 3;
	grid-row: 1;
	position: relative;
	min-height: 100%;
	background: var(--kaigo-beige);
	overflow: hidden;
}
.p-kaigo-mega__links {
	background: var(--kaigo-beige);
}
.p-kaigo-mega__links.is-active:not([hidden]) {
	animation: kaigoMegaLinksIn 0.35s ease;
}
.p-kaigo-mega__links[hidden] {
	display: none;
}
@keyframes kaigoMegaLinksIn {
	from {
		opacity: 0;
		transform: translateX(-16px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
.p-kaigo-mega__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 42px;
	padding: 14px 20px 16px 24px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--kaigo-black);
	text-decoration: none;
	transition: all 0.2s ease;
}
.p-kaigo-mega__link:first-child {
	border-top: 0;
}
.p-kaigo-mega__link:last-child {
	
}

/* Company mega menu */
.p-kaigo-mega--company {
	right: 0;
	left: auto;
	transform: translateY(-8px);
}
.p-kaigo-header__nav-item.is-open .p-kaigo-mega--company {
	transform: translateY(0);
}
.p-kaigo-mega__panel--company {
	grid-template-columns: minmax(0, 326px) minmax(0, 278px) minmax(0, 278px);
	grid-template-rows: repeat(2, 54px);
	min-height: 108px;
}
.p-kaigo-mega__title--solo {
	grid-column: 1;
	grid-row: 1 / span 2;
	align-self: center;
	margin: 0;
	padding: 0 24px 0 30px;
}
.p-kaigo-mega__panel--company > .p-kaigo-mega__cat:nth-child(2) {
	grid-column: 2;
	grid-row: 1;
}
.p-kaigo-mega__panel--company > .p-kaigo-mega__cat:nth-child(3) {
	grid-column: 2;
	grid-row: 2;
}
.p-kaigo-mega__panel--company > .p-kaigo-mega__cat:nth-child(4) {
	grid-column: 3;
	grid-row: 1;
	border-radius: 0 15px 0 0;
}
.p-kaigo-mega__panel--company > .p-kaigo-mega__cat:nth-child(5) {
	grid-column: 3;
	grid-row: 2;
	border-radius: 0 0 15px 0;
}
.p-kaigo-mega__panel--company > .p-kaigo-mega__cat:nth-child(2)::before,
.p-kaigo-mega__panel--company > .p-kaigo-mega__cat:nth-child(3)::before,
.p-kaigo-mega__panel--company > .p-kaigo-mega__cat:nth-child(4)::before,
.p-kaigo-mega__panel--company > .p-kaigo-mega__cat:nth-child(5)::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 3px;
	z-index: 2;
	pointer-events: none;
	background-image: radial-gradient(circle closest-side, #e1d8c6 1.1px, transparent 1.15px);
	background-size: 3px 6px;
	background-position: center top;
	background-repeat: repeat-y;
}
.p-kaigo-mega__panel--company > .p-kaigo-mega__cat:nth-child(3)::after,
.p-kaigo-mega__panel--company > .p-kaigo-mega__cat:nth-child(5)::after {
	content: "";
	position: absolute;
	left: 6px;
	right: 6px;
	top: 0;
	height: 3px;
	z-index: 1;
	pointer-events: none;
	background-image: radial-gradient(circle closest-side, #e1d8c6 1.1px, transparent 1.15px);
	background-size: 6px 3px;
	background-position: left center;
	background-repeat: repeat-x;
}
.p-kaigo-header__cta {
	display: flex;
	background: var(--kaigo-red);
	color: #fff;
	border-radius: 60px;
	padding: 0 20px;
	min-height: 60px;
	align-items: center;
	font-family: var(--kaigo-font-en);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	border: 2px solid var(--kaigo-red);
}
a.p-kaigo-header__cta:hover {
	color:var(--kaigo-red)!important;
	background: #fff!important;
	border-color: var(--kaigo-red)!important;
}
.p-kaigo-header__menu-btn {
	display: none;
	flex-shrink: 0;
	border: 0;
	background: var(--kaigo-red);
	border-radius: 15px 0 0 15px;
	padding: 0;
	cursor: pointer;
	position: relative;
	width: 60px;
	height: 60px;
	overflow: hidden;
	z-index: 1;
}
.p-kaigo-header__menu-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(to right, #ff7272, #ffa060);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}
.p-kaigo-header__menu-icons {
	position: absolute;
	top: 6px;
	left: 50%;
	z-index: 1;
	width: 29px;
	height: 29px;
	transform: translateX(-50%);
}
.p-kaigo-header__menu-icon {
	position: absolute;
	top: 0;
	display: block;
	width: 11px;
	height: 29px;
	transition: transform 0.35s ease;
}
.p-kaigo-header__menu-icon--1 {
	left: 2px;
	transform: translateX(0) rotate(0deg);
}
.p-kaigo-header__menu-icon--2 {
	right: 2px;
	transform: translateX(0) rotate(0deg);
}
.p-kaigo-header__menu-labels {
	position: absolute;
	left: 50%;
	bottom: 5px;
	z-index: 1;
	width: 100%;
	transform: translateX(-50%);
}
.p-kaigo-header__menu-text {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	font-family: var(--kaigo-font-en);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	white-space: nowrap;
	transition: opacity 0.35s ease, transform 0.35s ease;
}
.p-kaigo-header__menu-text--menu {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
.p-kaigo-header__menu-text--close {
	opacity: 0;
	transform: translateX(-50%) translateY(4px);
}
.p-kaigo-header__menu-btn.is-open::before {
	opacity: 1;
}
.p-kaigo-header__menu-btn.is-open .p-kaigo-header__menu-icon--1 {
	transform: translateX(9px) rotate(40deg);
}
.p-kaigo-header__menu-btn.is-open .p-kaigo-header__menu-icon--2 {
	transform: translateX(-9px) rotate(-40deg);
}
.p-kaigo-header__menu-btn.is-open .p-kaigo-header__menu-text--menu {
	opacity: 0;
	transform: translateX(-50%) translateY(-4px);
}
.p-kaigo-header__menu-btn.is-open .p-kaigo-header__menu-text--close {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
.p-kaigo-header.is-menu-open {
	z-index: 210;
	background: transparent;
}
.p-kaigo-header.is-menu-open .p-kaigo-header__logo {
	visibility: hidden;
}

/* SP menu */
.p-kaigo-sp-menu[hidden] { display: none; }
.p-kaigo-sp-menu {
	position: fixed;
	inset: 0;
	z-index: 200;
}
.p-kaigo-sp-menu__overlay {
	position: absolute;
	inset: 0;
	background: #fff;
}
.p-kaigo-sp-menu__panel {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.p-kaigo-sp-menu__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	min-height: 60px;
	padding: 20px 15px;
}
.p-kaigo-sp-menu__logo {
	display: block;
	flex-shrink: 0;
}
.p-kaigo-sp-menu__logo img {
	display: block;
	width: 212px;
	height: auto;
}
.p-kaigo-sp-menu__close {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	border: 0;
	background: linear-gradient(to right, #ff7272, #ffa060);
	border-radius: 0 0 0 20px;
	padding: 0;
	cursor: pointer;
}
.p-kaigo-sp-menu__close img {
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 33px;
	height: 28px;
}
.p-kaigo-sp-menu__close span {
	position: absolute;
	left: 50%;
	bottom: 5px;
	transform: translateX(-50%);
	font-family: var(--kaigo-font-en);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	white-space: nowrap;
}
.p-kaigo-sp-menu__nav {
	padding: 0;
	margin: 40px 0 0;
	-webkit-tap-highlight-color: transparent;
}
.p-kaigo-sp-menu__nav a,
.p-kaigo-sp-menu__nav button {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	outline: none;
}
.p-kaigo-sp-menu__nav a:hover,
.p-kaigo-sp-menu__nav a:active,
.p-kaigo-sp-menu__nav a:focus,
.p-kaigo-sp-menu__nav button:hover,
.p-kaigo-sp-menu__nav button:active,
.p-kaigo-sp-menu__nav button:focus {
	color: var(--kaigo-black) !important;
	font-weight: inherit;
	opacity: 1;
	box-shadow: none;
}
.p-kaigo-sp-menu__toggle,
.p-kaigo-sp-menu__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	min-height: 60px;
	padding: 0 20px;
	border: 0;
	background: #fff;
	text-align: left;
	font-family: var(--kaigo-font);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--kaigo-black);
	text-decoration: none;
	cursor: pointer;
	background-image: radial-gradient(circle, #e1d8c6 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 5px 2px;
}
.p-kaigo-sp-menu__toggle-icon {
	position: relative;
	flex-shrink: 0;
	width: 16px;
	height: 2px;
	background: #3a3434;
	transition: transform 0.3s ease;
}
.p-kaigo-sp-menu__toggle-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 2px;
	height: 16px;
	background: #3a3434;
	transform: translate(-50%, -50%) scaleY(1);
	transform-origin: center;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-kaigo-sp-menu__group.is-open > .p-kaigo-sp-menu__toggle > .p-kaigo-sp-menu__toggle-icon::after,
.p-kaigo-sp-menu__category--has-links [data-kaigo-accordion-group].is-open .p-kaigo-sp-menu__category-toggle .p-kaigo-sp-menu__toggle-icon::after {
	transform: translate(-50%, -50%) scaleY(0);
	opacity: 0;
}
.p-kaigo-sp-menu__category-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 15px 20px 15px 40px;
	border: 0;
	background: transparent;
	text-align: left;
	font-family: var(--kaigo-font);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--kaigo-black);
	cursor: pointer;
	background-image: radial-gradient(circle, #e1d8c6 1px, transparent 1px);
	background-position: left top;
	background-repeat: repeat-x;
	background-size: 5px 2px;
	/* background-color: #fff; */
}
.p-kaigo-sp-menu__category-toggle .p-kaigo-sp-menu__category-label {
	padding: 0;
}
.p-kaigo-sp-menu__category-toggle .p-kaigo-sp-menu__toggle-icon {
	width: 16px;
	height: 2px;
}
.p-kaigo-sp-menu__category-body {
	overflow: hidden;
	height: 0;
	transition: height 0.35s ease;
}
.p-kaigo-sp-menu__link::after {
	content: "";
	flex-shrink: 0;
	width: 6px;
	height: 13px;
	padding: 0 10px 0 0;
	background: url(../images/kaigo/sp/sp-menu-chevron-right.svg) center / contain no-repeat;
}
.p-kaigo-sp-menu__body {
	overflow: hidden;
	height: 0;
	padding: 0;
	background: none;
	transition: height 0.35s ease;
}
.p-kaigo-sp-menu__group.is-open .p-kaigo-sp-menu__body {
	background-image: radial-gradient(circle, #e1d8c6 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 5px 2px;
}
.p-kaigo-sp-menu__group--company .p-kaigo-sp-menu__body {
	background: #fff;
}
.p-kaigo-sp-menu__category-label {
	margin: 0;
	padding: 15px 20px 8px 40px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--kaigo-black);
}
.p-kaigo-sp-menu__category-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 15px 24px 15px 40px;
	/* border-top: 1px dotted var(--kaigo-gray); */
	color: var(--kaigo-black);
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	background-image: radial-gradient(circle, #e1d8c6 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 5px 2px;
	background-color: #fff;
}
.p-kaigo-sp-menu__category-link::after {
	content: "";
	flex-shrink: 0;
	width: 8px;
	height: 13px;
	background: url(../images/kaigo/sp/sp-menu-chevron-right.svg) center / contain no-repeat;
}
.p-kaigo-sp-menu__category-links {
	list-style: none;
	margin: 0;
	padding: 0;
}
.p-kaigo-sp-menu__category-links li {
	background-image: radial-gradient(circle, #e1d8c6 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 5px 2px;
}
.p-kaigo-sp-menu__category-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 15px 24px 15px 60px;
	color: var(--kaigo-black);
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}
.p-kaigo-sp-menu__category-links a::after {
	content: "";
	flex-shrink: 0;
	width: 8px;
	height: 13px;
	background: url(../images/kaigo/sp/sp-menu-chevron-right.svg) center / contain no-repeat;
}
.p-kaigo-sp-menu__group--company .p-kaigo-sp-menu__body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.p-kaigo-sp-menu__group--company .p-kaigo-sp-menu__body li {
	/* border-top: 1px dotted var(--kaigo-gray); */
	background-image: radial-gradient(circle, #e1d8c6 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 5px 2px;
}
.p-kaigo-sp-menu__group--company .p-kaigo-sp-menu__body a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 15px 20px 15px 60px;
	color: var(--kaigo-black);
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}
.p-kaigo-sp-menu__group--company .p-kaigo-sp-menu__body a::after {
	content: "";
	flex-shrink: 0;
	width: 6px;
	height: 12px;
	padding: 0 10px 0 0;
	background: url(../images/kaigo/sp/sp-menu-chevron-right.svg) center / contain no-repeat;
}
.p-kaigo-sp-menu__contact {
	padding: 24px 20px 40px;
	text-align: center;
}
.p-kaigo-sp-menu__contact > p {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
	color: var(--kaigo-black);
}
.p-kaigo-sp-menu__contact > p + .p-kaigo-btn {
	margin-bottom: 24px;
}
.p-kaigo-sp-menu__contact .p-kaigo-btn {
	width: min(335px, 100%);
	min-height: 60px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.8px;
}
.p-kaigo-sp-menu__contact .p-kaigo-btn img {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}
.p-kaigo-sp-menu__hours {
	font-size: 14px;
	font-weight: 700;
	line-height: 2;
}
@media (prefers-reduced-motion: reduce) {
	.p-kaigo-sp-menu__body,
	.p-kaigo-sp-menu__category-body {
		transition: none;
	}
	.p-kaigo-sp-menu__body {
		background: none;
	}
	.p-kaigo-sp-menu__toggle-icon,
	.p-kaigo-sp-menu__toggle-icon::after {
		transition: none;
	}
	.p-kaigo-mega__links.is-active:not([hidden]) {
		animation: none;
	}
	.p-kaigo-header__menu-btn,
	.p-kaigo-header__menu-btn::before,
	.p-kaigo-header__menu-icon,
	.p-kaigo-header__menu-text {
		transition: none;
	}
}

/* Hero */
.p-kaigo-hero {
	position: relative;
	width: 100%;
	background: url(../images/kaigo/mvbg.png) center / cover no-repeat;
	background-size: cover;
	background-position: center bottom;
	border-radius: 0 0 160px 160px;
	overflow: hidden;
}
.p-kaigo-hero__frame {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0 auto;
	/* min-height: 480px; */
	padding: 100px 20px 40px;
	height: 480px;
}
.p-kaigo-hero__content {
	position: relative;
	z-index: 2;
}
.p-kaigo-hero__label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 40px;
	color: var(--kaigo-red);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.05em;
}
.p-kaigo-hero__label img {
	flex-shrink: 0;
	display: block;
	width: 16px;
	height: 2px;
}
.p-kaigo-hero__catch {
	margin: 0 0 10px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
}
.p-kaigo-hero__title {
	margin: 0;
	font-size: 60px;
	font-weight: 900;
	line-height: 1.5;
}

.p-kaigo-hero__title-line {
	display: block;
}
.p-kaigo-hero__title-accent { color: var(--kaigo-red); }
.p-kaigo-hero__title-comma { letter-spacing: -4.8px; }
.p-kaigo-hero__title-tight { letter-spacing: -1.28px; }
.p-kaigo-hero__title-mark {
	position: relative;
	display: inline-block;
}
.p-kaigo-hero__underline {
	position: absolute;
	left: 2%;
	right: 0;
	bottom: -20px;
	display: block;
	width: 105%;
	max-width: 105%!important;
	height: auto;
	pointer-events: none;
}
@media (max-width: 1300px) {
	.p-kaigo-hero__underline {
		bottom: -10px;
	}
}
@media (max-width: 768px) {
	.p-kaigo-hero__underline {
		left: 0;
	}
}
.p-kaigo-hero__visual {
	position: absolute;
	right: 0;
	top: 50%;
	z-index: 1;
	width: 45vw;
	height: 480px;
	margin: 0;
	overflow: hidden;
	transform: translateY(-50%);
	clip-path: inset(0 round 240px 0 0 240px);
	-webkit-clip-path: inset(0 round 240px 0 0 240px);
	pointer-events: none;
}
.p-kaigo-hero__visual img {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 900px;
	height: 570px;
	max-width: none;
	transform: translate(-50%, -50%);
	object-fit: cover;
	object-position: center center;
}

/* Breadcrumb */
.p-kaigo-breadcrumb { 
	padding: 20px 5vw; 
	margin: 0;
	width: 100vw;
	transition: all 0.3s ease;
}

@media (min-width: 1366px) {
	.p-kaigo-breadcrumb {
		padding: 20px 15vw;
	}
}

@media (min-width: 1700px) {

	.p-kaigo-breadcrumb {
		padding: 20px 18vw;
	}
}

.p-kaigo-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 12px;
	color: var(--kaigo-gray);
}
.p-kaigo-breadcrumb__list a { color: var(--kaigo-gray); }
.p-kaigo-breadcrumb__list li:not(:last-child)::after {
	content: url("../images/kaigo/bread-arrow.svg");
	margin-left: 10px;
}
.p-kaigo-breadcrumb__list li:last-child { color: var(--kaigo-black); }

/* Section heading */
.p-kaigo-section { padding: 100px 0; position: relative; }
.p-kaigo-heading { margin-bottom: 40px; }
.p-kaigo-heading__label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}
.p-kaigo-heading__en {
	font-family: var(--kaigo-font-en);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	background: var(--kaigo-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.p-kaigo-heading__title {
	margin: 0;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.5;
}

/* Pain points */
.p-kaigo-pain {
	position: relative;
	overflow: hidden;
	padding: 64px 0 164px;
}
.p-kaigo-pain::before {
	content: url("../images/kaigo/point-ico1.svg");
	position: absolute;
	top: 40px;
	left: calc(50% + 500px);
	width: 100px;
	height: 100px;
	z-index: 1;
}
.p-kaigo-pain::after {
	content: url("../images/kaigo/point-ico2.svg");
	position: absolute;
	top: 460px;
	left: calc(50% - 630px);
	width: 100px;
	height: 100px;
}
.p-kaigo-pain__bg {
	position: absolute;
	inset: 0;
	background: var(--kaigo-beige);
	border-radius: 80px;
	z-index: 0;
}
.p-kaigo-pain__decor {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	border-radius: 80px;
}
.p-kaigo-pain__decor-sparkle,
.p-kaigo-pain__decor-circle {
	position: absolute;
	display: block;
}
.p-kaigo-pain__decor-sparkle {
	top: 38%;
	left: clamp(12px, 8vw, 120px);
	width: clamp(64px, 8vw, 110px);
	display: none;
}
@media (max-width: 768px) {
	.p-kaigo-pain__decor-sparkle {
		display: block;
	}
}
.p-kaigo-pain__decor-sparkle img {
	display: block;
	width: 100%;
	height: auto;
}
.p-kaigo-pain__decor-circle {
	overflow: visible;
}
.p-kaigo-pain__decor-circle img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
}
.p-kaigo-pain__decor-circle--tr {
	top: 9%;
	right: -8%;
	width: clamp(220px, 31vw, 420px);
}
.p-kaigo-pain__decor-circle--tr img {
	position: relative;
	left: -23.81%;
	top: -23.81%;
	width: 147.62%;
}
.p-kaigo-pain__decor-circle--bl {
	bottom: 4%;
	left: -8%;
	width: clamp(190px, 27vw, 367px);
}
.p-kaigo-pain__decor-circle--bl img {
	position: relative;
	left: -27.25%;
	top: -27.25%;
	width: 154.5%;
}
.p-kaigo-pain__decor-accent {
	display: none;
	position: absolute;
}
.p-kaigo-pain__decor-accent img {
	display: block;
	width: 100%;
	height: auto;
}
.p-kaigo-pain .l-kaigo-inner {
	position: relative;
	z-index: 1;
}
.p-kaigo-pain__grid {
	display: grid;
	gap: 32px;
}
.p-kaigo-pain__item {
	position: relative;
	display: grid;
	grid-template-columns: 100px minmax(0, 1fr);
	align-items: end;
	width: 100%;
	max-width: 322px;
	min-height: 175px;
	margin: 0 auto;
}
.p-kaigo-pain__item:first-of-type,
.p-kaigo-pain__item:nth-of-type(3) {
	transform: translateY(50px);
}

.p-kaigo-pain__photo {
	grid-column: 1;
	grid-row: 1;
	width: 100px;
	height: 100px;
}
.p-kaigo-pain__photo img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.p-kaigo-pain__bubble {
	position: relative;
	grid-column: 2;
	grid-row: 1;
	align-self: start;
	width: 100%;
	max-width: 232px;
	margin-left: -10px;
	padding: 25px 20px 20px;
	background: var(--kaigo-bubble);
	border-radius: 40px 40px 40px 8px;
}
.p-kaigo-pain__bubble p { margin: 0; font-size: 14px; font-weight: 700; line-height: 1.8; }
.p-kaigo-pain__line {
	position: absolute;
	top: 0;
	right: 10px;
	width: 29px;
	height: 34px;
	transform: translateY(-35%);
}

/* Reasons */
.p-kaigo-section.p-kaigo-reasons {
	position: relative;
	border-radius: 150px;
	overflow: hidden;
}
.p-kaigo-reasons__bg {
	position: absolute;
	inset: 0;
	background: var(--kaigo-beige);
	border-radius: 150px;
	z-index: 0;
}
.p-kaigo-reasons__decor {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	border-radius: 150px;
}
.p-kaigo-reasons__decor-circle {
	position: absolute;
	display: block;
	overflow: visible;
}
.p-kaigo-reasons__decor-circle img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
}
.p-kaigo-reasons__decor-circle--tr {
	top: 2%;
	left: calc(50% + 510px);
	width: clamp(220px, 31vw, 420px);
}
.p-kaigo-reasons__decor-circle--tr img {
	position: relative;
	left: -23.81%;
	top: -23.81%;
	width: 147.62%;
}
.p-kaigo-reasons__decor-circle--bl {
	bottom: 16%;
	left: calc(50% - 850px);
	width: clamp(190px, 27vw, 367px);
}
.p-kaigo-reasons__decor-circle--bl img {
	position: relative;
	left: -27.25%;
	top: -27.25%;
	width: 154.5%;
}
.p-kaigo-reasons .l-kaigo-inner {
	position: relative;
	z-index: 1;
}
.p-kaigo-reasons__grid {
	display: grid;
	gap: 32px;
}
.p-kaigo-reason-card__image {
	height: 220px;
	border-radius: 40px;
	overflow: hidden;
}
@media (max-width: 768px) {
	.p-kaigo-reason-card__image {
		height: auto;
	}
}
.p-kaigo-reason-card__image img {
	width: 100%;
	border-radius: 40px;
	object-fit: cover;
}
.p-kaigo-reason-card__num {
	margin: -40px 0 -10px;
	font-family: var(--kaigo-font-en);
	font-size: var(--kaigo-fs-lg);
	font-weight: 700;
	color: var(--kaigo-red);
}
@media (max-width: 768px) {
	.p-kaigo-reason-card__num {
		margin: -35px 0 -10px;
	}
}
.p-kaigo-reason-card__title {
	margin: 0 0 12px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
}
.p-kaigo-reason-card__body { margin: 0; font-size: 16px; line-height: 2; }

/* Features */
.p-kaigo-features__list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.p-kaigo-feature {
	position: relative;
}
.p-kaigo-feature__card {
	position: relative;
	display: grid;
	gap: 20px;
	padding: 40px 15px 40px;
	background: linear-gradient(270deg, #FFF0E7 0%, #FFF 100%);
	border-radius: 40px;
	overflow: visible;
}
.p-kaigo-feature__num {
	position: absolute;
	top: -32px;
	right: 15px;
	margin: 0;
	font-family: var(--kaigo-font-en);
	font-size: var(--kaigo-fs-feature-num-sp);
	font-weight: 700;
	line-height: 1;
	background: linear-gradient(180deg, #ffcdba 26.67%, #fff0e7 73.85%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	pointer-events: none;
}
.p-kaigo-feature:nth-child(even) .p-kaigo-feature__num {
	right: auto;
	left: 15px;
}
.p-kaigo-feature__image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 460 / 301;
	border-radius: 40px;
	object-fit: cover;
}
.p-kaigo-feature__title {
	margin: 0 0 20px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.6;
}
.p-kaigo-feature__body p {
	margin: 0;
	font-size: 16px;
	line-height: 2;
}
.p-kaigo-feature__body p + p {
	margin-top: 15px;
}

/* CTA */
.p-kaigo-cta-mid,
.p-kaigo-contact {
	position: relative;
	padding: 64px 0;
}
.p-kaigo-cta-mid .l-kaigo-inner {
	position: relative;
	z-index: 5;
}
.p-kaigo-cta-mid__bg,
.p-kaigo-contact__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background-color: #ff7272;
}
.p-kaigo-cta-mid__bg::before,
.p-kaigo-contact__bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
	width: max(1920px, 100%);
	background: url("../images/kaigo/contact-bg.png") center / cover no-repeat;
	pointer-events: none;
}
.p-kaigo-cta-mid__bg-ellipse,
.p-kaigo-cta-mid__bg-pattern,
.p-kaigo-contact__bg-ellipse,
.p-kaigo-contact__bg-pattern {
	display: none;
	position: absolute;
	pointer-events: none;
}
.p-kaigo-cta-mid__bg-ellipse img,
.p-kaigo-cta-mid__bg-pattern img,
.p-kaigo-contact__bg-ellipse img,
.p-kaigo-contact__bg-pattern img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
}
.p-kaigo-cta-mid__card,
.p-kaigo-contact__card {
	position: relative;
	background: #fff;
	border-radius: 40px;
	padding: 40px 24px;
	text-align: center;
}
.p-kaigo-cta-mid__card {
	padding: 40px 80px;
}
.p-kaigo-contact__card {
	padding: 40px 80px;
}
.p-kaigo-cta-mid__label,
.p-kaigo-contact__label {
	font-family: var(--kaigo-font-en);
	font-size: 32px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	background: linear-gradient(180deg, #ffcdba 26.67%, #fff 88.67%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.p-kaigo-cta-mid__label,
.p-kaigo-contact__label {
	line-height: 1;
	margin: 0 0 -20px;
}
.p-kaigo-cta-mid__title,
.p-kaigo-contact__title {
	margin: -10px 0 16px;
	font-size: 24px;
	font-weight: 700;
}
.p-kaigo-cta-mid__lead,
.p-kaigo-contact__lead {
	margin: 0 0 30px;
	font-size: 16px;
	line-height: 2;
}
.p-kaigo-cta-mid__actions,
.p-kaigo-contact__actions {
	display: grid;
	gap: 24px;
}
.p-kaigo-cta-mid__action p,
.p-kaigo-contact__action p { margin: 0 0 12px; font-weight: 700; }
.p-kaigo-cta-mid__tel,
.p-kaigo-contact__tel {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--kaigo-font-en);
	font-size: 40px;
	font-weight: 700;
	color: var(--kaigo-black);
	text-decoration: none;
	line-height: 1;
}
.p-kaigo-cta-mid__hours,
.p-kaigo-contact__hours { margin-top: 8px; font-size: 14px; font-weight: 700; }
.p-kaigo-cta-mid__tel-btn,
.p-kaigo-contact__tel-btn {
	display: none;
}

/* Facility */
.p-kaigo-facility__bg {
	position: absolute;
	inset: 0;
	background: var(--kaigo-beige);
	z-index: -1;
	border-radius: 0 0 160px 160px;
}
.p-kaigo-facility__lead { margin: 0 0 32px; font-size: 16px; line-height: 2; }
.p-kaigo-facility__layout { display: grid; gap: 24px; }
.p-kaigo-facility__tabs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}
.p-kaigo-facility__tab {
	display: flex;
	align-items: center;
	font-weight: 700;
	gap: 6px;
	min-height: 50px;
	padding: 12px 10px;
	border: 0;
	font-size: 16px;
	border-radius: 16px;
	background: var(--kaigo-beige);
	cursor: pointer;
	text-align: left;
	color: var(--kaigo-black);
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	border: 2px solid var(--kaigo-black);
}
.p-kaigo-facility__tab.is-active {
	background: var(--kaigo-red);
	color: var(--kaigo-beige);
	box-shadow: none;
	border-color: var(--kaigo-red);
}
.p-kaigo-facility__tab-num {
	flex: 0 0 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid transparent;
	border-radius: 50%;
	background: #fff;
	color: var(--kaigo-red);
	font-family: var(--kaigo-font-en);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}
.p-kaigo-facility__tab:not(.is-active) .p-kaigo-facility__tab-num {
	background: var(--kaigo-beige);
	color: var(--kaigo-black);
	border-color: transparent;
}
.p-kaigo-facility__tab.is-active .p-kaigo-facility__tab-num {
	background: var(--kaigo-beige);
	color: var(--kaigo-red);
	border-color: #fff;
}
.p-kaigo-facility__tab-label {
	font-family: var(--kaigo-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}
.p-kaigo-facility__tab.is-active .p-kaigo-facility__tab-label {
	font-weight: 700;
	font-family: var(--kaigo-font);
}
.p-kaigo-facility__panels {
	position: relative;
	min-width: 0;
}
.p-kaigo-facility__panel[hidden] {
	display: none !important;
}
.p-kaigo-facility__panel {
	overflow: hidden;
	background: #fff;
	border-radius: 40px;
	box-shadow: var(--kaigo-shadow);
}
.p-kaigo-facility__panel-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px 20px 16px;
	position: relative;
}
.p-kaigo-facility__panel-head:after {
	content: url(../images/kaigo/line-under.svg);
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}
.p-kaigo-facility__panel-num {
	flex: 0 0 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--kaigo-red);
	color: #fff;
	font-family: var(--kaigo-font-en);
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}
.p-kaigo-facility__panel-head h3 {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
}
.p-kaigo-facility__panel-body {
	display: flex;
	flex-direction: column;
}
.p-kaigo-facility__row {
	display: grid;
	gap: 16px;
	padding: 20px;
}
.p-kaigo-facility__row--issue {
	padding-bottom: 8px;
}

.p-kaigo-facility__row--issue .p-kaigo-facility__label-icon {
	transform-origin: center center;
	transform: rotate(-33deg);
}
.p-kaigo-facility__row--solution {
	padding-top: 24px;
	background: linear-gradient(90deg, rgba(255,114,114,.1) 0%, rgba(255,160,96,.1) 100%);
}
.p-kaigo-facility__row--solution .p-kaigo-facility__text {
	font-weight: 700;
	font-size: 20px;
}
.p-kaigo-facility__row--solution .p-kaigo-facility__label {
	font-size: 18px;
}
.p-kaigo-facility__row--solution .p-kaigo-facility__label-icon {
	width: 40px;
	height: 40px;
}

.p-kaigo-facility__label-col {
	display: grid;
	justify-items: center;
	gap: 8px;
	text-align: center;
}
.p-kaigo-facility__label-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}
.p-kaigo-facility__label-icon img {
	display: block;
}
.p-kaigo-facility__label {
	margin: 0;
	font-size: var(--kaigo-fs-base);
	font-weight: 500;
	line-height: 1.5;
}
.p-kaigo-facility__label--accent {
	color: var(--kaigo-red);
	font-weight: 700;
}
.p-kaigo-facility__text {
	margin: 0;
	font-size: var(--kaigo-fs-base);
	font-weight: 500;
	line-height: 2;
}
.p-kaigo-facility__arrow-wrap {
	display: flex;
	justify-content: center;
	padding: 4px 0;
}
.p-kaigo-facility__arrow {
	display: block;
	width: 20px;
	height: 34px;
}

/* Slider */
.p-kaigo-slider { position: relative; }
.p-kaigo-slider__track {
	display: flex;
	gap: 24px;
	transition: transform .4s ease;
	position: relative;
	z-index: 2;
}

.p-kaigo-cases__stage::before {
	content: url(../images/kaigo/popular-ico1.png);
	position: absolute;
	right: calc(50% - 1200px);
	top: -310px;
	z-index: -1;
}
.p-kaigo-cases__stage::after {
	content: url(../images/kaigo/popular-ico2.png);
	position: absolute;
	left: -330px;
	top: -120px;
	z-index: -1;
}

/* Popular cases slider */
.p-kaigo-section.p-kaigo-cases {
	padding-bottom: 70px;
	position: relative;
}

.p-kaigo-cases {
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-areas:
		"head controls"
		"stage stage"
		"foot foot";
}
.p-kaigo-cases__head {
	grid-area: head;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.p-kaigo-cases__head.l-kaigo-inner {
	width: auto;
	max-width: min(1000px, calc(100vw - 40px));
	margin: 0 0 0 max(20px, calc((100vw - 1000px) / 2));
}
.p-kaigo-cases__head .p-kaigo-heading {
	margin: 0;
}
.p-kaigo-cases__controls {
	grid-area: controls;
	align-self: end;
	justify-self: end;
	display: flex;
	gap: 10px;
	padding-right: max(20px, calc((100vw - 1060px) / 2));
	transform: translateY(50px);
	position: relative;
	z-index: 3;
}
.p-kaigo-cases__controls .p-kaigo-slider__arrow {
	position: static;
	transform: none;
	width: 27px;
	height: 54px;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}
.p-kaigo-cases__controls .p-kaigo-slider__arrow::before {
	width: 12px;
	height: 12px;
	margin: auto;
	border-width: 2px;
}
.p-kaigo-cases__controls .p-kaigo-slider__arrow.is-disabled {
	opacity: 0.4;
}
.p-kaigo-cases__stage {
	grid-area: stage;
	position: relative;
}
.p-kaigo-cases__slider-wrap {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding-left: max(20px, calc((100vw - 1060px) / 2));
	
}
.p-kaigo-cases .p-kaigo-slider__track {
	gap: 26px;
	padding: 90px 0 30px;
}
.p-kaigo-cases .p-kaigo-case-card:first-child {
	margin-left: 30px;
}
.p-kaigo-cases .p-kaigo-case-card {
	flex: 0 0 min(345px, calc(100vw - 40px));
}
.p-kaigo-cases__foot {
	display: none;
	grid-area: foot;
}

.p-kaigo-case-card {
	flex: 0 0 100%;
	background: #fff;
	border-radius: 40px;
	box-shadow: 0 4px 30px 0 rgba(191, 173, 150, 0.30);
	overflow: hidden;
}
.p-kaigo-case-card__image img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	border-radius: 40px 40px 0 0;
}
.p-kaigo-case-card__body { padding: 20px 30px; }
.p-kaigo-case-card__body h3 { margin: 0; font-size: 24px; line-height: 1.6; }
.p-kaigo-case-card__dots { margin-top: 2px; margin-bottom: 12px; }
.p-kaigo-case-card__body p { margin: 0 0 8px; font-size: 16px; line-height: 2; }
.p-kaigo-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	z-index: 2;
}
.p-kaigo-slider__arrow--prev { 
	left: -8px;
	background: url(../images/kaigo/prev.png)!important;
	background-size: cover!important;
}
.p-kaigo-slider__arrow--next { 
	right: -8px; 
	background: url(../images/kaigo/next.png)!important;
	background-size: cover!important;
}

.p-kaigo-slider__dots {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}
.p-kaigo-slider__dots button {
	width: 10px!important;
	padding: 0!important;
	border: 0;
	border-radius: 50%;
	background: #AAA19F;
	aspect-ratio: 1/1;
	cursor: pointer;
}
.p-kaigo-slider__dots button.is-active { background: var(--kaigo-red); }

/* Case studies */
.p-kaigo-case-studies {
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas:
		"head"
		"stage"
		"foot";
}
.p-kaigo-case-studies__head {
	grid-area: head;
}
.p-kaigo-case-studies__head.l-kaigo-inner {
	width: auto;
	max-width: min(1000px, calc(100vw - 40px));
	margin: 0 0 0 max(20px, calc((100vw - 1000px) / 2));
}
.p-kaigo-case-studies__head .p-kaigo-heading {
	margin: 0;
}
.p-kaigo-case-studies__controls {
	position: absolute;
	left: 50%;
	top: 58%;
	z-index: 3;
	width: min(800px, calc(100vw - 40px));
	height: 0;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.p-kaigo-case-studies__controls .p-kaigo-slider__arrow {
	position: absolute;
	top: 58%;
	width: 60px;
	height: 60px;
	border: 2px solid var(--kaigo-black);
	border-radius: 50%;
	background: #fff url(../images/kaigo/slider-arrow.svg) center / 20px 12px no-repeat !important;
	box-shadow: none;
	pointer-events: auto;
	cursor: pointer;
}
.p-kaigo-case-studies__controls .p-kaigo-slider__arrow--prev {
	left: -30px;
	right: auto;
	transform: translateY(-50%) rotate(180deg);
}
.p-kaigo-case-studies__controls .p-kaigo-slider__arrow--next {
	right: -30px;
	left: auto;
	transform: translateY(-50%);
}
.p-kaigo-case-studies__controls .p-kaigo-slider__arrow::before {
	display: none;
}
.p-kaigo-case-studies__stage {
	grid-area: stage;
	position: relative;
}
.p-kaigo-case-studies__slider-wrap {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding-left: 0;
	overflow: hidden;
	margin-top: 40px;
	
}
.p-kaigo-case-studies .p-kaigo-slider__viewport {
	overflow: hidden;
	width: 100%;
}
.p-kaigo-case-studies .p-kaigo-slider__track {
	gap: 60px;
	padding: 0 0 30px;
}
.p-kaigo-case-studies .p-kaigo-case-study {
	flex: 0 0 min(800px, calc(100vw - 40px));
	max-width: none;
	margin: 0;
}
.p-kaigo-case-studies__foot {
	grid-area: foot;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.p-kaigo-case-study {
	flex: 0 0 100%;
}
.p-kaigo-case-study__tab {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	padding: 7px 40px 3px 30px;
	background: var(--kaigo-gradient);
	border-radius: 40px 40px 0 0;
	color: #fff;
}
.p-kaigo-case-study__num {
	font-family: var(--kaigo-font-en);
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.05em;
}
.p-kaigo-case-study__facility {
	font-size: 26px;
	font-weight: 900;
}
.p-kaigo-case-study__body {
	padding: 40px;
	background: #fff;
	border-radius: 0 40px 40px 40px;
	box-shadow: var(--kaigo-shadow);
	height: calc(100% - 60px);
}
.p-kaigo-case-study__top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 24px;
}
.p-kaigo-case-study__image img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	border-radius: 20px;
}
.p-kaigo-case-study__badge {
	display: inline-block;
	margin: 0 0 10px!important;
	padding: 0 10px;
	font-size: 16px;
	font-weight: 700;
	line-height: 30px;
	color: #fff;
	background: #aaa19f;
	border-radius: 40px;
}
.p-kaigo-case-study__badge--accent { background: var(--kaigo-gradient); }
.p-kaigo-case-study__badge--result { background: #ff7272; }
.p-kaigo-case-study__reason p,
.p-kaigo-case-study__issue p,
.p-kaigo-case-study__result p {
	margin: 0;
	font-size: 16px;
	line-height: 2;
}
.p-kaigo-case-study__reason p:not(.p-kaigo-case-study__badge) { font-size: 18px; font-weight: 700; }
.p-kaigo-case-study__bottom {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	padding-top: 24px;
	background-image: radial-gradient(circle, #E1D8C6 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 8px 2px;
}
.p-kaigo-case-study__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
.p-kaigo-case-study__arrow img {
	display: block;
	width: 28px;
	height: auto;
	margin: 69px 0 0;
}


/* Voice */
.p-kaigo-voice {
	width: 1366px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

@media (max-width: 1366px) {
	.p-kaigo-voice {
		width: 100%;
		margin: 0 auto;
	}
}

.p-kaigo-voice .p-kaigo-heading {
	padding: 0 0 0 30px;
}
.p-kaigo-voice__bg {
	position: absolute;
	inset: 0;
	background: var(--kaigo-beige);
	z-index: 0;
	border-radius: 160px;
	width: 100vw;
	left: 50%;
	transform: translateX(-50%);
}
@media (max-width: 1366px) {
	.p-kaigo-voice__bg {
		width: 100%;
	}
}
.p-kaigo-voice__decor {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 1366px;
	pointer-events: none;
	left: 50%;
	transform: translateX(-50%);
}

@media (max-width: 768px) {
	.p-kaigo-voice__decor {
		width: 100%;
	}
}

.p-kaigo-voice__decor-top {
	position: absolute;
	top: 10px;
	right: 60px;
	width: clamp(80px, 8vw, 108px);
}
.p-kaigo-voice__decor-bottom {
	position: absolute;
	bottom: -15px;
	left: 30px;
	width: clamp(80px, 8vw, 110px);
	transform-origin: center center;
	transform: rotate(170deg);
}
.p-kaigo-voice__decor-circle {
	position: absolute;
	display: block;
	overflow: visible;
}
.p-kaigo-voice__decor-circle img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
}
.p-kaigo-voice__decor-circle--tr {
	right: -8%;
	bottom: -8%;
	width: clamp(220px, 28vw, 378px);
}
.p-kaigo-voice__decor-circle--tr img {
	position: relative;
	left: -23.81%;
	top: -23.81%;
	width: 147.62%;
}
.p-kaigo-voice__decor-circle--bl {
	display: none;
	left: -8%;
	bottom: -12%;
	width: clamp(150px, 18vw, 250px);
}
.p-kaigo-voice__decor-circle--bl img {
	position: relative;
	left: -27.25%;
	top: -27.25%;
	width: 154.5%;
}
.p-kaigo-voice .l-kaigo-inner {
	position: relative;
	z-index: 1;
	width: 1000px;
}
.p-kaigo-voice__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px 40px;
}
.p-kaigo-voice-card__bubble {
	width: 100%;
	margin-bottom: 18px;
	filter: drop-shadow(0 4px 30px rgba(191, 173, 150, 0.2));
}
.p-kaigo-voice-card__bubble-body {
	display: flex;
	align-items: center;
	position: relative;
	background: #fff;
	border-radius: 40px;
	min-height: 172px;
	padding: 50px 50px 50px;
	box-shadow: 0 4px 30px 0 rgba(191, 173, 150, 0.20);
}
.p-kaigo-voice-card__bubble-body::after {
	content: '';
	position: absolute;
	left: 76px;
	bottom: -18px;
	width: 20px;
	height: 18px;
	background: #fff;
	clip-path: polygon(45% 100%, 0 0, 90% 0);
}
.p-kaigo-voice-card__quote {
	margin: 0;	
	font-size: 18px;
	font-weight: 400;
	line-height: 2;
}
.p-kaigo-voice-card__stars {
	display: block;
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 257px;
	height: auto;
}
.p-kaigo-voice-card__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 35px;
	padding-left: 50px;
}
.p-kaigo-voice-card__avatar {
	flex: 0 0 70px;
	width: 70px;
	height: 70px;
}
.p-kaigo-voice-card__avatar img {
	display: block;
	width: 100%;
	height: auto;
}
.p-kaigo-voice-card__facility,
.p-kaigo-voice-card__role {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
}
.p-kaigo-voice-card__facility { font-weight: 700; }


/* Compare */

.p-kaigo-compare__bg {
	position: absolute;
	inset: 0;
	background: var(--kaigo-beige);
	z-index: -1;
	border-radius: 150px;
	overflow: hidden;
}
.p-kaigo-compare__lead { margin: 0 0 40px; font-size: 16px; line-height: 2; }
.p-kaigo-compare__table {
	border-radius: 20px;
}
.p-kaigo-compare__head {
	text-align: center;
	background: transparent!important;
}
.p-kaigo-compare__head,
.p-kaigo-compare__row {
	background: #fff;
	display: grid;
	grid-template-columns: 1fr;
}
.p-kaigo-compare__row:last-of-type div {
	border-bottom: none!important;
}
.p-kaigo-compare__head > div,
.p-kaigo-compare__row > div {
	padding: 16px;
	border-bottom: 1px solid #ece4df;
	font-size: var(--kaigo-fs-base);
	line-height: 1.6;
}
.p-kaigo-compare__head > div:nth-child(1) {
	border: none;
}
.p-kaigo-compare__head > div:nth-child(2) {
	background: #ECE4DF;
	border-radius: 20px 0 0;
	box-shadow: 0 4px 30px rgba(191, 173, 150, 0.3);
}
.p-kaigo-compare__head > div:nth-child(3) {
	border-radius: 0 20px 0 0;
	box-shadow: 0 4px 30px rgba(191, 173, 150, 0.3);
}
.p-kaigo-compare__head > div:nth-child(3),
.p-kaigo-compare__nikkane {
	font-size: 22px!important;
	background: linear-gradient(90deg, rgba(255,114,114,.1), rgba(255,160,96,.1));
}
.p-kaigo-compare__head > div:nth-child(3) {
	background: var(--kaigo-gradient);
	color: #fff;
	font-weight: 900;
	box-shadow: 0 4px 30px rgba(191, 173, 150, 0.3);

}
.p-kaigo-compare__type { 
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	background: #fff;
	background-image: radial-gradient(circle, #e1d8c6 1px, transparent 1px);
  background-position: right top;
  background-repeat: repeat-y;
  background-size: 2px 8px;
}
.p-kaigo-compare__head > div:nth-child(2) { font-size: var(--kaigo-fs-md); font-weight: 700; }
.p-kaigo-compare__head > div:nth-child(3) { font-size: 22px!important; font-weight: 700; }
.p-kaigo-compare__nikkane { font-size: var(--kaigo-fs-base); font-weight: 700; }
.p-kaigo-compare__other {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	font-weight: 500;
}
.p-kaigo-compare__body {
	box-shadow: 0 4px 30px rgba(191, 173, 150, 0.3);
	border-radius: 20px 0 20px 20px;
	overflow: hidden;
}
.p-kaigo-compare__body .p-kaigo-compare__nikkane {
	font-size: 20px!important;
	border-bottom: 1px solid #F1B1B1!important;
}
.p-kaigo-compare__layout-outer {
	display: none;
}
.p-kaigo-compare__layout {
	display: none;
}

/* Delivery */
.p-kaigo-delivery {
	position: relative;
	overflow: hidden;
}
.p-kaigo-delivery__bg {
	position: absolute;
	inset: 0;
	background: #fff;
	z-index: 0;
}
.p-kaigo-delivery__decor {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.p-kaigo-delivery__decor-circle {
	position: absolute;
	display: block;
	overflow: visible;
}
.p-kaigo-delivery__decor-circle img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
}
.p-kaigo-delivery__decor-circle--tr {
	top: 0;
	right: calc(50% - 800px);
	width: clamp(220px, 28vw, 378px);
}
.p-kaigo-delivery__decor-circle--tr img {
	position: relative;
	left: -23.81%;
	top: -23.81%;
	width: 147.62%;
}
.p-kaigo-delivery__decor-circle--bl {
	bottom: -10px;
	left: calc(50% - 700px);
	width: clamp(150px, 18vw, 250px);
}

@media (max-width: 768px) {
	.p-kaigo-delivery__decor-circle--bl {
		left: initial;
		bottom: 20px;
		right: -100px;
		width: 250px;
		height: 250px;
	}
}

.p-kaigo-delivery__decor-circle--bl img {
	position: relative;
	left: -27.25%;
	top: -27.25%;
	width: 154.5%;
}
.p-kaigo-delivery .l-kaigo-inner {
	position: relative;
	z-index: 1;
}
.p-kaigo-delivery__layout { display: grid; gap: 40px; }
.p-kaigo-delivery__subtitle {
	margin: 0 0 30px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.6;
}
.p-kaigo-delivery__subtitle-line {
	display: block;
}
@media (max-width: 768px) {
	.p-kaigo-delivery__subtitle-line {
		display: inline;
	}
}
.p-kaigo-delivery__subtitle-highlight {
	color: #d90000;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 0.2em;
	text-decoration-thickness: 12.5%;
}
.p-kaigo-delivery__content p {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
}
.p-kaigo-delivery__features {
	display: flex;
	flex-direction: column;
	gap: 2px;
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
}
.p-kaigo-delivery__feature {
	display: grid;
	grid-template-columns: 26px minmax(0, 1fr);
	align-items: start;
	gap: 0;
	min-height: 32px;
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
}
.p-kaigo-delivery__feature img {
	display: block;
	width: 19px;
	height: auto;
	margin-top: 10px;
}
.p-kaigo-delivery__map picture,
.p-kaigo-delivery__map img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 30px;
	box-shadow: 0 0 40px 0 rgba(191, 173, 150, 0.20);
}

/* Flow */
.p-kaigo-flow {
	position: relative;
}
.p-kaigo-flow__bg {
	position: absolute;
	inset: 0;
	background: var(--kaigo-beige);
	z-index: 0;
	border-radius: 160px;
}
.p-kaigo-flow .l-kaigo-inner {
	position: relative;
	z-index: 1;
}
.p-kaigo-flow__list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 900px;
	margin: 40px 0 0;
}
.p-kaigo-flow__item {
	position: relative;
	width: 100%;
	height: 250px;
}
.p-kaigo-flow__head {
	position: absolute;
	inset: 3px 456px auto 0;
	height: 48px;
}
.p-kaigo-flow__num {
	position: absolute;
	left: 0;
	top: 0;
	width: 58px;
	margin: 0;
	font-family: var(--kaigo-font-en);
	font-size: 42px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	text-transform: uppercase;
}
.p-kaigo-flow__head h3 {
	position: absolute;
	left: 80px;
	top: 6px;
	right: 0;
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.6;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.p-kaigo-flow__text {
	position: absolute;
	left: 80px;
	top: 77px;
	width: 350px;
	margin: 0;
	font-size: 16px;
	line-height: 2;
}
.p-kaigo-flow__image {
	position: absolute;
	top: 0;
	right: 0;
	width: 444px;
	height: 220px;
	border-radius: 40px;
	overflow: hidden;
}
.p-kaigo-flow__image img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 40px;
	object-fit: cover;
}
.p-kaigo-flow__image img.is-fit-bottom {
	object-position: bottom;
}
.p-kaigo-flow__divider {
	position: absolute;
	left: 0;
	right: 0;
	top: 231px;
	height: 30px;
	pointer-events: none;
}
.p-kaigo-flow__divider-line {
	position: absolute;
	left: 0;
	top: 19px;
	width: 100%;
	height: auto;
}
.p-kaigo-flow__divider-arrow {
	position: absolute;
	left: 430px;
	top: 7px;
	width: 40px;
	height: 30px;
}

/* FAQ */
.p-kaigo-faq__list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 40px;
}
.p-kaigo-faq__item {
	background: #fff;
	border-radius: 40px;
	box-shadow: 0 4px 15px rgba(191, 173, 150, 0.22);
	padding: 40px 40px 39px;
	overflow: hidden;
}
.p-kaigo-faq__question {
	font-family: var(--kaigo-font);
	display: grid;
	grid-template-columns: 31px minmax(0, 1fr) 20px;
	gap: 15px;
	align-items: center;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
}
.p-kaigo-faq__q,
.p-kaigo-faq__a {
	font-family: var(--kaigo-font-en);
	font-weight: 700;
}
.p-kaigo-faq__q {
	font-size: 36px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: var(--kaigo-gray);
}
.p-kaigo-faq__a {
	font-size: 30px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	background: var(--kaigo-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.p-kaigo-faq__question-text {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--kaigo-black)!important;
}
.p-kaigo-faq__toggle {
	flex-shrink: 0;
	width: 20px;
	height: 3px;
	background: var(--kaigo-red);
	position: relative;
	transition: transform 0.3s ease;
}
.p-kaigo-faq__toggle::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 3px;
	height: 20px;
	background: var(--kaigo-red);
	transform: translate(-50%, -50%) scaleY(1);
	transform-origin: center;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-kaigo-faq__item.is-open .p-kaigo-faq__toggle::after {
	transform: translate(-50%, -50%) scaleY(0);
	opacity: 0;
}
.p-kaigo-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	padding: 0;
	border: 0;
	transition: grid-template-rows 0.35s ease;
}
.p-kaigo-faq__item.is-open .p-kaigo-faq__answer {
	grid-template-rows: 1fr;
}
.p-kaigo-faq__answer-inner {
	overflow: hidden;
	min-height: 0;
}
.p-kaigo-faq__divider {
	display: block;
	width: 100%;
	height: 2px;
	margin: 30px 0 22px;
	border: 0;
	background-image: radial-gradient(circle, #E1D8C6 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 6px 2px;
}
.p-kaigo-faq__answer-body {
	display: grid;
	grid-template-columns: 31px minmax(0, 1fr);
	gap: 15px;
	align-items: start;
}
.p-kaigo-faq__answer-body p {
	margin: 8px 0 0;
	font-size: 18px;
	line-height: 1.6;
}

/* Footer — uses theme .l-footer (see template-parts/kaigo/footer.php) */

/* Desktop */

/* PC hero layout (from Figma) */
.p-kaigo-hero {
	padding: 90px 0 0;
	/* min-height: max(480px, calc(570 / var(--kaigo-mv-design-width) * 100vw)); */
}
.p-kaigo-hero__frame {
	/* min-height: max(480px, calc(570 / var(--kaigo-mv-design-width) * 100vw)); */
	padding: 0;
	background: url(../images/kaigo/mvbg.png) center / cover no-repeat;
}
.p-kaigo-hero__content {
	width: 100vw;
	padding: 0 0 0 10vw;
	transform: translateY(-30px);
	transition: all 0.3s ease;
}

@media (min-width: 1366px) {
	.p-kaigo-hero__content {
		padding: 0 0 0 10vw;
	}
}

@media (min-width: 1600px) {
	.p-kaigo-hero__content {
		padding: 0 0 0 14vw;
	}
}

@media (min-width: 1700px) {
	.p-kaigo-hero__content {
		padding: 0 0 0 18vw;
	}
}

@media (max-width: 1400px) {
	.p-kaigo-hero__content {
		padding: 0 0 0 4vw;
	}
}

@media (max-width: 1050px) {
	.p-kaigo-hero__content {
		padding: 0 0 0 7vw;
	}
}
@media (max-width: 1020px) {
	.p-kaigo-hero__content {
		padding: 0 0 0 7vw;
	}
}
.p-kaigo-hero__visual {
	width: 45vw;
	height: 480px;
	margin-top: 0;
	clip-path: inset(0 round 240px 0 0 240px);
	-webkit-clip-path: inset(0 round 240px 0 0 240px);
}

@media (max-width: 1250px) {
	.p-kaigo-hero__visual {
		width: 620px;
		height: 480px;
	}
}
.p-kaigo-hero__visual img {
	width: 900px;
	height: 570px;
}

@media (max-width: 1200px) {
	.p-kaigo-hero__visual {
		/* width: min(623px, 48vw); */
		height: auto;
		aspect-ratio: 623 / 480;
		clip-path: inset(0 round 999px 0 0 999px);
		-webkit-clip-path: inset(0 round 999px 0 0 999px);
	}
	.p-kaigo-hero__visual img {
		width: 145%;
		height: 119%;
	}
}

/* PC layout (from Figma) */
.p-kaigo-header__nav,
.p-kaigo-header__cta { display: flex; }
.p-kaigo-header__menu-btn { display: none; }
.p-kaigo-hero__label { font-size: 18px; font-weight: 700; line-height: 1.5; }
.p-kaigo-hero__catch { font-size: 30px; font-weight: 700; line-height: 1.5; }
.p-kaigo-hero__title { font-size: 60px; font-weight: 900; line-height: 1.5; }

@media (max-width: 1300px) {
	.p-kaigo-hero__catch {
		font-size: 24px;
	}
}
@media (max-width: 1020px) {
	.p-kaigo-hero__catch {
		font-size: 22px;
	}
}

@media (max-width: 900px) {
	.p-kaigo-hero__catch {
		font-size: 20px;
	}
}

.p-kaigo-heading__title { font-size: 40px; font-weight: 700; line-height: 1.5; }
.p-kaigo-pain__bg,
.p-kaigo-pain__decor { border-radius: 160px; }
.p-kaigo-pain__grid {
		grid-template-columns: repeat(2, minmax(0, 454px));
		justify-content: space-between;
		gap: 60px 24px;
	}
.p-kaigo-pain__item {
		grid-template-columns: 160px minmax(0, 1fr);
		max-width: 454px;
		min-height: 226px;
		margin: 0;
	}
.p-kaigo-pain__photo {
		width: 180px;
		height: 180px;
	}
.p-kaigo-pain__bubble {
		max-width: 327px;
		margin-left: -5px;
		padding: 33px 24px 24px;
	}
.p-kaigo-pain__bubble p { font-size: 18px; }
.p-kaigo-reasons__grid { grid-template-columns: repeat(2, 1fr); gap: 90px 60px; }
.p-kaigo-reason-card__num { 
	font-size: 40px;
	text-shadow: 1px 0 #fff,
	-1px 0 #fff,
	0 1px #fff,
	0 -1px #fff;
}
.p-kaigo-reason-card__title { font-size: 26px; }
.p-kaigo-features__list { gap: 60px; }
.p-kaigo-feature__card {
		grid-template-columns: 460px minmax(0, 1fr);
		gap: 60px;
		align-items: start;
		min-height: 421px;
		padding: 60px 80px;
	}
.p-kaigo-feature.is-reverse .p-kaigo-feature__card {
	grid-template-columns: minmax(0, 1fr) 460px;
	background: linear-gradient(270deg, #FFF 0%, #FFF0E7 100%);
}

.p-kaigo-feature.is-reverse .p-kaigo-feature__image { order: 2; }
.p-kaigo-feature.is-reverse .p-kaigo-feature__content { order: 1; }
.p-kaigo-feature__num {
		top: -50px;
		right: 10px;
		left: auto;
		font-size: 120px;
	}
.p-kaigo-feature:nth-child(even) .p-kaigo-feature__num {
		right: auto;
		left: 10px;
	}
.p-kaigo-feature__image img {
		width: 460px;
		height: 301px;
	}
.p-kaigo-feature__title {
		margin-bottom: 30px;
		font-size: 30px;
	}
.p-kaigo-feature__body p + p { margin-top: 15px; }
.p-kaigo-cta-mid__title,
.p-kaigo-contact__title { font-size: 24px; }
.p-kaigo-facility__tab-label { font-size: 14px; }
.p-kaigo-case-card__body h3 { font-size: 24px; }
.p-kaigo-case-study__facility { font-size: 26px; }
.p-kaigo-compare__head > div:nth-child(2) { font-size: 18px; }
.p-kaigo-compare__head > div:nth-child(3) { font-size: 22px; }
.p-kaigo-compare__nikkane { font-size: 16px; }
.p-kaigo-faq__answer-body p { font-size: 18px; }
.p-kaigo-cta-mid__actions,
.p-kaigo-contact__actions {
		grid-template-columns: 1fr 1fr;
		gap: 0;
	}
.p-kaigo-cta-mid__action:first-child,
.p-kaigo-contact__action:first-child { border-right: 1px dotted #ddd; }
.p-kaigo-facility__layout { grid-template-columns: 240px 1fr; gap: 60px; align-items: start; }
.p-kaigo-facility__tabs { grid-template-columns: 1fr; gap: 10px; }
.p-kaigo-facility__tab {
		min-height: 64px;
		gap: 10px;
		padding: 12px;
	}
.p-kaigo-facility__panel-head {
		gap: 15px;
		padding: 40px 40px 20px;
	}
.p-kaigo-facility__panel-num {
		flex-basis: 50px;
		width: 50px;
		height: 50px;
		font-size: 28px;
	}
.p-kaigo-facility__panel-head h3 { font-size: 30px; }
.p-kaigo-facility__panel {
		display: flex;
		flex-direction: column;
	}
.p-kaigo-facility__panel-body {
		display: flex;
		flex-direction: column;
	}
.p-kaigo-facility__row {
		grid-template-columns: 180px minmax(0, 1fr);
		gap: 39px;
		align-items: start;
		padding: 30px 40px 20px;
	}
.p-kaigo-facility__row--issue { padding-bottom: 40px; }
.p-kaigo-facility__row--solution {
		margin-top: auto;
		padding: 40px 40px 40px;
	}
.p-kaigo-facility__label-col {
		justify-items: center;
	}
.p-kaigo-facility__arrow-wrap { padding: 0; margin: -24px 0; }
.p-kaigo-facility__arrow {
		width: 24px;
		height: 44px;
	}
.p-kaigo-cases__controls {
		justify-content: flex-end;
	}
.p-kaigo-cases__controls .p-kaigo-slider__arrow {
		width: 60px;
		height: 60px;
		border-radius: 50%;
		background: #fff;
	}
.p-kaigo-cases .p-kaigo-case-card {
		flex: 0 0 400px;
	}
.p-kaigo-case-studies .p-kaigo-case-study {
		flex: 0 0 800px;
	}
.p-kaigo-case-studies__controls .p-kaigo-slider__arrow {
		width: 60px;
		height: 60px;
		border: 2px solid var(--kaigo-black);
		border-radius: 50%;
		background: #fff url(../images/kaigo/slider-arrow.svg) center / 20px 12px no-repeat !important;
		box-shadow: none;
	}
.p-kaigo-case-studies__controls .p-kaigo-slider__arrow::before {
		display: none;
	}
.p-kaigo-case-study__top { grid-template-columns: 360px 1fr; align-items: start; }
.p-kaigo-case-study__bottom { grid-template-columns: 1fr auto 1fr; align-items: start; }
.p-kaigo-voice__grid { grid-template-columns: repeat(2, 1fr); gap: 60px 40px; }
.p-kaigo-compare__head,
.p-kaigo-compare__row { grid-template-columns: 192px 1fr 1fr;}
.p-kaigo-compare__row div { text-align: center;}
.p-kaigo-delivery__layout { grid-template-columns: 1fr 474px; gap: 60px; align-items: start; }
.p-kaigo-delivery__subtitle { font-size: 26px; }
.p-kaigo-delivery__map picture,
.p-kaigo-delivery__map img { border-radius: 40px; }
.u-sp-only {
	display: none;
}
/* SP overrides — max-width 768px only */
@media (max-width: 768px) {
	.u-sp-only {
		display: block;
	}
	.l-kaigo-inner,
	.l-kaigo-inner--wide {
		width: 100vw;
		padding: 0 15px;
	}

	.p-kaigo__main {
		overflow-x: hidden;
	}

	.p-kaigo-header {
		position: absolute;
		padding: 0;
		transition: background 0.2s linear;
	}
	.p-kaigo-header.is-scrolled {
		background: #fff;
	}
	.p-kaigo-header.is-menu-open,
	.p-kaigo-header.is-scrolled.is-menu-open {
		background: transparent;
	}
	.p-kaigo-header__inner {
		position: relative;
		min-height: 60px;
		padding: 20px 15px;
		background: transparent;
		border-radius: 0;
		box-shadow: none;
		align-items: flex-start;
		gap: 0;
	}
	.p-kaigo-header__logo img {
		width: 212px;
		height: auto;
	}
	.p-kaigo-header__nav,
	.p-kaigo-header__cta {
		display: none;
	}
	.p-kaigo-header__menu-btn {
		display: block;
		position: fixed;
		top: 15px;
		right: 0;
		margin: 0;
	}

	.p-kaigo-sp-menu__group:last-child .p-kaigo-sp-menu__body {
		padding-bottom: 0;
	}

	.p-kaigo-hero {
		min-height: 549px;
		/* background: linear-gradient(180deg, #fff6de 16.73%, #fce8de 100%); */
		border-radius: 0 0 0 28%;
		padding-top: 0;
		overflow: hidden;
	}
	.p-kaigo-header.is-scrolled {
		background: transparent;
	}
	.p-kaigo-hero__frame {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		min-height: 549px;
		padding: 115px 0 0;
		height: auto;
	}
	.p-kaigo-hero__content {
		width: 100%;
		padding: 0 4.6875vw;
		transform: translateY(0);
	}
	.p-kaigo-hero__label {
		margin-bottom: 40px;
		font-size: 15px;
		font-weight: 700;
		line-height: 1.5;
	}
	.p-kaigo-hero__catch {
		margin-bottom: 8px;
		font-size: 18px;
		font-weight: 700;
		line-height: 1.5;
	}
	.p-kaigo-hero__title {
		font-size: 35px;
		font-weight: 900;
		line-height: 1.5;
		letter-spacing: -0.05em;
	}
	.p-kaigo-hero__title-comma {
		letter-spacing: -10.5px;
	}
	.p-kaigo-hero__title-tight {
		letter-spacing: -2.8px;
	}
	.p-kaigo-hero__visual {
		position: relative;
		top: auto;
		right: auto;
		transform: none;
		width: 100%;
		/* height: 200px; */
		margin: 24px 0 0;
		align-self: stretch;
		aspect-ratio: auto;
		clip-path: initial;
	}
	.p-kaigo-hero__visual img {
		width: 100%;
		height: auto;
		position: relative;
		top: initial;
		left: initial;
		transform: none;

	}

	.p-kaigo-breadcrumb.l-kaigo-inner {
		width: 100%;
		max-width: 100%;
		padding: 15px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.p-kaigo-breadcrumb.l-kaigo-inner::-webkit-scrollbar {
		display: none;
	}
	.p-kaigo-breadcrumb__list {
		flex-wrap: nowrap;
		width: max-content;
		min-width: 100%;
		font-size: 12px;
		line-height: 1.5;
		letter-spacing: 0.6px;
	}
	.p-kaigo-breadcrumb__list li {
		flex-shrink: 0;
		white-space: nowrap;
	}

	.p-kaigo-section {
		padding: 60px 0;
	}

	.p-kaigo-voice__bg {
		border-radius: 40px;
	}

	.p-kaigo-voice .p-kaigo-heading {
		padding: 0;
	}

	.p-kaigo-heading {
		margin-bottom: 40px;
	}
	.p-kaigo-heading__en {
		font-size: 16px;
		font-weight: 700;
		line-height: 1.5;
		letter-spacing: 0.8px;
	}
	.p-kaigo-heading__title {
		font-size: 28px;
		font-weight: 700;
		line-height: 1.5;
		overflow-wrap: anywhere;
	}

	.p-kaigo-pain {
		padding: 60px 0 60px;
	}
	.p-kaigo-pain::before,
	.p-kaigo-pain::after {
		display: none;
	}
	.p-kaigo-pain__bg,
	.p-kaigo-pain__decor-sparkle,
	.p-kaigo-pain__decor-circle {
		display: none;
	}
	.p-kaigo-pain__decor-accent {
		display: block;
	}
	.p-kaigo-pain__decor-accent--1 {
		top: 360px;
		right: 16px;
		width: 53px;
	}
	.p-kaigo-pain__decor-accent--2 {
		top: 581px;
		left: 24px;
		width: 50px;
		transform: rotate(0);
	}
	.p-kaigo-pain__grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	.p-kaigo-pain__item {
		grid-template-columns: 100px minmax(0, 1fr);
		max-width: 322px;
		min-height: 175px;
		margin: 0 auto;
	}
	.p-kaigo-pain__item:first-of-type,
	.p-kaigo-pain__item:nth-of-type(3) {
		transform: none;
	}
	.p-kaigo-pain__item.is-reverse {
		grid-template-columns: minmax(0, 1fr) 100px;
		margin-left: auto;
		margin-right: auto;
	}
	.p-kaigo-pain__item.is-reverse .p-kaigo-pain__photo {
		grid-column: 2;
	}
	.p-kaigo-pain__item.is-reverse .p-kaigo-pain__bubble {
		grid-column: 1;
		margin-left: 0;
		margin-right: -10px;
		border-radius: 40px 40px 0 40px;
	}
	.p-kaigo-pain__item.is-reverse .p-kaigo-pain__line {
		right: auto;
		left: 10px;
		transform-origin: left top;
		transform: translate(45%,-30%) scaleX(-1);
	}
	.p-kaigo-pain__photo {
		width: 100px;
		height: 100px;
	}
	.p-kaigo-pain__bubble {
		width: 232px;
		margin-left: -10px;
		padding: 25px 20px 20px;
	}
	.p-kaigo-pain__bubble p {
		font-size: 16px;
		font-weight: 700;
		line-height: 1.8;
	}

	.p-kaigo-section.p-kaigo-reasons {
		border-radius: 40px;
	}
	.p-kaigo-reasons__bg,
	.p-kaigo-reasons__decor {
		border-radius: 40px;
	}
	.p-kaigo-reasons__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.p-kaigo-reason-card__image img {
		border-radius: 30px;
	}
	.p-kaigo-reason-card__num {
		font-family: var(--kaigo-font-en);
		font-size: 38px;
		font-weight: 700;
		line-height: 1.5;
		letter-spacing: 1.9px;
		color: var(--kaigo-red);
	}
	.p-kaigo-reason-card__title {
		font-size: 24px;
		font-weight: 700;
		line-height: 1.5;
	}
	.p-kaigo-reason-card__body {
		font-size: 16px;
		line-height: 2;
	}

	.p-kaigo-features {
		overflow: hidden;
	}
	.p-kaigo-features .l-kaigo-inner--wide {
		width: 100%;
		max-width: 100%;
		padding: 0 15px;
	}
	.p-kaigo-features__list {
		gap: 70px;
	}
	.p-kaigo-feature__card {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 40px 15px 40px;
		min-height: auto;
		border-radius: 0 60px 60px 0;
		margin-left: -15px;
		margin-right: -15px;
		width: calc(100% + 30px);
	}
	.p-kaigo-feature:nth-child(even) .p-kaigo-feature__card {
		border-radius: 60px 0 0 60px;
	}
	.p-kaigo-feature__num {
		top: -57px;
		right: 15px;
		left: auto;
		font-family: var(--kaigo-font-en);
		font-size: 80px;
		font-weight: 700;
		line-height: 1.5;
		background: linear-gradient(180deg, #ffcdba 26.67%, #fff0e7 73.85%);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}
	.p-kaigo-feature:nth-child(even) .p-kaigo-feature__num {
		right: auto;
		left: 15px;
	}
	.p-kaigo-feature__image img {
		width: 100%;
		height: 226px;
		border-radius: 30px;
		aspect-ratio: auto;
	}
	.p-kaigo-feature__title {
		font-size: 26px;
		font-weight: 700;
		line-height: 1.5;
		margin-bottom: 20px;
	}
	.p-kaigo-feature__body p {
		font-size: 16px;
		line-height: 2;
	}
	.p-kaigo-feature .p-kaigo-feature__card {
		background: linear-gradient(270deg, #FFF0E7 0%, #FFF 100%);
	}
	.p-kaigo-feature.is-reverse .p-kaigo-feature__card {
		background: linear-gradient(100deg, #FFF0E7 0%, #FFF 100%);
	}
	.p-kaigo-feature.is-reverse .p-kaigo-feature__card {
		grid-template-columns: 1fr;
	}
	.p-kaigo-feature.is-reverse .p-kaigo-feature__image,
	.p-kaigo-feature.is-reverse .p-kaigo-feature__content {
		order: unset;
	}

	.p-kaigo-cta-mid,
	.p-kaigo-contact {
		padding: 40px 0;
	}

	@media (max-width: 768px) {
		.p-kaigo-cta-mid,
		.p-kaigo-contact {
			position: relative;
			overflow: hidden;
		}
		.p-kaigo-cta-mid::before,
		.p-kaigo-contact::before {
			aspect-ratio: 375 / 57;
			content: url(../images/kaigo/top-ico.svg);
			position: absolute;
			top: -12px;
			left: 50%;
			transform: translateX(-50%);
			z-index: 1;
		}
		.p-kaigo-cta-mid::after,
		.p-kaigo-contact::after {
			aspect-ratio: 375 / 57;
			content: url(../images/kaigo/bottom-ico.svg);
			position: absolute;
			bottom: -12px;
			left: 50%;
			transform: translateX(-50%);
			z-index: 1;
		}
	}

	.p-kaigo-cta-mid__bg,
	.p-kaigo-contact__bg {
		background: url(../images/kaigo/cta-bg-sp.png);
		background-size: cover;
	}
	.p-kaigo-cta-mid__bg::before,
	.p-kaigo-contact__bg::before {
		content: none;
	}
	.p-kaigo-cta-mid__bg-ellipse,
	.p-kaigo-cta-mid__bg-pattern,
	.p-kaigo-contact__bg-ellipse,
	.p-kaigo-contact__bg-pattern {
		display: block;
	}
	.p-kaigo-cta-mid__bg-ellipse--tl,
	.p-kaigo-contact__bg-ellipse--tl {
		top: -170px;
		left: -170px;
		width: 420px;
	}
	.p-kaigo-cta-mid__bg-ellipse--br,
	.p-kaigo-contact__bg-ellipse--br {
		right: -120px;
		bottom: -80px;
		width: 367px;
		transform: rotate(-165deg) scaleX(-1);
	}
	.p-kaigo-cta-mid__bg-pattern,
	.p-kaigo-contact__bg-pattern {
		inset: -10px -77px -12px -11px;
		mix-blend-mode: multiply;
	}
	.p-kaigo-cta-mid__bg-pattern img,
	.p-kaigo-contact__bg-pattern img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.p-kaigo-cta-mid__card,
	.p-kaigo-contact__card {
		padding: 20px 15px;
		border-radius: 30px;
		z-index: 5;
	}
	.p-kaigo-cta-mid__label,
	.p-kaigo-contact__label {
		font-size: 30px;
		font-weight: 700;
		line-height: 1.5;
		letter-spacing: 1.5px;
	}
	.p-kaigo-cta-mid__title,
	.p-kaigo-contact__title {
		font-size: 26px;
		font-weight: 700;
		line-height: 1.5;
	}
	.p-kaigo-cta-mid__lead,
	.p-kaigo-contact__lead {
		font-size: 16px;
		line-height: 2;
		text-align: left;
	}
	.p-kaigo-cta-mid__actions,
	.p-kaigo-contact__actions {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.p-kaigo-cta-mid__action:first-child,
	.p-kaigo-contact__action:first-child {
		border-right: 0;
	}
	.p-kaigo-cta-mid__action p,
	.p-kaigo-contact__action p {
		font-size: 16px;
		font-weight: 700;
		line-height: 2;
		margin: 0 0 6px;
	}
	.p-kaigo-cta-mid__tel--pc,
	.p-kaigo-contact__tel--pc {
		display: none;
	}
	.p-kaigo-cta-mid__tel-btn,
	.p-kaigo-contact__tel-btn {
		display: inline-flex;
		width: min(305px, 100%);
		min-height: 70px;
		font-size: 16px;
		font-weight: 600;
		letter-spacing: 0.8px;
	}
	.p-kaigo-cta-mid__tel-btn img,
	.p-kaigo-contact__tel-btn img {
		width: 22px;
		height: 22px;
	}
	.p-kaigo-cta-mid .p-kaigo-btn,
	.p-kaigo-contact .p-kaigo-btn {
		width: min(305px, 100%);
		min-height: 70px;
		font-size: 16px;
		font-weight: 600;
		letter-spacing: 0.8px;
	}
	p.p-kaigo-cta-mid__hours,
	p.p-kaigo-contact__hours {
		font-size: 14px;
		font-weight: 700;
		line-height: 2;
		margin: 0;
	}

	.p-kaigo-facility__bg {
		border-radius: 0 0 40px 40px;
	}
	.p-kaigo-facility__layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.p-kaigo-facility__lead {
		margin-bottom: 24px;
		font-size: 16px;
		line-height: 2;
	}
	.p-kaigo-facility__tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 5px;
	}
	.p-kaigo-facility__tab {
		align-items: center;
		min-height: 50px;
		height: 50px;
		gap: 5px;
		padding: 12px 2px;
		border-radius: 10px;
		border-width: 2px;
		box-shadow: none;
	}
	.p-kaigo-facility__tab:not(.is-active) {
		background: var(--kaigo-beige);
		border-color: var(--kaigo-black);
		color: var(--kaigo-black);
	}
	.p-kaigo-facility__tab.is-active {
		background: var(--kaigo-red);
		border-color: var(--kaigo-red);
		box-shadow: none;
	}
	.p-kaigo-facility__tab-num {
		flex: 0 0 26px;
		width: 26px;
		height: 26px;
		font-size: 15px;
		font-weight: 700;
		line-height: 1.5;
	}
	.p-kaigo-facility__tab:not(.is-active) .p-kaigo-facility__tab-num {
		
		color: var(--kaigo-black);
		border-color: transparent;
	}
	.p-kaigo-facility__tab.is-active .p-kaigo-facility__tab-num {
		background: #fff;
		color: var(--kaigo-red);
		border-color: #fff;
	}
	.p-kaigo-facility__tab-label {
		font-size: 14px;
		font-weight: 700;
		line-height: 1.3;
	}
	.p-kaigo-facility__tab.is-active .p-kaigo-facility__tab-label {
		color: var(--kaigo-beige);
	}
	.p-kaigo-facility__panel {
		border-radius: 30px;
		box-shadow: var(--kaigo-shadow);
	}
	.p-kaigo-facility__panel-head {
		gap: 10px;
		padding: 30px 20px 20px;
		align-items: flex-start;
	}
	.p-kaigo-facility__panel-head::after {
		content: "";
		bottom: 0;
		width: min(305px, calc(100% - 40px));
		height: 4px;
		background: url("../images/kaigo/line-under-sp.svg") center / 100% 100% no-repeat;
	}
	.p-kaigo-facility__panel-num {
		flex: 0 0 42px;
		width: 42px;
		height: 42px;
		font-size: 22px;
		font-weight: 700;
		line-height: 1.5;
	}
	.p-kaigo-facility__panel-head h3 {
		flex: 1;
		min-width: 0;
		font-size: 26px;
		font-weight: 700;
		line-height: 1.5;
	}
	.p-kaigo-facility__row {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 20px;
	}
	.p-kaigo-facility__row--issue {
		padding: 20px 20px 32px;
	}
	.p-kaigo-facility__row--solution {
		margin-top: 0;
		padding: 32px 20px 30px;
		border-radius: 0 0 30px 30px;
		background: linear-gradient(90deg, rgba(255, 114, 114, 0.1) 0%, rgba(255, 160, 96, 0.1) 100%);
	}
	.p-kaigo-facility__label-col {
		justify-items: center;
		text-align: center;
		gap: 4px;
	}
	.p-kaigo-facility__label-icon img {
		width: 18px;
		height: 19px;
		transform: rotate(-33deg);
	}
	.p-kaigo-facility__row--solution .p-kaigo-facility__label-icon img {
		width: 24px;
		height: 28px;
		transform: rotate(0);
	}
	.p-kaigo-facility__label {
		font-size: 16px;
		font-weight: 500;
		line-height: 1.5;
	}
	.p-kaigo-facility__label--accent {
		font-size: 16px;
		font-weight: 700;
		line-height: 1.5;
		color: var(--kaigo-red);
	}
	.p-kaigo-facility__text {
		font-size: 16px;
		font-weight: 500;
		line-height: 2;
	}
	.p-kaigo-facility__row--solution .p-kaigo-facility__text {
		font-size: 18px;
		font-weight: 700;
		line-height: 2;
	}
	.p-kaigo-facility__arrow-wrap {
		padding: 0;
		margin: -18px 0;
	}
	.p-kaigo-facility__arrow {
		width: 20px;
		height: 34px;
	}

	.p-kaigo-cases {
		grid-template-columns: 1fr;
		grid-template-areas:
			"head"
			"controls"
			"stage"
			"foot";
	}
	.p-kaigo-cases__head.l-kaigo-inner {
		width: 100%;
		max-width: none;
		margin: 0;
	}
	.p-kaigo-cases__head .p-kaigo-heading {
		margin-bottom: 0;
	}
	.p-kaigo-cases__controls {
		grid-area: controls;
		position: relative;
		z-index: 2;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 10px;
		width: 100%;
		margin-top: 0;
		padding-right: 0;
		pointer-events: none;
		top: 290px;
	}
	.p-kaigo-cases__controls .p-kaigo-slider__arrow {
		position: static;
		flex-shrink: 0;
		width: 27px;
		height: 54px;
		border: 2px solid var(--kaigo-black);
		border-radius: 5px 0 0 5px;
		background: #fff url(../images/kaigo/sp/slider-arrow-sp.svg) center / 16px 14px no-repeat !important;
		box-shadow: none;
		pointer-events: auto;
		cursor: pointer;
	}
	.p-kaigo-cases__controls .p-kaigo-slider__arrow::before {
		display: none;
	}
	.p-kaigo-cases__controls .p-kaigo-slider__arrow--prev {
		left: auto;
		right: auto;
		transform: rotate(180deg);
		border-radius: 5px 0 0 5px;
		border-right: none;
	}
	.p-kaigo-cases__controls .p-kaigo-slider__arrow--next {
		left: auto;
		right: auto;
		transform: none;
		border-right: none;
	}
	.p-kaigo-cases__controls .p-kaigo-slider__arrow--prev.is-disabled {
		opacity: 0.4;
	}
	.p-kaigo-cases__controls .p-kaigo-slider__arrow--next.is-disabled {
		opacity: 0.4;
	}
	.p-kaigo-cases__stage {
		grid-area: stage;
		z-index: 1;
		margin-top: -20px;
	}
	.p-kaigo-cases__slider-wrap {
		margin-left: 0;
		margin-top: 0;
		padding-left: 0;
		position: relative;
		overflow: initial;
	}
	.p-kaigo-cases__slider-wrap::before {
		content: url(../images/kaigo/sp/ico1.png);
		position: absolute;
		top: -290px;
		right: 0;	
	}
	.p-kaigo-cases__slider-wrap::after {
		content: url(../images/kaigo/sp/ico2.png);
		position: absolute;
		top: 100px;
		left: 0;
	}
	.p-kaigo-slider {
		position: relative;
		z-index: 2;
	}
	.p-kaigo-slider__viewport {
		overflow: initial;
	}
	
	.p-kaigo-cases .p-kaigo-slider__track {
		gap: 15px;
		padding: 0;
	}
	.p-kaigo-cases .p-kaigo-case-card:first-child {
		margin-left: 0;
	}
	.p-kaigo-cases .p-kaigo-case-card {
		flex: 0 0 min(345px, calc(100vw - 30px));
		border-radius: 30px;
	}
	.p-kaigo-case-card__image img {
		border-radius: 30px 30px 0 0;
	}
	.p-kaigo-case-card__body {
		padding: 20px;
	}
	.p-kaigo-case-card__body h3 {
		margin-bottom: 10px;
		font-size: 22px;
		line-height: 1.5;
	}
	.p-kaigo-case-card__dots {
		margin-bottom: 15px;
		width: 100px;
	}
	.p-kaigo-case-card__body p {
		font-size: 16px;
		line-height: 2;
	}
	.p-kaigo-cases__foot {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.p-kaigo-cases__foot .p-kaigo-slider__dots {
		margin-top: 30px;
	}

	.p-kaigo-case-studies {
		grid-template-columns: 1fr;
		grid-template-areas:
			"head"
			"stage"
			"foot";
	}
	.p-kaigo-case-studies__head.l-kaigo-inner {
		width: 100%;
		max-width: none;
		margin: 0;
	}
	.p-kaigo-case-studies__head .p-kaigo-heading {
		margin-bottom: 0;
	}
	.p-kaigo-case-studies__controls {
		width: 100vw;
	}
	.p-kaigo-case-studies__controls .p-kaigo-slider__arrow {
		width: 27px;
		height: 54px;
		border: 2px solid var(--kaigo-black);
		border-radius: 5px 0 0 5px;
		background: #fff url(../images/kaigo/sp/slider-arrow-sp.svg) center / 7px 14px no-repeat !important;
		box-shadow: none;
		pointer-events: auto;
		cursor: pointer;
	}
	.p-kaigo-case-studies__controls .p-kaigo-slider__arrow--prev {
		left: 0;
		transform: translateY(-50%) rotate(180deg);
		border-radius: 5px 0 0 5px;
		border-right: none;
	}
	.p-kaigo-case-studies__controls .p-kaigo-slider__arrow--next {
		right: 0;
		transform: translateY(-50%);
		border-right: none;
	}
	.p-kaigo-case-studies__controls .p-kaigo-slider__arrow::before {
		display: none;
	}
	.p-kaigo-case-studies__controls .p-kaigo-slider__arrow--prev.is-disabled,
	.p-kaigo-case-studies__controls .p-kaigo-slider__arrow--next.is-disabled {
		opacity: 0.4;
	}
	.p-kaigo-case-studies__foot .p-kaigo-slider__dots {
		margin-top: 0;
	}
	.p-kaigo-case-studies__stage {
		grid-area: stage;
		z-index: 1;
		margin-top: 30px;
		min-width: 0;
	}
	.p-kaigo-case-studies__slider-wrap {
		/* width: 100%;
		max-width: 100%; */
		margin-left: 0;
		padding-left: 0;
		margin-top: 0;
		overflow: initial;
	}
	.p-kaigo-case-studies .p-kaigo-slider__viewport {
		overflow: initial;
	}
	.p-kaigo-case-studies .p-kaigo-slider__track {
		gap: 15px;
		padding: 0;
	}
	.p-kaigo-case-study__tab {
		gap: 10px;
		padding: 4px 40px 4px 20px;
		border-radius: 30px 30px 0 0;
	}
	.p-kaigo-case-studies .p-kaigo-case-study {
		flex: 0 0 min(345px, calc(100vw - 30px));
		min-width: 0;
		width: min(345px, calc(100vw - 30px));
		max-width: min(345px, calc(100vw - 30px));
	}
	.p-kaigo-case-study__top {
		grid-template-columns: 1fr;
		gap: 15px;
		margin-bottom: 15px;
	}
	.p-kaigo-case-study__num {
		font-size: 28px;
		font-weight: 700;
		line-height: 1.5;
		letter-spacing: 1.4px;
	}
	.p-kaigo-case-study__facility {
		font-size: 22px;
		font-weight: 900;
		line-height: 1.6;
	}
	.p-kaigo-case-study__body {
		padding: 15px 15px 30px;
		border-radius: 0 30px 30px 30px;
		height: calc(100% - 50px);
	}
	.p-kaigo-case-study__image img {
		height: 166px;
		border-radius: 20px;
	}
	.p-kaigo-case-study__bottom {
		grid-template-columns: 1fr;
		gap: 15px;
		padding-top: 15px;
	}
	.p-kaigo-case-study__badge {
		margin-bottom: 8px!important;
		padding: 0 10px;
		font-size: 14px;
		font-weight: 700;
		line-height: 2;
	}
	.p-kaigo-case-study__reason p:not(.p-kaigo-case-study__badge),
	.p-kaigo-case-study__issue p:not(.p-kaigo-case-study__badge),
	.p-kaigo-case-study__result p:not(.p-kaigo-case-study__badge) {
		font-size: 16px;
		line-height: 2;
	}
	.p-kaigo-case-study__reason p:not(.p-kaigo-case-study__badge),
	.p-kaigo-case-study__result p:not(.p-kaigo-case-study__badge) {
		font-weight: 700;
	}
	.p-kaigo-case-study__issue p:not(.p-kaigo-case-study__badge) {
		font-weight: 400;
	}
	.p-kaigo-case-study__arrow img {
		transform: rotate(90deg);
		margin: 0;
	}
	.p-kaigo-case-studies__foot .p-kaigo-slider__dots {
		margin-top: 30px;
	}

	.p-kaigo-voice__decor-circle {
		display: none;
	}
	.p-kaigo-voice__decor-top {
		top: -6px;
		right: 30px;
		width: 53px;
	}
	.p-kaigo-voice__decor-bottom {
		bottom: -13px;
		left: 0;
		width: 53px;
		transform: rotate(170deg)
	}
	.p-kaigo-voice__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.p-kaigo-voice .l-kaigo-inner {
		padding: 0 4.6875vw;
		max-width: 100%;
	}
	.p-kaigo-voice-card__bubble-body {
		border-radius: 30px;
		padding: 20px;
		min-height: initial;
	}
	.p-kaigo-voice-card__bubble-body::after {
		left: 43px;
		bottom: -21px;
		width: 24px;
		height: 22px;
		clip-path: polygon(50% 100%, 0 0, 100% 0);
	}
	.p-kaigo-voice-card__quote {
		font-size: 16px;
		line-height: 2;
	}
	.p-kaigo-voice-card__stars {
		right: 15px;
		bottom: 12px;
		width: 193px;
	}
	.p-kaigo-voice-card__meta {
		margin-top: 30px;
		padding-left: 20px;
		gap: 15px;
	}
	.p-kaigo-voice-card__facility,
	.p-kaigo-voice-card__role {
		font-size: 16px;
		line-height: 1.6;
	}

	.p-kaigo-section.p-kaigo-compare {
		padding-bottom: 30px;
	}
	.p-kaigo-compare {
		overflow: initial;
		background: transparent;
	}

	.p-kaigo-compare__bg {
		border-radius: 40px;
	}
	.p-kaigo-compare .l-kaigo-inner {
		max-width: 100%;
		overflow: visible;
	}
	.p-kaigo-compare__lead {
		font-size: 16px;
		line-height: 2;
		margin-bottom: 30px;
	}
	.p-kaigo-compare__table--pc {
		display: none;
	}
	.p-kaigo-compare__layout-outer {
		display: block;
		position: relative;
		margin: 0 calc(-1 * 4.6875vw);
		width: 100vw;
		
		box-sizing: border-box;
	}
	.p-kaigo-compare__scroll-hint {
		position: absolute;
		top: 135px;
		left: 50%;
		z-index: 3;
		width: 160px;
		height: 120px;
		transform: translateX(-50%);
		pointer-events: none;
		opacity: 1;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}
	.p-kaigo-compare__layout-outer:not(.is-scrollable) .p-kaigo-compare__scroll-hint,
	.p-kaigo-compare__layout-outer.is-hint-dismissed .p-kaigo-compare__scroll-hint {
		opacity: 0;
		visibility: hidden;
	}
	.p-kaigo-compare__layout {
		display: block;
		position: relative;
		width: 100%;
		padding-bottom: 30px;
		box-sizing: border-box;
	}
	.p-kaigo-compare__sp-card {
		display: flex;
		align-items: stretch;
		width: 100%;
		border-radius: 20px 0 20px 20px;
	}
	.p-kaigo-compare__sp-fixed {
		flex: 0 0 91px;
		display: flex;
		flex-direction: column;
		position: relative;
		z-index: 2;
		margin: 0 0 0 15px;
	}
	.p-kaigo-compare__head > div:first-child {
		border-radius: 20px 0 0 0!important;
	}
	.p-kaigo-compare__head > div:not(:first-child) {
		border-radius: 0 20px 0 0!important;
	}
	.p-kaigo-compare__type.p-kaigo-compare__type--care-food {
		border-radius: 20px 0 0 0;
	}
	.p-kaigo-compare__type {
		box-shadow: 0 4px 30px rgba(191, 173, 150, 0.2);
	}
	.p-kaigo-compare__sp-fixed-head {
		flex-shrink: 0;
		box-sizing: border-box;
		border-bottom: 1px solid transparent;
		opacity: 0;
	}
	.p-kaigo-compare__sp-fixed .p-kaigo-compare__type {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.6;
		text-align: center;
		padding: 12px 8px;
		min-height: 82px;
		box-sizing: border-box;
		background-color: #fff;
		background-image: radial-gradient(circle, #e1d8c6 1px, transparent 1px);
		background-position: right top;
		background-repeat: repeat-y;
		background-size: 2px 8px;
	}
	.p-kaigo-compare__sp-scroll {
		flex: 1;
		min-width: 0;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.p-kaigo-compare__sp-scroll::-webkit-scrollbar {
		display: none;
	}
	.p-kaigo-compare__layout.is-scrollable .p-kaigo-compare__sp-scroll {
		overflow-x: auto;
		position: relative;
		z-index: 2;
	}
	.p-kaigo-compare__sp-scroll-inner {
		width: max-content;
		min-width: 506px;
	}
	.p-kaigo-compare__layout.is-scrollable .p-kaigo-compare__sp-scroll-inner {
		padding-right: 15px;
		box-sizing: content-box;
	}
	.p-kaigo-compare__head {
		border-radius: 20px 20px 0 0;
		box-shadow: 0 4px 30px rgba(191, 173, 150, 0.2);
	}
	.p-kaigo-compare__scroll-fade {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 2;
		width: 40px;
		height: calc(100% - 30px);
		pointer-events: none;
		opacity: 0;
		transition: opacity 0.2s ease;
	}
	.p-kaigo-compare__layout.is-scrollable .p-kaigo-compare__scroll-fade {
		opacity: 1;
	}
	.p-kaigo-compare__layout.is-scrollable.is-at-end .p-kaigo-compare__scroll-fade {
		opacity: 0;
	}
	.p-kaigo-compare__sp-scroll .p-kaigo-compare__head,
	.p-kaigo-compare__sp-scroll .p-kaigo-compare__row {
		display: grid;
		grid-template-columns: 230px 276px;
		width: 506px;
		min-width: 506px;
		background: none;
		box-sizing: border-box;
		/* border-radius: 20px 20px 20px 0!important; */
	}
	.p-kaigo-compare__sp-scroll .p-kaigo-compare__head {
		text-align: center;
		background: #fff !important;
	}
	.p-kaigo-compare__sp-scroll .p-kaigo-compare__head > div:nth-child(1) {
		font-size: 16px;
		font-weight: 700;
		line-height: 1.5;
		background: #ece4df;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}
	.p-kaigo-compare__sp-scroll .p-kaigo-compare__head > div:nth-child(2) {
		font-size: 18px;
		font-weight: 900;
		line-height: 1.5;
		background: var(--kaigo-gradient);
		color: #fff;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}
	.p-kaigo-compare__sp-scroll .p-kaigo-compare__head > div,
	.p-kaigo-compare__sp-scroll .p-kaigo-compare__row > div {
		padding: 16px 8px;
		box-sizing: border-box;
	}
	.p-kaigo-compare__sp-fixed .p-kaigo-compare__type {
		border-bottom: 1px solid #ece4df;
	}
	.p-kaigo-compare__sp-scroll .p-kaigo-compare__row:last-child .p-kaigo-compare__other,
	.p-kaigo-compare__sp-scroll .p-kaigo-compare__row:last-child .p-kaigo-compare__nikkane,
	.p-kaigo-compare__sp-fixed .p-kaigo-compare__type:last-child {
		border-bottom: none;
		border-radius: 0 0 0 20px!important;
	}
	
	.p-kaigo-compare__sp-scroll .p-kaigo-compare__other {
		font-size: 14px;
		font-weight: 500;
		line-height: 1.6;
		text-align: center;
		min-height: 82px;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.p-kaigo-compare__sp-scroll .p-kaigo-compare__row:nth-child(4) .p-kaigo-compare__other br {
		display: none;
	}
	.p-kaigo-compare__sp-scroll .p-kaigo-compare__nikkane {
		font-size: 16px !important;
		font-weight: 700;
		line-height: 1.6;
		text-align: center;
		min-height: 82px;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		border-bottom: 1px solid #f1b1b1 !important;
		background: linear-gradient(90deg, rgba(255, 114, 114, 0.1), rgba(255, 160, 96, 0.1));
	}

	.p-kaigo-delivery__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.p-kaigo-delivery__subtitle {
		font-size: 24px;
		line-height: 1.5;
	}
	.p-kaigo-delivery__content p,
	.p-kaigo-delivery__feature span {
		font-size: 16px;
		line-height: 2;
	}
	.p-kaigo-delivery__map picture,
	.p-kaigo-delivery__map img {
		border-radius: 30px;
	}

	.p-kaigo-flow__bg {
		border-radius: 40px;
	}

	.p-kaigo-flow__list {
		max-width: none;
		margin-top: 32px;
		gap: 15px;
	}
	.p-kaigo-flow__item {
		height: auto;
		padding-bottom: 0;
	}
	.p-kaigo-flow__head {
		position: static;
		display: flex;
		align-items: center;
		gap: 10px;
		height: auto;
		margin-bottom: 8px;
	}
	.p-kaigo-flow__num {
		position: static;
		flex: 0 0 50px;
		width: auto;
		font-size: 36px;
		font-weight: 700;
		line-height: 1.5;
		text-align: left;
	}
	.p-kaigo-flow__head h3 {
		position: static;
		font-size: 26px;
		font-weight: 700;
		line-height: 1.6;
		overflow: visible;
		text-overflow: unset;
		white-space: normal;
	}
	.p-kaigo-flow__text {
		position: static;
		width: auto;
		margin: 0 0 12px;
		font-size: 16px;
		line-height: 2;
	}
	.p-kaigo-flow__image {
		position: static;
		width: 100%;
		height: 171px;
		border-radius: 30px;
	}
	.p-kaigo-flow__image img {
		border-radius: 30px;
	}
	.p-kaigo-flow__divider {
		position: relative;
		top: auto;
		height: 30px;
		margin-top: 12px;
	}
	.p-kaigo-flow__divider-arrow {
		left: 50%;
		transform: translateX(-50%);
	}

	.p-kaigo-faq__list {
		gap: 20px;
		margin-top: 32px;
	}
	.p-kaigo-faq__item {
		padding: 24px 20px 23px;
		border-radius: 30px;
	}
	.p-kaigo-faq__question {
		grid-template-columns: 24px minmax(0, 1fr) 20px;
		gap: 10px;
		color: var(--kaigo-black)!important;
	}
	.p-kaigo-faq__q {
		font-size: 28px;
		align-self: flex-start;
		margin: -10px 0 0;
	}
	.p-kaigo-faq__question-text {
		font-size: 18px;
		line-height: 1.6;
	}
	.p-kaigo-faq__divider {
		margin: 15px 0 3px;
		background-size: 6px 2px;
	}
	.p-kaigo-faq__answer-body {
		grid-template-columns: 24px minmax(0, 1fr);
		gap: 10px;
	}
	.p-kaigo-faq__a {
		font-size: 26px;
		padding: 7px 0 0;
		text-align: center;
	}
	.p-kaigo-faq__answer-body p {
		font-size: 16px;
		line-height: 2;
	}
	.p-kaigo-compare__sp-scroll.is-scrollable .p-kaigo-compare__sp-scroll-inner .p-kaigo-compare__nikkane {
		border-radius: 0!important;
	}
	
	body > div > main > section.p-kaigo-section.p-kaigo-compare > div.l-kaigo-inner > div.p-kaigo-compare__layout-outer.is-scrollable.is-hint-dismissed > div > div.p-kaigo-compare__sp-card > div.p-kaigo-compare__sp-scroll.is-scrollable.is-at-end > div > div:nth-child(5) > div.p-kaigo-compare__nikkane {
		border-radius: 0 0 20px 0!important;
	}
	body > div > main > section.p-kaigo-section.p-kaigo-compare > div.l-kaigo-inner > div.p-kaigo-compare__layout-outer.is-scrollable > div > div.p-kaigo-compare__sp-card > div.p-kaigo-compare__sp-scroll.is-scrollable > div > div.p-kaigo-compare__row.p-kaigo-compare__row--catering > div.p-kaigo-compare__other.p-kaigo-compare__other--catering {
		border-radius: 0!important;
	}
	.p-kaigo-compare__row.p-kaigo-compare__row--care-food,
	.p-kaigo-compare__row.p-kaigo-compare__row--local-wholesale,
	.p-kaigo-compare__row.p-kaigo-compare__row--b2b-ec,
	.p-kaigo-compare__row.p-kaigo-compare__row--catering {
		background: #fff!important;
	}
	.p-kaigo-compare__row.p-kaigo-compare__row--catering {
		border-radius: 0 0 20px 0!important;
	}
	.p-kaigo-sp-menu__category.p-kaigo-sp-menu__category--has-links .is-open {
		background: var(--kaigo-beige);
	}
	.p-kaigo-sp-menu__category.p-kaigo-sp-menu__category--has-links .is-open .p-kaigo-sp-menu__category-toggle {
		/* background: var(--kaigo-beige); */
	}
}

@media (max-width: 600px) {
	.p-kaigo-hero {
		border-radius: 0 0 0 20%;
	}
}

.p-kaigo-sp-menu__group.p-kaigo-sp-menu__group--company.last .p-kaigo-sp-menu__toggle {
	background-image: radial-gradient(circle, #e1d8c6 1px, transparent 1px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 5px 2px;

	background-image: radial-gradient(circle, #e1d8c6 1px, transparent 1px), radial-gradient(circle, #e1d8c6 1px, transparent 1px);
	background-position: left top, left bottom;
	background-repeat: repeat-x, repeat-x;
	background-size: 5px 2px, 5px 2px;
}

.p-kaigo-sp-menu__group.p-kaigo-sp-menu__group--company.last .p-kaigo-sp-menu__body {
	background: none;
}

.p-kaigo-sp-menu__category.p-kaigo-sp-menu__category--has-links .is-open {
	background: var(--kaigo-beige);
}

.is-open .p-kaigo-sp-menu__toggle {
	font-weight: bold!important;
}
.p-kaigo-sp-menu__toggle {
	font-weight: bold!important;
}