/**
 * TOKUMORI components
 * Figma: BUTTON / tab / h2 / card / logo
 */

/* -------------------------------------------------------------------------- */
/* Shared
/* -------------------------------------------------------------------------- */

:root {
	--tokumori-gradient: linear-gradient(105deg, #af322c 0%, #fe6760 100%);
	--tokumori-font-display: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--tokumori-font-mobo: "MOBO", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--tokumori-font-en: "Barlow Condensed", "Arial Narrow", sans-serif;
}

body {
	font-family: var(--tokumori-font-display);
}

.k-start {
	margin-left: -0.6em;
	display: inline-block;
}

.k-end {
	margin-right: -0.4em;
	display: inline-block;
}

.c-icon-chevron {
	display: inline-block;
	width: 0.625em;
	height: 1em;
	flex-shrink: 0;
	background-color: currentColor;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='black' d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z'/%3E%3C/svg%3E") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='black' d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Figma BUTTON download Icon 24×24 */
.c-icon-download {
	display: inline-block;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	background-color: currentColor;
	mask: url("../img/common/icon-download-btn.svg") center / contain no-repeat;
	-webkit-mask: url("../img/common/icon-download-btn.svg") center / contain no-repeat;
}

/* -------------------------------------------------------------------------- */
/* Logo
/* -------------------------------------------------------------------------- */

.c-logo {
	display: inline-block;
	line-height: 0;
}

.c-logo img {
	display: block;
	width: auto;
	height: 2.5rem;
	max-width: 100%;
}

.c-logo--lg img {
	height: 3.5rem;
}

.c-logo--sm img {
	height: 1.75rem;
}

/* -------------------------------------------------------------------------- */
/* Button
/* -------------------------------------------------------------------------- */

.c-btn {
	--c-btn-color: #fff;
	--c-btn-bg: var(--tokumori-gradient);
	--c-btn-border: transparent;
	--c-btn-radius: 37px;
	--c-btn-pad-y: 20px;
	--c-btn-pad-x: 20px;
	--c-btn-gap: 8px;
	--c-btn-min-w: 270px;
	--c-btn-font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	--c-btn-weight: 600;
	--c-btn-lh: 1.3;

	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--c-btn-gap);
	min-width: var(--c-btn-min-w);
	padding: var(--c-btn-pad-y) var(--c-btn-pad-x);
	/* transparent 2px border + large radius causes 1px “ears” on pill tips */
	border: 0;
	border-radius: var(--c-btn-radius);
	background: var(--c-btn-bg);
	background-clip: padding-box;
	color: var(--c-btn-color);
	font-family: var(--tokumori-font-display);
	font-size: var(--c-btn-font-size);
	font-weight: var(--c-btn-weight);
	line-height: var(--c-btn-lh);
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	isolation: isolate;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.c-btn:hover,
.c-btn:focus-visible {
	opacity: 0.9;
	text-decoration: none;
	color: var(--c-btn-color);
}

.c-btn:active {
	transform: translateY(1px);
}

.c-btn__label {
	flex: 1 1 auto;
	text-align: left;
}

.c-btn__icon {
	color: inherit;
	flex: 0 0 auto;
}

/* Primary — filled gradient */
.c-btn--primary {
	--c-btn-color: #fff;
	--c-btn-bg: var(--tokumori-gradient);
	--c-btn-border: transparent;
	border: 0;
	background: var(--tokumori-gradient);
	background-clip: padding-box;
}

/* Secondary — gradient outline + text */
.c-btn--secondary {
	--c-btn-color: #af322c;
	--c-btn-bg: transparent;
	--c-btn-border: transparent;
	position: relative;
	background: transparent;
	overflow: visible;
}

.c-btn--secondary::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 2px;
	background: var(--tokumori-gradient);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 0;
}

.c-btn--secondary .c-btn__label {
	position: relative;
	z-index: 1;
	background: var(--tokumori-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Chevron is mask + background fill — use same gradient as label */
.c-btn--secondary .c-btn__icon {
	position: relative;
	z-index: 1;
	color: transparent;
	background: var(--tokumori-gradient);
}

/* Link — dark outline */
.c-btn--link {
	--c-btn-color: var(--color-main-dark, #333);
	--c-btn-bg: transparent;
	--c-btn-border: var(--color-main-dark, #333);
	border: 2px solid var(--c-btn-border);
	overflow: hidden;
}

/* Big CTA variants */
.c-btn-wrap {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: min(100%, 498.5px);
	text-decoration: none;
}

.c-btn-wrap__eyebrow {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1.5;
	background: var(--tokumori-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.c-btn--big {
	--c-btn-radius: 70px;
	--c-btn-pad-y: 30px;
	--c-btn-pad-x: 40px;
	--c-btn-gap: 40px;
	--c-btn-min-w: 100%;
	width: 100%;
	align-items: center;
}

.c-btn--big .c-btn__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	flex: 1 1 auto;
	text-align: left;
}

.c-btn--big .c-btn__title {
	margin: 0;
	font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1.5;
}

.c-btn--big .c-btn__desc {
	margin: 0;
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.5;
	white-space: pre-line;
}

.c-btn--big .c-btn__desc-sp {
	display: none;
}

@media (max-width: 1100px) {
	.c-btn--big .c-btn__desc-pc {
		display: none;
	}

	.c-btn--big .c-btn__desc-sp {
		display: block;
	}
}

.c-btn--big.c-btn--primary-outline {
	--c-btn-color: #af322c;
	--c-btn-bg: transparent;
	--c-btn-border: transparent;
	position: relative;
	background: transparent;
	overflow: visible;
}

.c-btn--big.c-btn--primary-outline::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 2px;
	background: var(--tokumori-gradient);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 0;
}

.c-btn--big.c-btn--primary-outline .c-btn__title,
.c-btn--big.c-btn--primary-outline .c-btn__desc {
	position: relative;
	z-index: 1;
	background: var(--tokumori-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.c-btn--big.c-btn--primary-outline .c-btn__icon {
	position: relative;
	z-index: 1;
	color: transparent;
	background: var(--tokumori-gradient);
}

.c-btn--big.c-btn--secondary-fill {
	--c-btn-color: #fff;
	--c-btn-bg: var(--tokumori-gradient);
	--c-btn-border: transparent;
	border: 0;
	overflow: hidden;
}

/* -------------------------------------------------------------------------- */
/* Accordion
/* -------------------------------------------------------------------------- */

.c-accordion {
	width: 100%;
	max-width: 529px;
}

.c-accordion__item {
	border: 1px solid var(--color-main-dark, #333);
	border-radius: 10px;
	overflow: hidden;
}

.c-accordion__item + .c-accordion__item {
	margin-top: 12px;
}

.c-accordion__trigger {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	margin: 0;
	padding: 20px 48px;
	border: 0;
	background: transparent;
	color: var(--color-main-dark, #333);
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
	font-weight: 600;
	line-height: 1.8;
	text-align: center;
	cursor: pointer;
}

.c-accordion__title {
	flex: 1 1 auto;
	white-space: pre-line;
}

.c-accordion__icon {
	transform: rotate(90deg);
	transition: transform 0.25s ease;
}

.c-accordion__item.is-open .c-accordion__icon {
	transform: rotate(-90deg);
}

.c-accordion__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.c-accordion__item.is-open .c-accordion__panel {
	grid-template-rows: 1fr;
}

.c-accordion__panel-inner {
	overflow: hidden;
}

.c-accordion__content {
	padding: 0 48px 24px;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 400;
	line-height: 1.8;
	color: var(--color-main-dark, #333);
	text-align: left;
}

@media (max-width: 600px) {
	.c-accordion__trigger,
	.c-accordion__content {
		padding-left: 24px;
		padding-right: 24px;
	}

	.c-accordion__trigger {
		font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
		text-align: left;
	}
}

/* -------------------------------------------------------------------------- */
/* Heading (h2 variations)
/* -------------------------------------------------------------------------- */

.c-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	text-align: center;
}

.c-heading__main {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	max-width: 630px;
	width: 100%;
}

.c-heading__en-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.c-heading__en-accent {
	display: block;
	width: 41px;
	height: auto;
}

.c-heading__en {
	margin: 0;
	font-family: var(--tokumori-font-en);
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1.5;
	color: var(--color-primary, #af322c);
	text-transform: none;
}

.c-heading__title {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(1.5rem, 4vw, 2.5rem); /* 40px desktop */
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.3;
	color: #000;
	text-wrap: balance;
}

.c-heading__lead {
	margin: 0;
	max-width: 448px;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.8;
	color: #000;
	white-space: pre-line;
}

/* -------------------------------------------------------------------------- */
/* Card — Figma 382:24766 (Default) / 513:8431 (Hover)
/* -------------------------------------------------------------------------- */

.c-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	box-sizing: border-box;
	width: 100%;
	max-width: 319px;
	padding: 20px;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	background: #fff;
	text-decoration: none;
	color: inherit;
	transition:
		background-color 0.3s ease,
		border-color 0.3s ease;
}

.c-card:hover,
.c-card:focus-visible {
	background: #faf5f6;
	border-color: #af322c;
	color: inherit;
	text-decoration: none;
}

.c-card--small {
	max-width: 319px;
}

.c-card__media {
	position: relative;
	aspect-ratio: 279 / 150;
	overflow: hidden;
	border-radius: 10px;
	background: #e4e4e4;
}

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

.c-card__media-placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: var(--color-main-dark, #333);
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(28 * 100vw / 410), 28px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.6;
	-webkit-text-stroke: 4px #fff;
	paint-order: stroke fill;
}

.c-card__badge {
	position: absolute;
	left: 10px;
	bottom: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 100px;
	padding: 6px 12px;
	border-radius: 10px;
	background: #fff;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 700;
	line-height: 1;
	color: var(--color-main-dark, #333);
	text-align: center;
}

.c-card__body {
	display: flex;
	flex-direction: column;
	gap: 32px;
	min-width: 0;
}

.c-card__content {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
}

.c-card__meta {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
}

.c-card__industry {
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: var(--color-main-dark, #333);
}

.c-card__company {
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: var(--color-main-dark, #333);
	transition: color 0.3s ease;
}

.c-card:hover .c-card__company,
.c-card:focus-visible .c-card__company {
	color: #af322c;
}

.c-card__title {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: var(--color-gray, #838586);
}

.c-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.c-card__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 12px;
	border: 0;
	border-radius: 8px;
	background: #fff8f8;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.6;
	color: #af322c;
}

@media (prefers-reduced-motion: reduce) {
	.c-card,
	.c-card__company {
		transition: none;
	}
}

/* -------------------------------------------------------------------------- */
/* Pagination — Figma 1260:48485 / 388:28620
/* -------------------------------------------------------------------------- */

.c-pagination .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-pagination .page-numbers li {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	line-height: 0;
}

.c-pagination .page-numbers a,
.c-pagination .page-numbers span {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border-radius: 4px;
	background-color: #fff;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 1;
	color: var(--color-main-dark, #333);
	text-decoration: none;
	text-align: center;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.c-pagination .page-numbers a:hover,
.c-pagination .page-numbers a:focus-visible {
	background-color: #faf5f6;
	color: var(--color-main-dark, #333);
	text-decoration: none;
}

.c-pagination .page-numbers .current {
	background-color: #af322c;
	font-weight: 700;
	color: #fff;
}

.c-pagination .page-numbers .dots {
	letter-spacing: 0;
}

.c-pagination .page-numbers .prev,
.c-pagination .page-numbers .next {
	position: relative;
	color: transparent;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
	background-color: #fff;
	background-image: none;
}

.c-pagination .page-numbers .prev::before,
.c-pagination .page-numbers .next::before {
	content: "";
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 28px 28px;
	pointer-events: none;
}

.c-pagination .page-numbers .prev::before {
	background-image: url("../img/common/pagination-chevron-prev.svg");
}

.c-pagination .page-numbers .next::before {
	background-image: url("../img/common/pagination-chevron-next.svg");
}

.c-pagination .page-numbers .prev:hover,
.c-pagination .page-numbers .prev:focus-visible,
.c-pagination .page-numbers .next:hover,
.c-pagination .page-numbers .next:focus-visible {
	background-color: #faf5f6;
}

.c-pagination .page-numbers .prev.disabled,
.c-pagination .page-numbers .next.disabled,
.c-pagination .page-numbers span.prev,
.c-pagination .page-numbers span.next {
	opacity: 0.35;
	pointer-events: none;
}

/* -------------------------------------------------------------------------- */
/* Button size modifiers (header / footer)
/* -------------------------------------------------------------------------- */

.c-btn--header {
	--c-btn-min-w: 0;
	--c-btn-pad-y: 0;
	--c-btn-pad-x: 24px;
	--c-btn-radius: 37px;
	--c-btn-font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	--c-btn-weight: 700;
	--c-btn-lh: 1.8;
	--c-btn-gap: 0;
	height: 48px;
	min-height: 48px;
	justify-content: center;
	letter-spacing: 1.2px;
}

.c-btn--header .c-btn__label {
	flex: 0 1 auto;
	letter-spacing: 1.2px;
	font-weight: 700;
	line-height: 1.8;
	white-space: nowrap;
	text-align: center;
}

.c-btn--header.c-btn--primary {
	--c-btn-color: #fff;
	--c-btn-bg: #af322c;
	background: #af322c;
	background-clip: padding-box;
}

.c-btn--header.c-btn--secondary {
	--c-btn-color: #af322c;
	--c-btn-bg: #fff;
	background: #fff;
}

.c-btn--header.c-btn--secondary::before {
	padding: 1px;
	background: #af322c;
}

.c-btn--header.c-btn--secondary .c-btn__label {
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: #af322c;
	color: #af322c;
}

.c-btn--footer {
	--c-btn-min-w: 0;
	--c-btn-pad-y: 0;
	--c-btn-pad-x: 24px;
	--c-btn-radius: 37px;
	--c-btn-font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	--c-btn-weight: 700;
	--c-btn-lh: 1.8;
	--c-btn-gap: 0;
	height: 48px;
	min-height: 48px;
	justify-content: center;
	letter-spacing: 1.2px;
}

.c-btn--footer.c-btn--primary {
	--c-btn-color: #fff;
	--c-btn-bg: #af322c;
	background: #af322c;
	background-clip: padding-box;
}

.c-btn--footer.c-btn--secondary {
	--c-btn-color: #af322c;
	--c-btn-bg: #fff;
	background: #fff;
}

.c-btn--footer.c-btn--secondary::before {
	padding: 1px;
	background: #af322c;
}

.c-btn--footer.c-btn--secondary .c-btn__label {
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: #af322c;
	color: #af322c;
}

/* -------------------------------------------------------------------------- */
/* Header — Figma 512:8372 (PC) / 440:10222 (SP) / 739:18646 (SP open)
/* -------------------------------------------------------------------------- */

.c-header {
	position: sticky;
	top: 0;
	z-index: 100;
	box-sizing: border-box;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #d9d9d9;
}

.c-header__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	box-sizing: border-box;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 12px 40px;
	background: #fff;
}

.c-header .c-logo img {
	height: 35px;
	width: auto;
}

.c-header__right {
	display: flex;
	align-items: center;
	gap: 24px;
	min-width: 0;
}

.c-header__nav {
	display: block;
}

.c-header__menu {
	display: flex;
	align-items: center;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.c-header__menu-link,
.c-header__menu a {
	display: inline-block;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: var(--color-main-dark, #333);
	text-decoration: underline solid transparent;
	text-underline-offset: 0.2em;
	white-space: nowrap;
	transition: text-decoration-color 0.25s ease;
}

.c-header__menu-link:hover,
.c-header__menu a:hover {
	text-decoration-color: currentColor;
}

.c-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.c-header__menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: var(--color-main-dark, #333);
}

.c-header__menu-toggle-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 20px;
	height: 16px;
}

.c-header__menu-toggle-icon span {
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	border-radius: 1px;
	transform-origin: center;
	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.25s ease;
}

.c-header.is-menu-open .c-header__menu-toggle-icon span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.c-header.is-menu-open .c-header__menu-toggle-icon span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.c-header.is-menu-open .c-header__menu-toggle-icon span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Figma SP menu CTA 739:18669 — full width; Icon 24 slot, Symbol ~7.9×13.8 (no circle) */
.c-btn--drawer {
	--c-btn-min-w: 0;
	--c-btn-pad-y: 0;
	--c-btn-pad-x: 16px;
	--c-btn-radius: 37px;
	--c-btn-font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	--c-btn-weight: 700;
	--c-btn-lh: 1.8;
	--c-btn-gap: 8px;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	height: 56px;
	min-height: 56px;
	padding: 0 16px 0 4px;
	justify-content: space-between;
	letter-spacing: 1.2px;
}

.c-btn--drawer.c-btn--primary {
	--c-btn-color: #fff;
	--c-btn-bg: #af322c;
	background: #af322c;
	background-clip: padding-box;
}

.c-btn--drawer.c-btn--secondary {
	--c-btn-color: #af322c;
	--c-btn-bg: #fff;
	background: #fff;
}

.c-btn--drawer.c-btn--secondary::before {
	padding: 1px;
	background: #af322c;
}

.c-btn--drawer.c-btn--secondary .c-btn__label {
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: #af322c;
	color: #af322c;
}

.c-btn--drawer .c-btn__lead,
.c-btn--drawer .c-btn__icon {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
}

.c-btn--drawer .c-btn__label {
	flex: 1 1 auto;
	letter-spacing: 1.2px;
	font-weight: 700;
	line-height: 1.8;
	text-align: center;
	white-space: nowrap;
}

.c-btn--drawer .c-btn__icon {
	display: grid;
	place-items: center;
	background: none;
	border-radius: 0;
}

.c-btn--drawer .c-btn__icon .c-icon-chevron {
	width: 8px;
	height: 14px;
	background-image: none;
}

.c-btn--drawer.c-btn--primary .c-btn__icon,
.c-btn--drawer.c-btn--secondary .c-btn__icon {
	background: none;
}

.c-btn--drawer.c-btn--primary .c-btn__icon .c-icon-chevron {
	color: #fff;
	background-color: currentColor;
}

.c-btn--drawer.c-btn--secondary .c-btn__icon .c-icon-chevron {
	color: #af322c;
	background: #af322c;
}

.c-header__drawer {
	position: fixed;
	inset: 0;
	z-index: 1;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	padding-top: 64px;
	background: #fff;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-16px);
	transition:
		opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0.4s;
}

.c-header.is-menu-open .c-header__drawer {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.c-header__drawer-inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 40px;
	box-sizing: border-box;
	width: calc(100% - 32px);
	max-width: 378px;
	margin: 0 auto;
	padding: 40px 0 24px;
}

.c-header__drawer-menu {
	display: flex;
	flex-direction: column;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.c-header__drawer-menu > li {
	opacity: 0;
	transform: translateY(12px);
	transition:
		opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.c-header.is-menu-open .c-header__drawer-menu > li {
	opacity: 1;
	transform: translateY(0);
}

.c-header.is-menu-open .c-header__drawer-menu > li:nth-child(1) {
	transition-delay: 0.06s;
}

.c-header.is-menu-open .c-header__drawer-menu > li:nth-child(2) {
	transition-delay: 0.1s;
}

.c-header.is-menu-open .c-header__drawer-menu > li:nth-child(3) {
	transition-delay: 0.14s;
}

.c-header.is-menu-open .c-header__drawer-menu > li:nth-child(4) {
	transition-delay: 0.18s;
}

.c-header.is-menu-open .c-header__drawer-menu > li:nth-child(5) {
	transition-delay: 0.22s;
}

.c-header.is-menu-open .c-header__drawer-menu > li:nth-child(6) {
	transition-delay: 0.26s;
}

.c-header__drawer-link,
.c-header__drawer-menu a {
	display: inline-block;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: var(--color-main-dark, #333);
	text-decoration: none;
	transition: color 0.2s ease;
}

.c-header__drawer-link:hover,
.c-header__drawer-link:focus-visible,
.c-header__drawer-menu a:hover,
.c-header__drawer-menu a:focus-visible {
	color: #af322c;
}

.c-nav-services {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 8px;
}

.c-nav-services__group {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.c-nav-services__title {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: var(--color-main-dark, #333);
}

.c-nav-services__list,
.c-nav-services__sub {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.c-nav-services__list {
	padding-left: 8px;
}

.c-nav-services__sub {
	margin-top: 4px;
}

.c-nav-services__sub li {
	display: flex;
	align-items: baseline;
	gap: 4px;
	padding-left: 2px;
}

.c-nav-services__sub li::before {
	content: "・";
	flex: 0 0 auto;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-main-dark, #333);
}

.c-header__drawer-menu .c-nav-services a,
.p-home-mobile-nav__menu .c-nav-services a {
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.6;
}

.c-header__drawer-menu .c-nav-services__title a,
.p-home-mobile-nav__menu .c-nav-services__title a {
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
}

.c-header__drawer-actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 24px;
	opacity: 0;
	transform: translateY(12px);
	transition:
		opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.22s,
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
}

.c-header.is-menu-open .c-header__drawer-actions {
	opacity: 1;
	transform: translateY(0);
}

.c-header__drawer-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	opacity: 0;
	transform: translateY(12px);
	transition:
		opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.c-header.is-menu-open .c-header__drawer-cards {
	opacity: 1;
	transform: translateY(0);
}

.c-header__drawer-card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 0;
	padding: 16px 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.c-header__drawer-card--shukatsu {
	background: #ffede9;
	border: 1px solid transparent;
	background-image:
		linear-gradient(#ffede9, #ffede9),
		linear-gradient(135deg, #ff351a 0%, #ff9775 100%);
	background-origin: border-box;
	background-clip: padding-box, border-box;
}

.c-header__drawer-card--tenshoku {
	background: #f4f8ff;
	border: 1px solid transparent;
	background-image:
		linear-gradient(#f4f8ff, #f4f8ff),
		linear-gradient(135deg, #73aaff 24%, #b4d1ff 77%);
	background-origin: border-box;
	background-clip: padding-box, border-box;
}

.c-header__drawer-card:hover,
.c-header__drawer-card:focus-visible {
	transform: translateY(-2px);
}

.c-header__drawer-card-label {
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 700;
	line-height: 1.6;
	color: var(--color-main-dark, #333);
}

.c-header__drawer-card img {
	display: block;
	width: 125px;
	max-width: 100%;
	height: auto;
}

/* Narrow PC: keep the full nav, but shrink so it never forces page scroll. */
@media (min-width: 1101px) and (max-width: 1439px) {
	.c-header {
		overflow-x: clip;
	}

	.c-header__inner {
		gap: clamp(8px, 1.6vw, 24px);
		min-width: 0;
		padding: 12px clamp(16px, 2.8vw, 40px);
	}

	.c-header .c-logo {
		flex: 0 1 auto;
		min-width: 0;
	}

	.c-header .c-logo img {
		height: clamp(26px, 2.4vw, 35px);
		width: auto;
		max-width: min(184px, 14vw);
	}

	.c-header__right {
		flex: 1 1 auto;
		justify-content: flex-end;
		gap: clamp(8px, 1.6vw, 24px);
	}

	.c-header__nav {
		min-width: 0;
		flex: 0 1 auto;
	}

	.c-header__menu {
		gap: clamp(8px, 1.4vw, 20px);
	}

	.c-header__menu-link,
	.c-header__menu a {
		font-size: clamp(11px, calc(14 * 100vw / 1440), 14px);
		letter-spacing: clamp(0.4px, 0.08vw, 1.2px);
	}

	.c-header__actions {
		flex: 0 1 auto;
		min-width: 0;
		gap: clamp(6px, 0.8vw, 10px);
	}

	.c-header__actions .c-btn--header {
		--c-btn-pad-x: clamp(10px, 1.4vw, 24px);
		--c-btn-font-size: clamp(11px, calc(14 * 100vw / 1440), 14px);
		height: clamp(40px, 3.4vw, 48px);
		min-height: clamp(40px, 3.4vw, 48px);
		padding-right: clamp(10px, 1.4vw, 24px);
		padding-left: clamp(10px, 1.4vw, 24px);
	}

	.c-header__actions .c-btn--header .c-btn__label {
		font-size: clamp(11px, calc(14 * 100vw / 1440), 14px);
		letter-spacing: clamp(0.4px, 0.08vw, 1.2px);
	}
}

@media (max-width: 1100px) {
	.c-header__nav {
		display: none;
	}

	.c-header__btn-download {
		display: none;
	}

	.c-header__inner {
		padding: 8px 12px;
		gap: 8px;
		min-height: 64px;
	}

	.c-header .c-logo img {
		height: 23px;
	}

	.c-header__right {
		gap: 8px;
	}

	.c-header__actions .c-btn--header {
		--c-btn-pad-x: 12px;
		--c-btn-font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
		--c-btn-lh: 1.6;
		height: 40px;
		min-height: 40px;
		letter-spacing: 0;
	}

	.c-header__actions .c-btn--header .c-btn__label {
		font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
		letter-spacing: 0;
		line-height: 1.6;
	}

	.c-header__menu-toggle {
		display: inline-flex;
	}

	.c-header.is-menu-open {
		border-bottom-color: transparent;
	}

	/* Figma 739:18647 — 1px #ccc under the 64px bar (must sit above the drawer). */
	.c-header.is-menu-open .c-header__inner {
		border-bottom: 1px solid #ccc;
	}

	.c-header.is-menu-open .c-header__actions {
		display: none;
	}
}

@media (min-width: 1101px) {
	.c-header__drawer {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.c-header__menu-toggle-icon span,
	.c-header__drawer,
	.c-header__drawer-menu > li,
	.c-header__drawer-actions,
	.c-header__drawer-cards,
	.c-header__drawer-card {
		transition: none !important;
	}

	.c-header__drawer-menu > li,
	.c-header__drawer-actions,
	.c-header__drawer-cards {
		opacity: 1;
		transform: none;
	}
}

/* -------------------------------------------------------------------------- */
/* Footer — Figma 513:8785 (PC) / 1193:82581 (SP)
/* -------------------------------------------------------------------------- */

.c-footer {
	box-sizing: border-box;
	width: 100%;
	background: #faf5f6;
	color: var(--color-main-dark, #333);
}

.c-footer__inner {
	box-sizing: border-box;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 40px 80px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"brand nav"
		"rule rule"
		"bottom actions";
	column-gap: 48px;
	row-gap: 20px;
	align-items: start;
}

.c-footer__inner::before {
	content: "";
	grid-area: rule;
	display: block;
	width: 100%;
	height: 0;
	border-top: 1px solid #d9d9d9;
}

.c-footer__brand {
	grid-area: brand;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 21px;
	min-width: 0;
	max-width: 715px;
}

.c-footer .c-logo img {
	height: 35px;
	width: auto;
}

.c-footer__brand-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	width: 100%;
}

.c-footer__address {
	margin: 0;
	display: flex;
	flex-direction: column;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: var(--color-main-dark, #333);
}

.c-footer__address-line--sp {
	display: none;
}

.c-footer__nav {
	grid-area: nav;
	display: flex;
	align-items: flex-start;
	gap: 32px;
	flex-wrap: wrap;
	justify-self: end;
}

.c-footer__col {
	min-width: 0;
}

.c-footer__col-title {
	margin: 0 0 8px;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: var(--color-main-dark, #333);
}

.c-footer__col-title a {
	color: inherit;
	text-decoration: underline solid transparent;
	text-underline-offset: 0.2em;
	transition: text-decoration-color 0.25s ease;
}

.c-footer__col-title a:hover {
	text-decoration-color: currentColor;
}

.c-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.c-footer__links a {
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.6;
	color: var(--color-main-dark, #333);
	text-decoration: underline solid transparent;
	text-underline-offset: 0.2em;
	transition: text-decoration-color 0.25s ease;
}

.c-footer__links a:hover {
	text-decoration-color: currentColor;
}

.c-footer__sublinks {
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.c-footer__sublinks li {
	display: flex;
	align-items: baseline;
	gap: 4px;
	padding-left: 2px;
}

.c-footer__sublinks li::before {
	content: "・";
	flex: 0 0 auto;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-main-dark, #333);
}

.c-footer__sublinks a {
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.6;
	color: var(--color-main-dark, #333);
	text-decoration: underline solid transparent;
	text-underline-offset: 0.2em;
	transition: text-decoration-color 0.25s ease;
}

.c-footer__sublinks a:hover {
	text-decoration-color: currentColor;
}

.c-footer__links--bold {
	gap: 4px;
}

.c-footer__links--bold a {
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
}

.c-footer__actions {
	grid-area: actions;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	flex-wrap: wrap;
	align-self: center;
}

.c-footer__bottom {
	grid-area: bottom;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 48px;
}

.c-footer__legal {
	display: flex;
	align-items: center;
	gap: 16px;
}

.c-footer__legal a {
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-gray, #838586);
	text-decoration: underline solid transparent;
	text-underline-offset: 0.2em;
	transition: text-decoration-color 0.25s ease;
}

.c-footer__legal a:hover {
	text-decoration-color: currentColor;
}

.c-footer__legal--bottom {
	display: none;
}

.c-footer__copy {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: var(--color-main-dark, #333);
	text-align: left;
}

@media (max-width: 1100px) {
	.c-footer__inner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		box-sizing: border-box;
		width: calc(100% - 32px);
		max-width: 378px;
		margin-left: auto;
		margin-right: auto;
		padding: 40px 0;
		gap: 16px;
	}

	.c-footer__inner::before {
		display: none;
	}

	.c-footer__brand {
		order: 1;
		max-width: none;
		gap: 16px;
	}

	.c-footer__address {
		font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
		letter-spacing: 0;
		line-height: 1.6;
	}

	.c-footer__address-line--pc {
		display: none;
	}

	.c-footer__address-line--sp {
		display: block;
	}

	.c-footer__legal--brand {
		display: none;
	}

	.c-footer__actions {
		order: 2;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		width: 100%;
	}

	.c-footer__actions .c-btn--footer {
		width: 100%;
	}

	.c-footer__nav {
		order: 3;
		flex-direction: column;
		gap: 16px;
		justify-self: stretch;
		width: 100%;
	}

	.c-footer__col-title {
		margin-bottom: 8px;
	}

	.c-footer__links {
		gap: 8px;
	}

	.c-footer__links--bold {
		gap: 8px;
	}

	.c-footer__bottom {
		order: 4;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		min-height: 0;
		margin-top: 16px;
		padding-top: 24px;
		border-top: 1px solid #d9d9d9;
	}

	.c-footer__legal--bottom {
		display: flex;
	}

	.c-footer__copy {
		text-align: center;
	}
}

/* -------------------------------------------------------------------------- */
/* CTA band — Figma 513:8703 (PC) / 440:12215 (SP)
/* -------------------------------------------------------------------------- */

.c-cta-band {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	background: #fff;
	border-top: 1px solid #d9d9d9;
	color: var(--color-main-dark, #333);
	overflow: hidden;
}

/* PC fluid scale: design @ 1440 — shrinks with vw until SP/Tab (≤1100) */
.c-cta-band__inner {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding:
		min(96px, calc(100vw * 96 / 1440))
		min(80px, calc(100vw * 80 / 1440))
		min(64px, calc(100vw * 64 / 1440));
	display: flex;
	flex-direction: column;
	gap: min(40px, calc(100vw * 40 / 1440));
}

.c-cta-band__illust {
	position: absolute;
	top: min(13px, calc(100vw * 13 / 1440));
	right: 0;
	display: block;
	width: min(371px, calc(100vw * 371 / 1440));
	max-width: 32%;
	height: auto;
	pointer-events: none;
	user-select: none;
}

.c-cta-band__title {
	position: relative;
	z-index: 1;
	margin: 0;
	max-width: 18em;
	font-family: var(--tokumori-font-mobo);
	font-size: min(36px, calc(100vw * 36 / 1440));
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.6;
	color: var(--color-main-dark, #333);
	text-align: left;
}

.c-cta-band__title-br {
	display: none;
}

.c-cta-band__cards {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: min(24px, calc(100vw * 24 / 1440));
	width: 100%;
}

.c-cta-band__card {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: min(16px, calc(100vw * 16 / 1440));
	box-sizing: border-box;
	min-height: min(199px, calc(100vw * 199 / 1440));
	padding: min(32px, calc(100vw * 32 / 1440));
	border: 1px solid #333;
	border-radius: min(15px, calc(100vw * 15 / 1440));
	background: #fff;
	color: var(--color-main-dark, #333);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-cta-band__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	color: var(--color-main-dark, #333);
	text-decoration: none;
}

.c-cta-band__card-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: min(8px, calc(100vw * 8 / 1440));
	min-width: 0;
	flex: 1 1 auto;
}

.c-cta-band__card-heading {
	display: flex;
	align-items: center;
	gap: min(8px, calc(100vw * 8 / 1440));
	min-height: min(40px, calc(100vw * 40 / 1440));
	width: 100%;
}

.c-cta-band__icon {
	display: block;
	width: min(40px, calc(100vw * 40 / 1440));
	height: min(40px, calc(100vw * 40 / 1440));
	flex-shrink: 0;
	object-fit: contain;
}

.c-cta-band__card-title {
	font-family: var(--tokumori-font-display);
	font-size: min(24px, calc(100vw * 24 / 1440));
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.6;
	color: #af322c;
	white-space: nowrap;
}

.c-cta-band__card-text {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: min(16px, calc(100vw * 16 / 1440));
	font-weight: 400;
	letter-spacing: min(1.2px, calc(100vw * 1.2 / 1440));
	line-height: 1.8;
	color: var(--color-main-dark, #333);
	white-space: nowrap;
}

.c-cta-band__arrow {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	align-self: center;
	width: min(24px, calc(100vw * 24 / 1440));
	height: min(24px, calc(100vw * 24 / 1440));
	border: 1px solid #af322c;
	border-radius: 50%;
	background: transparent;
	color: #af322c;
	/* Figma Symbol ~7.55×12.46 inside 24 circle → font-size drives c-icon-chevron (0.625em×1em) */
	font-size: min(12.5px, calc(100vw * 12.5 / 1440));
}

.c-cta-band__arrow-icon {
	width: 0.625em;
	height: 1em;
	color: #af322c;
}

@media (max-width: 1100px) {
	.c-cta-band__inner {
		box-sizing: border-box;
		width: calc(100% - 32px);
		max-width: 378px;
		margin-left: auto;
		margin-right: auto;
		padding: 40px 0;
		gap: 16px;
	}

	.c-cta-band__illust {
		display: none;
	}

	.c-cta-band__title {
		max-width: none;
		width: 100%;
		font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
		letter-spacing: 0;
		line-height: 1.6;
		text-align: center;
	}

	.c-cta-band__title-br {
		display: inline;
	}

	.c-cta-band__cards {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.c-cta-band__card {
		gap: 8px;
		min-height: 0;
		padding: 24px 20px;
	}

	.c-cta-band__card-heading {
		gap: 8px;
		min-height: 32px;
	}

	.c-cta-band__icon {
		width: 32px;
		height: 32px;
	}

	.c-cta-band__card-title {
		font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
		line-height: 1.6;
		white-space: nowrap;
	}

	.c-cta-band__card-text {
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
		letter-spacing: 1.2px;
		line-height: 1.8;
	}

	/* Figma SP Inquiry: arrow circle 24×24, Symbol ~7.5×12.5 */
	.c-cta-band__arrow {
		width: 24px;
		height: 24px;
		font-size: clamp(10px, calc(12.5 * 100vw / 410), 12.5px);
	}
}

/* -------------------------------------------------------------------------- */
/* Page heading (subpage hero)
 * solid = description/lead variant — Figma 512:8398 (PC) / 440:10194 (SP)
/* -------------------------------------------------------------------------- */

.c-page-heading {
	box-sizing: border-box;
	width: 100%;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 24px 0;
	background: linear-gradient(105deg, #eccdcc 0%, #fff5f2 100%);
}

.c-page-heading--solid {
	min-height: 0;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 80px 100px;
	background: #faf5f6;
}

.c-page-heading--legal {
	min-height: 0;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 80px 100px;
	background: #faf5f6;
}

.c-page-heading__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}

.c-page-heading--solid .c-page-heading__inner {
	align-items: flex-start;
	gap: 24px;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	text-align: left;
}

.c-page-heading--legal .c-page-heading__inner {
	align-items: flex-start;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	text-align: left;
}

.c-page-heading__title {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(54 * 100vw / 410), 54px);
	font-weight: 700;
	letter-spacing: 4px;
	line-height: 1.2;
	color: var(--color-primary, #af322c);
	text-shadow: 0 0 44px rgba(229, 50, 68, 0.08);
}

.c-page-heading--solid .c-page-heading__title {
	font-size: clamp(10px, calc(40 * 100vw / 410), 40px);
	letter-spacing: 1.2px;
	line-height: 1.6;
	color: var(--color-primary, #af322c);
	text-shadow: none;
}

.c-page-heading--legal .c-page-heading__title {
	font-size: clamp(10px, calc(40 * 100vw / 410), 40px);
	letter-spacing: 1.2px;
	line-height: 1.6;
	color: var(--color-main-dark, #333);
	text-shadow: none;
}

.c-page-heading__en {
	margin: 0;
	font-family: var(--tokumori-font-en);
	font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
	font-weight: 500;
	letter-spacing: 4px;
	line-height: 1.2;
	color: #000;
	text-shadow: 0 0 44px rgba(229, 50, 68, 0.08);
}

.c-page-heading__lead {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: var(--color-main-dark, #333);
}

.c-page-heading__lead--sp {
	display: none;
}

@media (max-width: 1100px) {
	.c-page-heading {
		min-height: 0;
		align-items: center;
		justify-content: center;
		padding: 48px 16px;
	}

	.c-page-heading--solid {
		padding: 48px 16px;
	}

	.c-page-heading--legal {
		padding: 48px 16px;
	}

	.c-page-heading__inner {
		align-items: center;
		text-align: center;
		width: 100%;
	}

	.c-page-heading--solid .c-page-heading__inner {
		gap: 8px;
	}

	.c-page-heading--legal .c-page-heading__inner {
		align-items: center;
		text-align: center;
	}

	.c-page-heading__title {
		font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
		letter-spacing: 1.2px;
		line-height: 1.8;
	}

	.c-page-heading--solid .c-page-heading__title {
		font-size: clamp(10px, calc(28 * 100vw / 410), 28px);
		line-height: 1.6;
	}

	.c-page-heading--legal .c-page-heading__title {
		font-size: clamp(10px, calc(28 * 100vw / 410), 28px);
		line-height: 1.6;
	}

	.c-page-heading__lead {
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
		line-height: 1.8;
	}

	.c-page-heading__lead--pc {
		display: none;
	}

	.c-page-heading__lead--sp {
		display: block;
	}
}

/* -------------------------------------------------------------------------- */
/* Shared form privacy notice
/* -------------------------------------------------------------------------- */

.c-form-policy {
	box-sizing: border-box;
	width: 100%;
	max-height: 320px;
	margin: 0;
	padding: 24px 28px;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: none;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	background: #faf9f8;
	color: var(--color-main-dark, #333);
	font-family: var(--tokumori-font-display);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 1.8;
	text-align: left;
}

.c-form-policy:focus-visible {
	outline: 2px solid rgba(175, 50, 44, 0.25);
	outline-offset: 2px;
}

.c-form-policy__title {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
}

.c-form-policy__heading {
	margin: 20px 0 8px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
}

.c-form-policy p {
	margin: 0 0 8px;
}

.c-form-policy p:last-child,
.c-form-policy__list:last-child {
	margin-bottom: 0;
}

.c-form-policy__list {
	margin: 0 0 8px;
	padding: 0 0 0 1.2em;
	list-style: none;
}

.c-form-policy__list li {
	position: relative;
	padding-left: 0;
}

.c-form-policy__list li::before {
	content: '・';
	margin-left: -1.1em;
}

@media (max-width: 1100px) {
	.c-form-policy {
		max-height: 56vh;
		padding: 16px 16px 20px;
		font-size: 12px;
		letter-spacing: 0.8px;
	}

	.c-form-policy__title {
		margin-bottom: 12px;
		font-size: 14px;
		letter-spacing: 0.8px;
	}

	.c-form-policy__heading {
		margin: 16px 0 6px;
		font-size: 12px;
		letter-spacing: 0.8px;
	}
}

@media (max-width: 1100px) {
	h1,
	h2,
	h3,
	h4,
	.c-heading__title,
	.c-heading__lead,
	.c-page-heading__title,
	.c-page-heading__lead,
	.c-svc-feature__title,
	.c-svc-feature__body,
	.c-btob-feature__title,
	.c-btob-feature__body,
	.c-btob-features__title,
	.c-btob-card__catch,
	.c-btob-card__body,
	.c-btn__desc,
	p {
		line-break: strict;
	}
}

