@charset "UTF-8";
/* kanri.html リニューアル用スタイル（既存 kanri.css は変更しない） */

/* 横はみ出し・右余白対策 + 本文読みやすさ（50代向け：16px〜18px） */
html:has(.kanri-page) {
	overflow-x: clip;
	scroll-behavior: auto;
	font-size: clamp(16px, 1.40625vw, 18px);
}

body.kanri-page {
	overflow-x: clip;
	max-width: 100%;
}

.kanri-page main,
.kanri-page .site-header,
.kanri-page .site-footer {
	max-width: 100%;
	overflow-x: clip;
}

.kanri-page .site-header .header-top {
	max-width: 100%;
	overflow-x: clip;
}

/* Hero — リボンはみ出し・アニメーションによるスクロール引っかかり防止 */
.kanri-page .kanri-hero {
	overflow: hidden;
}

/* Hero — 出現順: Right → Left → テキスト類 */
.kanri-page .kanri-hero__bg-shape-right.js-fadeIn-from-right,
.kanri-page .kanri-hero__bg-shape-left.js-fadeIn-from-right {
	animation: none;
}

.kanri-page .kanri-hero__bg-shape-right.js-fadeIn-from-right {
	opacity: 0;
	transform: translateX(24px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
	will-change: transform, opacity;
}

.kanri-page .kanri-hero__bg-shape-right.js-fadeIn-from-right.is-in {
	opacity: 1;
	transform: translateX(0);
}

.kanri-page .kanri-hero__bg-shape-left.js-fadeIn-from-right {
	opacity: 0;
	transform: translateX(24px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	will-change: transform, opacity;
}

.kanri-page .kanri-hero__bg-shape-left.js-fadeIn-from-right.is-in {
	opacity: 1;
	transform: translateX(0);
}

.kanri-page .kanri-hero__bg-text h1 {
	opacity: 0;
	animation: kanriHeroFadeInFromLeft 0.8s 0.55s ease-out forwards;
}

.kanri-page .kanri-hero__bg-text p {
	opacity: 0;
	animation: kanriHeroFadeInFromLeft 0.8s 0.9s ease-out forwards;
}

@keyframes kanriHeroFadeInFromLeft {
	from {
		opacity: 0;
		transform: translateX(-1.25rem);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.kanri-page .kanri-hero__bg-ribbon {
	width: 100%;
	transition: none;
}

.kanri-page .about-voice__scroll-wrap {
	overflow-x: clip;
}

/* Hero — カテゴリタグ */
.kanri-hero__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem 0.75rem;
	margin-bottom: 1rem;
}

.kanri-hero__tag {
	display: inline-flex;
	align-items: center;
	padding: 0.4375rem 1.125rem;
	background: #f62837;
	border: 2px solid #f62837;
	border-radius: 999px;
	box-shadow: 0 0.25rem 0.75rem rgba(246, 40, 55, 0.28);
	color: #fff;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.3;
	white-space: nowrap;
}

.kanri-hero__lead {
	display: block;
	position: relative;
	padding-bottom: 11.5rem;
}

.kanri-hero__lead-text {
	display: block;
	white-space: nowrap;
}

/* Hero — 実績バッジ */
.kanri-hero__badges {
	--kanri-badge-shift: 1.5rem;
	position: absolute;
	top: 2.5rem;
	left: calc(3.75em + var(--kanri-badge-shift));
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 1rem;
	margin: 0;
}

.kanri-hero__badge-img {
	display: block;
	width: auto;
	height: 11rem;
	object-fit: contain;
}

.kanri-hero__badge-img--20years {
	height: 11rem;
	aspect-ratio: 1;
}

@media screen and (min-width: 1025px) {
	.kanri-page .kanri-hero__bg-text {
		top: 8.5rem;
	}

	.kanri-hero__badges {
		--kanri-badge-shift: 7.5rem;
		top: calc(2.5rem + 1rem);
		left: calc(3.75em + var(--kanri-badge-shift) - 7rem);
	}
}

@media screen and (max-width: 435px) {
	.kanri-hero__tags {
		gap: 0.375rem 0.5rem;
		margin-bottom: 0.625rem;
	}

	.kanri-page .kanri-hero__tag {
		padding: 0.25rem 0.625rem;
		font-size: 0.75rem;
		line-height: 1.3;
		box-shadow: 0 0.125rem 0.5rem rgba(246, 40, 55, 0.22);
	}

	.kanri-hero__lead-text {
		white-space: normal;
	}
}

/* Hero — タブレット（436〜1024px）：900px付近のレイアウトを436px以上に適用 */
@media screen and (min-width: 436px) and (max-width: 1024px) {
	.kanri-page .kanri-hero {
		height: 39rem;
	}

	.kanri-page .kanri-hero__bg-wrapper {
		height: 39rem;
	}

	.kanri-page .kanri-hero__bg-shape-left {
		width: 14rem;
	}

	.kanri-page .kanri-hero__bg-shape-left source,
	.kanri-page .kanri-hero__bg-shape-left img {
		height: 39rem;
		object-fit: contain;
	}

	.kanri-page .kanri-hero__bg-shape-right {
		width: 25rem;
		max-width: 43vw;
	}

	.kanri-page .kanri-hero__bg-shape-right source,
	.kanri-page .kanri-hero__bg-shape-right img {
		height: 39rem;
		object-fit: contain;
	}

	.kanri-page .kanri-hero__bg-text {
		top: 5rem;
		left: 2rem;
		max-width: 52%;
	}

	.kanri-page .kanri-hero__bg-text h1 {
		font-size: 2.125rem;
		line-height: 1.35;
	}

	.kanri-page .kanri-hero__bg-text p {
		margin-top: 1.125rem;
		font-size: 1.0625rem;
		line-height: 1.55;
	}

	.kanri-hero__tags {
		gap: 0.4375rem 0.5625rem;
		margin-bottom: 0.75rem;
	}

	.kanri-page .kanri-hero__tag {
		padding: 0.3125rem 0.8125rem;
		font-size: 0.8125rem;
		line-height: 1.3;
		border-width: 1.5px;
		box-shadow: 0 0.125rem 0.5rem rgba(246, 40, 55, 0.22);
	}

	.kanri-hero__lead {
		padding-bottom: 0;
	}

	.kanri-hero__badges {
		position: relative;
		top: auto;
		left: 0;
		right: auto;
		bottom: auto;
		margin-top: 0.75rem;
		margin-left: calc(8rem + var(--kanri-badge-shift, 1.5rem) + 2rem);
		justify-content: flex-start;
		gap: 0.5rem;
	}

	.kanri-hero__badge-img {
		height: 5.5rem;
	}
}

/* Hero — タブレット狭幅（436〜640px）：バッジ余白・高さを調整 */
@media screen and (min-width: 436px) and (max-width: 640px) {
	.kanri-page .kanri-hero {
		height: 34rem;
	}

	.kanri-page .kanri-hero__bg-wrapper {
		height: 34rem;
	}

	.kanri-page .kanri-hero__bg-shape-left source,
	.kanri-page .kanri-hero__bg-shape-left img,
	.kanri-page .kanri-hero__bg-shape-right source,
	.kanri-page .kanri-hero__bg-shape-right img {
		height: 34rem;
	}

	.kanri-page .kanri-hero__bg-text {
		left: 1.25rem;
		max-width: 58%;
	}

	.kanri-page .kanri-hero__bg-text h1 {
		font-size: 1.75rem;
	}

	.kanri-hero__badges {
		margin-left: 0.5rem;
		flex-wrap: wrap;
		gap: 0.375rem;
	}

	.kanri-hero__badge-img {
		height: 4.25rem;
	}
}

/* Hero — 極小幅（435px以下）：バッジを下段中央へ */
@media screen and (max-width: 435px) {
	.kanri-page .kanri-hero {
		height: 28rem;
	}

	.kanri-page .kanri-hero__bg-wrapper {
		height: 100%;
	}

	.kanri-page .kanri-movie {
		margin-top: -3rem;
	}

	.kanri-page .kanri-movie__heading {
		margin-top: 0;
		padding-top: 0;
	}

	.kanri-page .kanri-movie__sub {
		margin-top: 1.5rem;
	}

	.kanri-page .kanri-hero__bg-shape-right {
		top: 2.5rem;
		width: 12.5rem;
	}

	.kanri-page .kanri-hero__bg-shape-right source,
	.kanri-page .kanri-hero__bg-shape-right img {
		height: 24rem;
	}

	.kanri-page .kanri-hero__bg-text {
		top: 1.125rem;
		left: 1rem;
		right: 1rem;
		bottom: 0.625rem;
		display: flex;
		flex-direction: column;
	}

	.kanri-page .kanri-hero__bg-text p {
		display: flex;
		flex-direction: column;
		flex: 1;
		min-height: 0;
		margin-top: 0.5rem;
	}

	.kanri-hero__lead {
		flex: 1;
		display: flex;
		flex-direction: column;
		position: static;
		padding-bottom: 0;
	}

	.kanri-hero__lead-text {
		flex: 0 0 auto;
	}

	.kanri-hero__badges {
		position: static;
		top: auto;
		left: auto;
		transform: scale(1.28) translateX(1.35rem) translateY(0.625rem);
		transform-origin: left bottom;
		flex: 0 0 auto;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: nowrap;
		gap: 0.5rem;
		width: 100%;
		margin-top: calc(1.5rem + 10rem);
		margin-bottom: 20px;
		padding-top: 0;
		padding-left: 1.5rem;
		z-index: 2;
	}

	.kanri-hero__badge-img {
		height: 3.75rem;
		width: auto;
		max-width: calc(50% - 0.25rem);
		object-fit: contain;
	}

	.kanri-page .kanri-hero__bg-text h1 {
		font-size: 1.375rem;
		line-height: 1.45;
	}

	.kanri-page .kanri-hero__bg-text p,
	.kanri-page .kanri-hero__lead-text {
		font-size: 1rem;
		line-height: 1.75;
	}
}

/* Hero — iPhone 14 Pro Max 等（428〜435px）：バッジをさらに30px下 */
@media screen and (min-width: 428px) and (max-width: 435px) {
	.kanri-hero__badges {
		margin-top: calc(1.5rem + 10rem + 30px);
	}
}

/* Movie — 見出し */
.kanri-movie {
	padding-bottom: 2.5rem;
	background: #fff;
}

.kanri-movie__heading {
	text-align: center;
	margin-bottom: 2rem;
}

.kanri-movie__wrapper {
	margin-top: 0;
}

.kanri-movie__sub {
	margin: 0 0 0.625rem;
	color: #f62837;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.06em;
}

.kanri-movie__heading .kanri-movie__title {
	margin: 0;
}

@media screen and (max-width: 769px) {
	.kanri-page .kanri-movie {
		margin-top: 0;
	}

	.kanri-movie {
		padding-bottom: 2rem;
	}

	.kanri-movie__heading {
		margin-bottom: 1.5rem;
	}

	.kanri-page .kanri-movie__sub {
		font-size: 1rem;
		line-height: 1.15;
		letter-spacing: 0.04em;
		margin-bottom: 0.5rem;
	}
}

/* Download Promo — 動画下 CTA（白背景エリア内） */
.kanri-download-promo {
	margin-top: 2.5rem;
}

.kanri-download-promo__box {
	max-width: 56rem;
	margin: 0 auto;
	padding: 2.5rem 2.5rem 2.75rem;
	background: #fff;
	border: 2px solid #fad4d7;
	border-radius: 1rem;
	box-shadow: 0 0.375rem 1.125rem rgba(246, 40, 55, 0.1);
	text-align: center;
}

.kanri-download-promo__title {
	margin: 0 0 1rem;
	color: #f62837;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.45;
}

.kanri-download-promo__text {
	margin: 0 0 1.75rem;
	color: #222;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.875;
}

.kanri-download-promo__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8125rem 4.25rem 0.75rem 2.625rem;
	background: #f62837;
	border: 0.25rem solid #fff;
	border-radius: 1.875rem;
	box-shadow:
		0 0.375rem 1rem rgba(246, 40, 55, 0.35),
		0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kanri-download-promo__btn span {
	position: relative;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
}

.kanri-download-promo__btn span::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -2.625rem;
	width: 1.75rem;
	height: 1.75rem;
	background: url(../img/icon/ico_circle-arrow-right.svg) no-repeat center center/cover;
	transform: translateY(-50%);
	transition: transform 0.15s ease;
}

@media screen and (min-width: 1025px) {
	.kanri-download-promo__btn {
		padding: 0.625rem 3.5rem 0.5625rem 2rem;
		border-width: 0.1875rem;
		box-shadow:
			0 0.25rem 0.75rem rgba(246, 40, 55, 0.3),
			0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
	}

	.kanri-download-promo__btn span {
		font-size: 1rem;
	}

	.kanri-download-promo__btn span::after {
		right: -2.125rem;
		width: 1.375rem;
		height: 1.375rem;
	}
}

@media screen and (min-width: 770px) {
	.kanri-download-promo__btn:hover {
		background: #e02230;
		transform: translateY(-0.125rem);
		box-shadow:
			0 0.5rem 1.25rem rgba(246, 40, 55, 0.45),
			0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
	}

	.kanri-download-promo__btn:hover span::after {
		transform: translateY(-50%) translateX(0.125rem);
	}
}

@media screen and (max-width: 769px) {
	.kanri-download-promo {
		margin-top: 2rem;
	}

	.kanri-download-promo__box {
		padding: 1.75rem 1.25rem 2rem;
	}

	.kanri-download-promo__title {
		font-size: 1.375rem;
	}

	.kanri-download-promo__text {
		margin-bottom: 1.5rem;
		font-size: 1rem;
		line-height: 1.7;
		text-align: left;
	}

	.kanri-download-promo__btn {
		padding: 0.6875rem 3.5rem 0.625rem 2rem;
		border-width: 0.1875rem;
	}

	.kanri-download-promo__btn span {
		font-size: 0.9375rem;
	}

	.kanri-download-promo__btn span::after {
		right: -2rem;
		width: 1.25rem;
		height: 1.25rem;
	}
}

/* Nav — 目次 */
.kanri-nav {
	background: #ffebec;
	padding: 3rem 0 0.75rem;
}

.kanri-nav__title {
	margin: 0;
	color: #f62837;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.kanri-nav__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kanri-nav__link {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-height: 5.5rem;
	padding: 1.375rem 1.5rem;
	background: #fff;
	border: 2px solid #f5c8cd;
	border-radius: 0.5rem;
	box-shadow: 0 0.125rem 0.5rem rgba(246, 40, 55, 0.08);
	color: #222;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.kanri-nav__link:hover {
	border-color: #f62837;
	box-shadow: 0 0.25rem 1rem rgba(246, 40, 55, 0.18);
	transform: translateY(-0.125rem);
}

.kanri-nav__num {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	background: #fff5f6;
	border: 1px solid #fad4d7;
	border-radius: 0.375rem;
	color: #f62837;
	font-family: "Inter", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
}

.kanri-accordion__num {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
}

.kanri-accordion__num img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.kanri-nav__label {
	flex: 1;
	font-size: 0.95rem;
}

.kanri-nav__link::after {
	flex-shrink: 0;
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-top: 2px solid #f62837;
	border-right: 2px solid #f62837;
	transform: rotate(45deg);
}

#kanri-building,
#kanri-checkin,
#kanri-monthly {
	scroll-margin-top: 6rem;
}

@media screen and (max-width: 769px) {
	.kanri-nav {
		padding: 2.5rem 0 0.5rem;
	}

	.kanri-nav__title {
		font-size: 1.375rem;
	}

	.kanri-nav__list {
		grid-template-columns: 1fr;
		gap: 0.875rem;
	}

	.kanri-nav__link {
		min-height: 4.5rem;
		padding: 1.125rem 1.125rem;
		gap: 0.875rem;
	}

	.kanri-nav__num {
		width: 2.25rem;
		height: 2.25rem;
		font-size: 0.875rem;
	}

	.kanri-accordion__num {
		width: 2.75rem;
		height: 2.75rem;
	}

	.kanri-nav__label {
		font-size: 0.875rem;
	}

	#kanri-building,
	#kanri-checkin,
	#kanri-monthly {
		scroll-margin-top: 4.5rem;
	}
}

/* Accordion — サービス詳細（開閉） */
.kanri-accordion {
	padding-top: 0;
	text-align: left;
}

.kanri-service-card.kanri-accordion {
	padding: 0;
}

.kanri-accordion__panel {
	border: none;
}

.kanri-accordion__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem 2.5625rem 1.5rem 4.3125rem;
	cursor: pointer;
	list-style: none;
}

.kanri-accordion__head::-webkit-details-marker {
	display: none;
}

.kanri-accordion__head-main {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
	min-width: 0;
}

.kanri-accordion__title {
	color: #222;
	font-size: 1.625rem;
	font-weight: 600;
	line-height: 1.35;
}

.kanri-accordion__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 2.75rem;
	height: 2.75rem;
	border: 2px solid #f62837;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0.125rem 0.5rem rgba(246, 40, 55, 0.16);
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.kanri-accordion__head:hover .kanri-accordion__icon {
	background: #ffebec;
	transform: scale(1.04);
}

.kanri-accordion__icon::before,
.kanri-accordion__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.875rem;
	height: 2px;
	border-radius: 999px;
	background: #f62837;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, background 0.2s ease;
}

.kanri-accordion__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.kanri-accordion__panel[open] .kanri-accordion__icon {
	background: #f62837;
	border-color: #f62837;
}

.kanri-accordion__panel[open] .kanri-accordion__icon::before,
.kanri-accordion__panel[open] .kanri-accordion__icon::after {
	background: #fff;
}

.kanri-accordion__panel[open] .kanri-accordion__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.kanri-accordion__body {
	padding: 0 2.5625rem 3.0625rem 4.3125rem;
	overflow-x: clip;
}

.kanri-accordion__lead {
	margin: 0 0 1.5rem;
	color: #000;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.875;
}

.kanri-accordion__section {
	margin-bottom: 1.5rem;
}

.kanri-accordion__section-title {
	margin: 0 0 0.5rem;
	color: #f62837;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: normal;
}

.kanri-accordion__section-text {
	margin: 0;
	color: #000;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.875;
}

.kanri-accordion .kanri-service-card__content-bottom {
	justify-content: center;
	align-items: flex-start;
}

.kanri-accordion .kanri-service-card__example {
	flex: 1 1 0;
	min-width: 0;
	max-width: 19.8125rem;
}

.kanri-accordion .kanri-service-card__example-image {
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: 317 / 190;
}

.kanri-service-card__example {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

.kanri-service-card__example-title {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
}

.kanri-accordion .kanri-service-card__content-pdf {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	width: fit-content;
	max-width: 100%;
	margin: 1.5rem auto 0;
	text-align: center;
}

.kanri-accordion .kanri-service-card__download-title {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.kanri-accordion .kanri-service-card__download-title span {
	text-align: center;
}

.kanri-accordion .kanri-service-card__download-wrapper {
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem 2rem;
}

.kanri-accordion .kanri-service-card__download-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 1 auto;
	gap: 0.375rem;
	margin-right: 0;
	padding-right: 0;
	text-align: center;
	white-space: nowrap;
}

.kanri-accordion .kanri-service-card__download-item::after {
	position: static;
	transform: none;
	flex-shrink: 0;
	margin-left: 0.125rem;
}

/* Service — 背景の下余白・コンテナ幅（理由セクションと揃える） */
.l-inner__kanri-service {
	padding-inline: 2.5rem;
}

.kanri-page .kanri-service {
	background: #ffebec;
}

.kanri-page .kanri-service-card.kanri-accordion {
	background-color: #fff;
	overflow: hidden;
}

.kanri-service {
	padding-top: 1rem;
	padding-bottom: 4.5rem;
}

@media screen and (min-width: 436px) and (max-width: 1024px) {
	.l-inner__kanri-service {
		padding-inline: 1.5rem;
	}

	.kanri-accordion__head {
		padding: 1.25rem 1.5rem 1.25rem 2rem;
	}

	.kanri-accordion__body {
		padding: 0 1.5rem 2.5rem 2rem;
	}

	.kanri-accordion .kanri-service-card__content-bottom {
		gap: 0.75rem;
	}
}

@media screen and (max-width: 435px) {
	.kanri-accordion__head {
		padding: 1.125rem 1rem;
	}

	.kanri-accordion__head-main {
		gap: 0.625rem;
	}

	.kanri-accordion__title {
		font-size: 1.125rem;
	}

	.kanri-accordion__body {
		padding: 0 1rem 1.5rem;
	}

	.kanri-accordion__icon {
		width: 2.375rem;
		height: 2.375rem;
	}

	.kanri-accordion__icon::before,
	.kanri-accordion__icon::after {
		width: 0.75rem;
	}

	.kanri-accordion .kanri-service-card__content-pdf {
		flex-direction: column;
		width: fit-content;
		max-width: 100%;
		margin: 1.25rem auto 0;
	}

	.kanri-accordion .kanri-service-card__download-wrapper {
		flex-direction: column;
		gap: 0.5rem;
	}

	.kanri-accordion .kanri-service-card__download-item {
		justify-content: center;
		white-space: normal;
	}

	.kanri-accordion__section-title {
		font-size: 1.125rem;
	}

	.kanri-accordion__lead,
	.kanri-accordion__section-text {
		font-size: 1rem;
		line-height: 1.7;
	}

	.kanri-accordion .kanri-service-card__example {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
		gap: 0.625rem;
	}

	.kanri-accordion .kanri-service-card__content-bottom {
		gap: 0.6875rem;
		margin-top: 1.125rem;
	}

	.kanri-accordion .kanri-service-card__example-image {
		width: 88%;
		max-width: 17.5rem;
		margin-inline: auto;
	}

	.kanri-service-card__example-title {
		font-size: 1.0625rem;
	}

	.kanri-service {
		padding-top: 0.75rem;
		padding-bottom: 2.5rem;
	}

	.l-inner__kanri-service {
		padding-inline: 1.25rem;
	}
}

/* Reason — 顧客継続率 */
.kanri-reason {
	background: #fff;
	padding: 4rem 0 4.5rem;
}

.kanri-reason__title {
	margin: 0 0 3rem;
	color: #f62837;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.kanri-reason__rate {
	display: inline-block;
	margin-inline: 0.2em;
	padding: 0.02em 0.22em 0.06em;
	background: #f62837;
	border-radius: 0.15em;
	box-shadow: 0 0.125rem 0.5rem rgba(246, 40, 55, 0.22);
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 1.4em;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.03em;
	vertical-align: -0.06em;
}

.kanri-reason__rate-unit {
	font-size: 0.72em;
	font-weight: 900;
	line-height: 1;
}

.kanri-reason__items {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.kanri-reason__item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: center;
	padding: 2rem 2.25rem;
	background: #fff5f6;
	border: 2px solid #fad4d7;
	border-radius: 1rem;
}

.kanri-reason__item:nth-child(even) .kanri-reason__content {
	order: 2;
}

.kanri-reason__item:nth-child(even) .kanri-reason__figure {
	order: 1;
}

.kanri-reason__content {
	text-align: left;
}

.kanri-reason__num {
	display: inline-block;
	margin-bottom: 0.625rem;
	padding: 0.3125rem 0.875rem;
	background: #f62837;
	border-radius: 999px;
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.4;
}

.kanri-reason__item-title {
	margin: 0 0 0.875rem;
	color: #f62837;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
}

.kanri-reason__text {
	margin: 0;
	color: #222;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.875;
}

.kanri-reason__figure {
	width: 70%;
	max-width: 100%;
	margin-inline: auto;
	aspect-ratio: 4 / 3;
	border-radius: 0.625rem;
	overflow: hidden;
}

.kanri-reason__figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kanri-reason__figure--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fde8ea;
	border: 2px dashed #f0b8be;
}

.kanri-reason__figure-label {
	color: #7a8fa8;
	font-size: 1rem;
	font-weight: 700;
}

.kanri-reason__footer {
	margin-top: 3rem;
	text-align: center;
}

.kanri-reason__summary {
	margin: 0;
	color: #222;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.7;
}

.kanri-reason__summary-rate {
	margin-inline: 0.12em;
	color: #f62837;
	font-size: 1.25em;
	font-weight: 900;
}

@media screen and (min-width: 770px) {
	.kanri-reason__summary {
		white-space: nowrap;
	}
}

.kanri-reason__note {
	margin: 0.75rem 0 0;
	color: #666;
	font-size: 1rem;
	line-height: 1.6;
}

@media screen and (max-width: 769px) {
	.kanri-reason {
		padding: 2.5rem 0 3rem;
	}

	.kanri-reason__title {
		font-size: 1.375rem;
		margin-bottom: 2rem;
	}

	.kanri-reason__rate {
		font-size: 1.25em;
	}

	.kanri-reason__items {
		gap: 1.5rem;
	}

	.kanri-reason__item {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		padding: 1.25rem 1rem;
	}

	.kanri-reason__item:nth-child(even) .kanri-reason__content,
	.kanri-reason__item:nth-child(even) .kanri-reason__figure {
		order: unset;
	}

	.kanri-reason__item-title {
		font-size: 1.125rem;
	}

	.kanri-reason__text {
		font-size: 1rem;
		line-height: 1.7;
	}

	.kanri-reason__footer {
		margin-top: 2rem;
	}

	.kanri-reason__summary {
		font-size: 1.125rem;
	}
}

/* Junkun — 巡回管理システム */
.kanri-junkun {
	background: #ffebec;
	padding: 4rem 0 2rem;
}

.kanri-junkun__title {
	margin: 0 0 2rem;
	color: #f62837;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.kanri-junkun__content {
	width: 100%;
	margin-inline: auto;
}

.kanri-junkun__body {
	width: 100%;
	margin: 0 auto 2rem;
	padding: 2.5rem 3rem;
	background: #fff;
	border: 2px solid #fad4d7;
	border-radius: 1rem;
	text-align: left;
}

.kanri-junkun__lead {
	margin: 0 0 2rem;
	color: #222;
	font-size: 1.0625rem;
	font-weight: 400;
	line-height: 1.875;
	text-align: center;
}

.kanri-junkun__figure {
	margin: 0 auto 2rem;
	aspect-ratio: 4 / 3;
	max-width: calc((100% - 2.5rem) / 2);
	border-radius: 0.625rem;
	overflow: hidden;
}

.kanri-junkun__figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kanri-junkun__figure--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fde8ea;
	border: 2px dashed #f0b8be;
}

.kanri-junkun__figure-label {
	color: #7a8fa8;
	font-size: 1rem;
	font-weight: 700;
}

.kanri-junkun__text {
	margin: 0;
	color: #222;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.875;
	text-align: center;
}

.kanri-junkun__stats {
	margin: 0;
	color: #222;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

.kanri-junkun__stats-num {
	color: #f62837;
	font-size: 1.75em;
	font-weight: 700;
}

.kanri-junkun__stats-line1,
.kanri-junkun__stats-line2 {
	display: inline;
	font-weight: 700;
}

@media screen and (max-width: 1024px) {
	.kanri-junkun__stats-line1,
	.kanri-junkun__stats-line2 {
		display: block;
	}
}

@media screen and (max-width: 769px) {
	.kanri-junkun {
		padding: 2.5rem 0 1.25rem;
	}

	.kanri-junkun__title {
		font-size: 1.375rem;
		margin-bottom: 1.5rem;
	}

	.kanri-junkun__body {
		margin-bottom: 1.25rem;
		padding: 1.25rem 1rem;
	}

	.kanri-junkun__lead {
		margin-bottom: 1.25rem;
		font-size: 1.0625rem;
		line-height: 1.7;
		text-align: center;
	}

	.kanri-junkun__figure {
		max-width: none;
	}

	.kanri-junkun__text {
		font-size: 1rem;
		line-height: 1.7;
	}

	.kanri-page .kanri-junkun__stats {
		font-size: 1.125rem;
		font-weight: 700;
		line-height: 1.5;
		text-align: center;
	}
}

/* Needs — ニーズ一覧 */
.kanri-needs {
	background: #fff;
	padding: 4rem 0 4.5rem;
}

.kanri-needs__title {
	margin: 0 0 2.5rem;
	color: #f62837;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.kanri-needs__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kanri-needs__item {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding: 1.5rem 1.625rem;
	background: #fff;
	border: 1px solid #fde8ea;
	border-radius: 0.875rem;
	box-shadow: 0 0.25rem 0.875rem rgba(246, 40, 55, 0.07);
}

.kanri-needs__check {
	flex-shrink: 0;
	display: block;
	width: 2.375rem;
	height: 2.375rem;
	margin-top: 0.125rem;
}

.kanri-needs__check img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.kanri-needs__text {
	margin: 0;
	color: #222;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.65;
}

@media screen and (min-width: 770px) {
	.kanri-needs__item:nth-child(odd) {
		transform: translateY(0.375rem);
	}
}

@media screen and (max-width: 769px) {
	.kanri-needs {
		padding: 2.5rem 0 3rem;
	}

	.kanri-needs__title {
		font-size: 1.375rem;
		margin-bottom: 1.5rem;
	}

	.kanri-needs__list {
		grid-template-columns: 1fr;
		gap: 0.875rem;
	}

	.kanri-needs__item {
		gap: 0.75rem;
		padding: 1.125rem 1rem;
	}

	.kanri-needs__item:nth-child(odd) {
		transform: none;
	}

	.kanri-needs__check {
		width: 2.125rem;
		height: 2.125rem;
	}

	.kanri-needs__text {
		font-size: 1.0625rem;
		line-height: 1.6;
	}
}

/* Voice — お客様の声 */
.kanri-voice {
	background: #ffebec;
	padding: 4rem 0 4.5rem;
}

.kanri-voice__title {
	margin: 0 0 2.5rem;
	color: #f62837;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.kanri-voice__cards {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	max-width: 56rem;
	margin-inline: auto;
}

.kanri-voice-card {
	display: grid;
	grid-template-columns: 11rem 1fr;
	gap: 1.5rem 2rem;
	align-items: start;
}

.kanri-voice-card__profile {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.kanri-voice-card__photo {
	width: 9rem;
	height: 9rem;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #fff;
	box-shadow: 0 0.25rem 1rem rgba(246, 40, 55, 0.18);
}

.kanri-voice-card__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kanri-voice-card__photo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fde8ea;
	border: 4px solid #fff;
}

.kanri-voice-card__photo-label {
	color: #7a8fa8;
	font-size: 0.875rem;
	font-weight: 700;
}

.kanri-voice-card__label {
	margin: 0.875rem 0 0.375rem;
	padding: 0.3125rem 0.75rem;
	background: #f62837;
	border-radius: 999px;
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.4;
}

.kanri-voice-card__meta {
	margin: 0;
	color: #666;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.5;
}

.kanri-voice-card__bubble {
	position: relative;
	padding: 2rem 2.25rem;
	background: #fff;
	border: 2px solid #f62837;
	border-radius: 1.25rem;
	box-shadow: 0 0.25rem 1rem rgba(246, 40, 55, 0.1);
}

.kanri-voice-card__bubble::before {
	content: "";
	position: absolute;
	top: 2.75rem;
	left: -0.875rem;
	width: 0;
	height: 0;
	border-top: 0.75rem solid transparent;
	border-bottom: 0.75rem solid transparent;
	border-right: 0.875rem solid #f62837;
}

.kanri-voice-card__bubble::after {
	content: "";
	position: absolute;
	top: 2.8125rem;
	left: -0.6875rem;
	width: 0;
	height: 0;
	border-top: 0.6875rem solid transparent;
	border-bottom: 0.6875rem solid transparent;
	border-right: 0.75rem solid #fff;
}

.kanri-voice-card__quote {
	margin: 0;
	padding: 0;
	border: none;
	color: #222;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.875;
}

.kanri-voice-card__quote p {
	margin: 0;
}

.kanri-voice-card__quote p + p {
	margin-top: 1rem;
}

.kanri-voice-card__mark {
	font-weight: 700;
	font-size: 1.0625em;
	background: linear-gradient(transparent 62%, rgba(246, 40, 55, 0.14) 62%);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	padding: 0 0.05em;
}

@media screen and (max-width: 769px) {
	.kanri-voice {
		padding: 2.5rem 0 3rem;
	}

	.kanri-voice__title {
		font-size: 1.375rem;
		margin-bottom: 1.5rem;
	}

	.kanri-voice__cards {
		gap: 2rem;
	}

	.kanri-voice-card {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.kanri-voice-card__photo {
		width: 7.5rem;
		height: 7.5rem;
	}

	.kanri-voice-card__bubble {
		padding: 1.25rem 1.125rem;
	}

	.kanri-voice-card__bubble::before {
		top: -0.875rem;
		left: 50%;
		transform: translateX(-50%);
		border-top: none;
		border-bottom: 0.875rem solid #f62837;
		border-left: 0.75rem solid transparent;
		border-right: 0.75rem solid transparent;
	}

	.kanri-voice-card__bubble::after {
		top: -0.6875rem;
		left: 50%;
		transform: translateX(-50%);
		border-top: none;
		border-bottom: 0.75rem solid #fff;
		border-left: 0.6875rem solid transparent;
		border-right: 0.6875rem solid transparent;
	}

	.kanri-voice-card__quote {
		font-size: 1rem;
		line-height: 1.75;
	}
}

/* Flow — 業務フロー */
.kanri-flow,
.index-company,
.about-voice {
	background: #fff;
	padding: 4rem 0 4.5rem;
}

.kanri-flow__title,
.index-company__title,
.about-voice__title,
.kanri-page .about-voice__title {
	margin: 0 0 2.5rem;
	margin-left: 0;
	color: #f62837;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.kanri-flow__steps {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin-top: 2.625rem;
}

.kanri-flow__step {
	align-items: center;
	background: #ededed;
	border-radius: 0.375rem;
	display: flex;
	justify-content: center;
	min-height: 3.125rem;
	padding-block: 0.6875rem;
	width: 41.75rem;
	max-width: 100%;
}

.kanri-flow__step + .kanri-flow__step {
	margin-top: 1.875rem;
	position: relative;
}

.kanri-flow__step + .kanri-flow__step::before {
	background: url(../img/partner/index/flow-polygon.svg) no-repeat center center/contain;
	content: "";
	height: 0.6875rem;
	left: 50%;
	position: absolute;
	top: -1.5625rem;
	transform: translateX(-50%);
	width: 2rem;
}

.kanri-flow__step-text {
	margin: 0;
	color: #444;
	font-size: 1.0625rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}

.kanri-flow__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin: 2.625rem 0 0;
	text-align: center;
}

.kanri-flow__cta-text {
	margin: 0;
	color: #ff8144;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.65;
}

.kanri-flow__cta-btn {
	align-items: center;
	background: #f62837;
	border: 0.25rem solid #fff;
	border-radius: 1.875rem;
	box-shadow:
		0 0.375rem 1rem rgba(246, 40, 55, 0.35),
		0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
	color: #fff;
	display: inline-flex;
	justify-content: center;
	padding: 0.8125rem 4.25rem 0.75rem 2.625rem;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	width: fit-content;
}

.kanri-flow__cta-btn span {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	position: relative;
}

.kanri-flow__cta-btn span::after {
	background: url(../img/icon/ico_circle-arrow-right.svg) no-repeat center center/cover;
	content: "";
	height: 1.75rem;
	position: absolute;
	right: -2.625rem;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.15s ease;
	width: 1.75rem;
}

.kanri-flow__cta-btn--sm {
	padding: 0.5625rem 3rem 0.5rem 1.75rem;
	border-width: 0.1875rem;
	box-shadow:
		0 0.25rem 0.75rem rgba(246, 40, 55, 0.3),
		0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
}

.kanri-flow__cta-btn--sm span {
	font-size: 0.9375rem;
}

.kanri-flow__cta-btn--sm span::after {
	right: -2rem;
	width: 1.25rem;
	height: 1.25rem;
}

.kanri-flow__cta .kanri-flow__cta-btn {
	background: #ff8144;
	box-shadow:
		0 0.375rem 1rem rgba(255, 129, 68, 0.35),
		0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}

.kanri-flow__cta .kanri-flow__cta-btn--sm {
	box-shadow:
		0 0.25rem 0.75rem rgba(255, 129, 68, 0.3),
		0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 770px) {
	.kanri-flow__cta-btn:hover {
		transform: translateY(-0.125rem);
		box-shadow:
			0 0.5rem 1.25rem rgba(246, 40, 55, 0.45),
			0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
	}

	.kanri-flow__cta .kanri-flow__cta-btn:hover {
		background: #e86e32;
		box-shadow:
			0 0.5rem 1.25rem rgba(255, 129, 68, 0.45),
			0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
	}

	.kanri-flow__cta-btn:hover span::after {
		transform: translateY(-50%) translateX(0.125rem);
	}
}

@media screen and (max-width: 769px) {
	.kanri-flow,
	.index-company,
	.about-voice {
		padding: 2.5rem 0 3rem;
	}

	.kanri-flow__title,
	.index-company__title,
	.about-voice__title,
	.kanri-page .about-voice__title {
		font-size: 1.375rem;
		margin-bottom: 1.5rem;
		margin-left: 0;
	}

	.kanri-flow__steps {
		margin-top: 1.5rem;
	}

	.kanri-flow__step {
		padding-block: 0.5rem;
		width: 100%;
	}

	.kanri-flow__step + .kanri-flow__step {
		margin-top: 1.375rem;
	}

	.kanri-flow__step + .kanri-flow__step::before {
		height: 0.4375rem;
		top: -1rem;
		width: 1.125rem;
	}

	.kanri-flow__step-text {
		font-size: 0.9375rem;
		line-height: 1.45;
	}

	.kanri-flow__cta {
		margin-top: 1.5rem;
		gap: 0.75rem;
	}

	.kanri-flow__cta-text {
		font-size: 1.0625rem;
	}

	.kanri-flow__cta-btn {
		padding: 0.6875rem 3.5rem 0.625rem 2rem;
	}

	.kanri-flow__cta-btn span {
		font-size: 0.9375rem;
	}

	.kanri-flow__cta-btn span::after {
		right: -2.25rem;
		width: 1.5rem;
		height: 1.5rem;
	}

	.kanri-flow__cta-btn--sm {
		padding: 0.5rem 2.5rem 0.4375rem 1.5rem;
	}

	.kanri-flow__cta-btn--sm span {
		font-size: 0.8125rem;
	}

	.kanri-flow__cta-btn--sm span::after {
		right: -1.75rem;
		width: 1.125rem;
		height: 1.125rem;
	}
}

/* Company — パパネッツとは（partner/index.html より） */
.l-inner__kanri-company {
	padding-left: 4.875rem;
	padding-right: 4.875rem;
}

.index-company {
	margin-top: 0;
	background: #f62837;
	padding: 4rem 0 4.5rem;
}

.index-company__title {
	color: #fff;
}

.index-company__content {
	display: flex;
	gap: 1.9375rem;
	margin-top: 0;
}

.index-company__left {
	flex: 1 0 34.625rem;
}

.index-company__left-text {
	max-width: 33rem;
	margin-left: 1.5625rem;
	color: #fff;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.875;
}

.index-company__left-list {
	display: flex;
	margin-top: 2.0625rem;
	margin-left: 1.1875rem;
	padding: 0.875rem 2.75rem 1.375rem 1.25rem;
	background: #fff;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 0.3125rem;
	box-shadow: 0 6px 18px rgba(246, 40, 55, 0.18);
}

.index-company__left-list-title {
	color: #f62837;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.875;
	white-space: nowrap;
}

.index-company__left-list-categories {
	margin-left: 2.75rem;
	color: #000;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	white-space: nowrap;
}

.index-company__left-list-subcategories {
	margin-left: 2.6875rem;
	color: #000;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	white-space: nowrap;
}

.index-company__right {
	display: flex;
	flex: 1 0 32.25rem;
	align-items: flex-end;
}

.index-company__right img {
	width: 100%;
	height: auto;
	border-radius: 0.375rem;
}

@media screen and (min-width: 436px) and (max-width: 1024px) {
	.l-inner__kanri-company {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.index-company__content {
		gap: 1rem;
		align-items: flex-end;
		min-width: 0;
	}

	.index-company__left {
		flex: 1 1 0;
		min-width: 0;
	}

	.index-company__left-text {
		max-width: 100%;
		margin-left: 0.5rem;
	}

	.index-company__left-list {
		margin-left: 0;
		padding: 0.75rem 1rem 1rem;
	}

	.index-company__left-list-categories {
		margin-left: 1.5rem;
	}

	.index-company__left-list-subcategories {
		margin-left: 1.25rem;
	}

	.index-company__right {
		flex: 0 1 15rem;
		min-width: 0;
		max-width: 38%;
		align-items: flex-end;
		justify-content: center;
	}

	.index-company__right img {
		width: 100%;
		max-width: 100%;
		height: auto;
		object-fit: contain;
	}
}

@media screen and (max-width: 435px) {
	.index-company {
		padding: 2.5rem 0 3rem;
	}

	.l-inner__kanri-company {
		padding-left: 0.625rem;
		padding-right: 0.625rem;
	}

	.index-company__content {
		flex-direction: column;
		gap: 1.5rem;
		margin-top: 1.25rem;
	}

	.index-company__left {
		flex: 1 0 auto;
		min-width: 0;
		width: 100%;
	}

	.index-company__left-text {
		max-width: 100%;
		margin-left: 0;
		font-size: 1rem;
		line-height: 1.7;
	}

	.index-company__left-list {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		column-gap: 0.75rem;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		margin-left: 0;
		padding: 0.75rem 1rem 1rem;
	}

	.index-company__left-list-title {
		grid-column: 1 / -1;
		font-size: 0.8125rem;
		line-height: 1.5;
		white-space: normal;
		margin-bottom: 0.25rem;
	}

	.index-company__left-list-categories,
	.index-company__left-list-subcategories {
		margin-left: 0;
		min-width: 0;
		font-size: 0.6875rem;
		line-height: 1.55;
		white-space: normal;
		word-break: break-word;
		overflow-wrap: anywhere;
	}

	.index-company__right {
		flex: 1 0 auto;
		align-items: center;
		justify-content: center;
	}
}

/* Voice (Blog) — 先輩パートナーの声 */
.kanri-page .about-voice {
	padding: 4rem 0 4.5rem;
}

.about-voice__btn-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 2.625rem;
}

@media screen and (max-width: 769px) {
	.kanri-page .about-voice {
		padding: 2.5rem 0 3rem;
	}

	.about-voice__btn-wrapper {
		margin-top: 1.5rem;
	}
}

/* Forms — サービス資料ダウンロード / お問い合わせ */
.kanri-form-section {
	background: #fff;
	padding: 4rem 0 4.5rem;
}

.kanri-form-section--contact {
	background: #fff4eb;
}

.kanri-form-section--contact .kanri-form-section__title {
	color: #ff8144;
}

.kanri-form-section__head {
	margin-bottom: 2.5rem;
	text-align: center;
}

.kanri-form-section__title {
	margin: 0;
	color: #f62837;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.45;
}

.kanri-form-section__subtitle {
	display: block;
	margin-top: 0.375rem;
	color: #f62837;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.6;
}

.kanri-form-section__desc {
	max-width: 40rem;
	margin: 1.25rem auto 0;
	color: #444;
	font-size: 1rem;
	line-height: 1.85;
}

.kanri-form-section__required-note {
	margin: 0 0 1rem;
	color: #444;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: right;
}

.kanri-form-section__required-mark {
	color: #f62837;
	font-weight: 700;
}

.kanri-form-section__body {
	max-width: 800px;
	margin: 0 auto;
}

#kanri-download .kanri-form-section__body {
	max-width: none;
}

.kanri-download__layout {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 13fr);
	gap: 2.5rem;
	align-items: start;
	max-width: 1160px;
	margin: 0 auto;
}

.kanri-download__visual {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	max-width: 100%;
}

.kanri-download__figure {
	margin: 0;
	aspect-ratio: 842 / 595;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.12);
}

.kanri-download__figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kanri-download__mockup {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 1.375rem;
	background: linear-gradient(145deg, #fde0e3 0%, #ffebec 55%, #fff5f6 100%);
}

.kanri-download__mockup-sheet {
	width: min(100%, 10.5rem);
	padding: 1.25rem 1.125rem;
	background: #fff;
	border: 1px solid #f5c8cd;
	border-radius: 0.375rem;
	box-shadow:
		0.75rem 0.75rem 0 rgba(246, 40, 55, 0.08),
		0 0.5rem 1.5rem rgba(246, 40, 55, 0.12);
	transform: rotate(-4deg);
}

.kanri-download__mockup-badge {
	display: inline-block;
	padding: 0.25rem 0.625rem;
	background: #f62837;
	border-radius: 999px;
	color: #fff;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.4;
}

.kanri-download__mockup-title {
	margin: 0.625rem 0 0.875rem;
	color: #f62837;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.55;
}

.kanri-download__mockup-line {
	display: block;
	height: 0.375rem;
	margin-bottom: 0.5rem;
	background: #fde8ea;
	border-radius: 999px;
}

.kanri-download__mockup-line--short {
	width: 78%;
}

.kanri-download__mockup-line--shorter {
	width: 52%;
	margin-bottom: 0;
}

.kanri-download__caption {
	margin: 0;
	color: #444;
	font-size: 0.8125rem;
	line-height: 1.7;
}

.kanri-download__points {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin: 0;
	padding: 0.875rem 1rem;
	background: #fff5f6;
	border: 1px solid #fad4d7;
	border-radius: 0.625rem;
	list-style: none;
}

.kanri-download__point {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.kanri-download__point-icon {
	flex-shrink: 0;
	position: relative;
	width: 1.375rem;
	height: 1.375rem;
	margin-top: 0.125rem;
	background: linear-gradient(135deg, #f62837 0%, #ff4d5a 100%);
	border-radius: 50%;
	box-shadow: 0 0.125rem 0.375rem rgba(246, 40, 55, 0.35);
}

.kanri-download__point-icon::after {
	content: "";
	position: absolute;
	top: 0.25rem;
	left: 0.4375rem;
	width: 0.375rem;
	height: 0.5625rem;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}

.kanri-download__point-text {
	color: #222;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.6;
}

.kanri-download__form {
	min-width: 0;
}

#kanri-download .about_table_content {
	margin: 0;
}

#kanri-download .about_table_content th {
	width: 24%;
	padding: 14px 18px;
}

#kanri-download .about_table_content td {
	padding: 14px 18px;
}

#kanri-download .about_table_content .form-text,
#kanri-download .about_table_content .form-email {
	max-width: none;
	width: 100%;
}

.kanri-form-section .kanri-form-radio-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.kanri-form-section .kanri-form-radio-row label {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	font-size: 1rem;
}

.kanri-form-section .checklist.has-error,
.kanri-form-section .radio-row.has-error,
.kanri-form-section .kanri-form-radio-row.has-error {
	outline: 1px solid #f62837;
	outline-offset: 4px;
	border-radius: 4px;
}

.kanri-form-section--contact .mark.req {
	color: #f62837;
}

.kanri-form-section--contact .form-scope .btn {
	background-color: #ff8144;
}

.kanri-form-section--contact .form-scope .btn:hover {
	background-color: #e86e32;
}

.kanri-form-section--contact .form-grid input:focus,
.kanri-form-section--contact .form-grid textarea:focus {
	border-color: #f62837;
}

.kanri-form-section--contact .form-grid input.error,
.kanri-form-section--contact .form-grid textarea.error {
	border-color: #f62837;
	background-color: #fff;
}

@media screen and (max-width: 769px) {
	.kanri-form-section {
		padding: 2.5rem 0 3rem;
	}

	.kanri-form-section__head {
		margin-bottom: 1.5rem;
	}

	.kanri-form-section__title {
		font-size: 1.375rem;
	}

	.kanri-form-section__subtitle {
		font-size: 0.875rem;
	}

	.kanri-form-section__desc {
		padding-inline: 0.625rem;
		font-size: 1.0625rem;
		line-height: 1.75;
	}

	.kanri-download__layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.kanri-download__mockup {
		padding: 1.5rem;
	}

	.kanri-download__mockup-sheet {
		width: min(100%, 13rem);
		padding: 1.5rem 1.25rem;
	}

	.kanri-download__mockup-title {
		font-size: 1rem;
	}

	.kanri-download__caption {
		font-size: 0.875rem;
	}

	.kanri-download__points {
		padding: 1rem;
	}

	.kanri-download__point-text {
		font-size: 0.875rem;
	}

	.kanri-download__form {
		width: 100%;
	}

	/* サービス資料DLフォーム — グレーラベルを問い合わせと同幅に */
	#kanri-download .about_table_content th,
	#kanri-download .about_table_content td {
		width: 100%;
		box-sizing: border-box;
	}

	#kanri-download .about_table_content th {
		padding: 14px 16px;
		background-color: #f7f6f5;
		border-bottom: 1px solid #e6e6e6;
	}

	#kanri-download .about_table_content td {
		padding: 14px 16px;
	}

	#kanri-download .about_table_content tr {
		border-color: #e6e6e6;
	}

	/* 内容確認ボタン — 中央揃え */
	.kanri-page .kanri-form-section .form-scope .actions {
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.kanri-page .kanri-form-section .form-scope .actions .btn {
		width: auto;
		max-width: 100%;
		margin-inline: auto;
		text-align: center;
	}
}

/* Bottom Float — サービス資料ダウンロード / お問い合わせ */
.kanri-bottom-float-wrapper {
	position: fixed;
	right: 0;
	bottom: 5.5rem;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.5rem;
}

.kanri-bottom-float {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14.5rem;
	padding: 0.875rem 1rem 0.875rem 1.125rem;
	background: #f62837;
	border: 2px solid #fff;
	border-right: none;
	border-radius: 0.5rem 0 0 0.5rem;
	box-shadow: 0 0.125rem 0.625rem rgba(246, 40, 55, 0.22);
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.kanri-bottom-float span {
	display: inline-block;
	position: relative;
	width: 100%;
	padding-right: 1.5rem;
	text-align: center;
}

.kanri-bottom-float span::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1.125rem;
	height: 1.125rem;
	background: url(../img/icon/ico_circle-arrow-right.svg) no-repeat center center/contain;
	transform: translateY(-50%);
}

.kanri-bottom-float:hover {
	background: #e02230;
	box-shadow: 0 0.25rem 0.875rem rgba(246, 40, 55, 0.3);
	transform: translateY(-1px);
}

.kanri-bottom-float--contact {
	background: linear-gradient(90deg, #ff8144 0%, #ff9a56 100%);
	box-shadow: 0 0.125rem 0.625rem rgba(255, 129, 68, 0.28);
}

.kanri-bottom-float--contact:hover {
	background: linear-gradient(90deg, #ff8144 0%, #ff9a56 100%);
	box-shadow: 0 0.25rem 0.875rem rgba(255, 129, 68, 0.36);
}

.kanri-page .site-footer .pagetop {
	display: none;
}

.kanri-page .kanri-pagetop {
	position: fixed;
	right: 0.875rem;
	bottom: 1.125rem;
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.18);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.kanri-page .kanri-pagetop:hover {
	background: #ffebec;
	transform: translateY(-2px);
}

.kanri-page .kanri-pagetop .pagetop__icon,
.kanri-page .kanri-pagetop .pagetop__icon path {
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	fill: #f62837;
}

@media screen and (max-width: 769px) {
	.kanri-bottom-float-wrapper {
		bottom: 4.75rem;
	}

	.kanri-page .kanri-bottom-float {
		width: 12.5rem;
		padding: 0.75rem 0.875rem 0.75rem 1rem;
		font-size: 0.8125rem;
	}

	.kanri-page .kanri-bottom-float span {
		font-size: 0.8125rem;
		line-height: 1.35;
		padding-right: 1.25rem;
		white-space: nowrap;
	}

	.kanri-page .kanri-bottom-float span::after {
		width: 1rem;
		height: 1rem;
	}

	.kanri-page .kanri-pagetop {
		right: 0.75rem;
		bottom: 0.875rem;
		width: 2.75rem;
		height: 2.75rem;
	}

	.kanri-page .kanri-pagetop .pagetop__icon {
		width: 1.125rem;
		height: 1.125rem;
	}
}

/* フォーム — px指定部分（PC） */
@media screen and (min-width: 770px) {
	.kanri-page .about_table_content th,
	.kanri-page .about_table_content .form-control,
	.kanri-page .about_table_content #IC label {
		font-size: 16px;
	}

	.kanri-page .about_table_content .mini,
	.kanri-page .about_table_content .comment,
	.kanri-page .about_table_content .comment_right {
		font-size: 14px;
	}
}

/* SP — 文字サイズ統一 */
@media screen and (max-width: 769px) {
	/* セクション見出し h2 */
	.kanri-page .kanri-movie__title,
	.kanri-page .kanri-download-promo__title,
	.kanri-page .kanri-nav__title,
	.kanri-page .kanri-reason__title,
	.kanri-page .kanri-junkun__title,
	.kanri-page .kanri-needs__title,
	.kanri-page .kanri-voice__title,
	.kanri-page .kanri-flow__title,
	.kanri-page .index-company__title,
	.kanri-page .about-voice__title,
	.kanri-page .kanri-form-section__title {
		font-size: 1.375rem;
		line-height: 1.45;
	}

	/* 小見出し h3 相当 */
	.kanri-page .kanri-accordion__title,
	.kanri-page .kanri-accordion__section-title,
	.kanri-page .kanri-reason__item-title,
	.kanri-page .kanri-service-card__example-title,
	.kanri-page .kanri-service-card__download-title span {
		font-size: 1.125rem;
		line-height: 1.5;
	}

	/* 本文 */
	.kanri-page .kanri-download-promo__text,
	.kanri-page .kanri-accordion__lead,
	.kanri-page .kanri-accordion__section-text,
	.kanri-page .kanri-reason__text,
	.kanri-page .kanri-junkun__lead,
	.kanri-page .kanri-junkun__text,
	.kanri-page .kanri-needs__text,
	.kanri-page .kanri-voice-card__quote,
	.kanri-page .kanri-flow__step-text,
	.kanri-page .index-company__left-text,
	.kanri-page .kanri-form-section__desc,
	.kanri-page .kanri-download__caption,
	.kanri-page .kanri-download__point-text {
		font-size: 1rem;
		line-height: 1.75;
	}

	/* 強調文 */
	.kanri-page .kanri-reason__summary,
	.kanri-page .kanri-flow__cta-text {
		font-size: 1.125rem;
		line-height: 1.7;
	}

	/* 補足・ラベル */
	.kanri-page .kanri-voice-card__meta,
	.kanri-page .kanri-reason__note,
	.kanri-page .kanri-form-section__subtitle,
	.kanri-page .form-scope .note,
	.kanri-page .kanri-service-card__download-wrapper a,
	.kanri-page .about-voice-card__arrow {
		font-size: 0.875rem;
		line-height: 1.6;
	}

	/* 支店一覧ボックス（SPのみ少し小さく） */
	.kanri-page .index-company__left-list-title {
		font-size: 0.8125rem;
		line-height: 1.5;
	}

	.kanri-page .index-company__left-list-categories,
	.kanri-page .index-company__left-list-subcategories {
		font-size: 0.6875rem;
		line-height: 1.55;
	}

	/* フォーム */
	.kanri-page .about_table_content th,
	.kanri-page .about_table_content .form-control,
	.kanri-page .about_table_content #IC label,
	.kanri-page .about_table_content .mini,
	.kanri-page .about_table_content .comment,
	.kanri-page .about_table_content .comment_right,
	.kanri-page .form-grid .field-label,
	.kanri-page .form-grid input,
	.kanri-page .form-grid textarea,
	.kanri-page .checklist label,
	.kanri-page .radio-row label {
		font-size: 1rem;
		line-height: 1.6;
	}

	/* ボタン */
	.kanri-page .kanri-flow__cta-btn span,
	.kanri-page .kanri-flow__cta-btn--sm span {
		font-size: 1rem;
		line-height: 1.4;
	}

	/* 先輩パートナーの声（voice.css 上書き） */
	.kanri-page .about-voice-card__title {
		font-size: 1rem;
		line-height: 1.5;
	}

	.kanri-page .about-voice-card__text,
	.kanri-page .about-voice-card__date,
	.kanri-page .about-voice-card__category {
		font-size: 0.875rem;
		line-height: 1.6;
	}
}

/* 基調色 — kanri.css / 共通コンポーネント上書き（青 → #f62837） */
.kanri-page .kanri-hero__bg-text h1,
.kanri-page .kanri-movie__title,
.kanri-page .kanri-support__title,
.kanri-page .kanri-support-card__title,
.kanri-page .kanri-service__title,
.kanri-page .kanri-service-card__title,
.kanri-page .kanri-service-card__example-title {
	color: #f62837;
}

.kanri-page .kanri-support-card {
	border-color: #f62837;
}

.kanri-page .c-btn__round.--blue {
	background: #f62837;
}

.kanri-page .c-btn__round.--blue:hover {
	background: #ff4d5a;
}

.kanri-page .kanri-flow__cta .c-btn__round.--blue {
	background: #ff8144;
}

.kanri-page .kanri-flow__cta .c-btn__round.--blue:hover {
	background: #e86e32;
}

.kanri-page .form-scope .btn:not(.btn--secondary) {
	background-color: #f62837 !important;
}

.kanri-page .form-scope .btn:not(.btn--secondary):hover {
	background-color: #ff4d5a !important;
}

.kanri-page .kanri-form-section--contact .form-scope .btn:not(.btn--secondary) {
	background-color: #ff8144 !important;
}

.kanri-page .kanri-form-section--contact .form-scope .btn:not(.btn--secondary):hover {
	background-color: #e86e32 !important;
}

.kanri-page .about_table_content .comment_red,
.kanri-page .mark.req {
	color: #f62837 !important;
}

.kanri-page .about_table_content .form-control:focus,
.kanri-page .about_table_content input:focus,
.kanri-page .about_table_content textarea:focus,
.kanri-page .about_table_content select:focus,
.kanri-page .form-grid input:focus,
.kanri-page .form-grid textarea:focus {
	border-color: #f62837 !important;
}

.kanri-page .form-grid input.error,
.kanri-page .form-grid textarea.error {
	border-color: #f62837 !important;
}

.kanri-page .radio-row input[type="radio"]:checked::after {
	background-color: #f62837;
}

.kanri-page .radio-row input[type="radio"]:hover {
	border-color: #f62837;
}
