/**
 * Rental Wall Works — フロント表示スタイル
 */

.rww-showcase {
	--rww-accent: #007aff;
	--rww-accent-dark: #005fcc;
	--rww-text: #111827;
	--rww-muted: #667085;
	--rww-line: #e6e8ee;
	--rww-soft: #f6f8fb;
	--rww-card: #fff;
	--rww-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
	--rww-shadow-hover: 0 28px 70px rgba(15, 23, 42, 0.14);
	max-width: 1180px;
	margin: 0 auto;
	padding: 56px 20px 72px;
	color: var(--rww-text);
}

.rww-showcase *,
.rww-showcase *::before,
.rww-showcase *::after {
	box-sizing: border-box;
}

.rww-hero {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 122, 255, 0.12);
	border-radius: 32px;
	padding: 72px 56px;
	background:
		radial-gradient(circle at 16% 14%, rgba(0, 122, 255, 0.18), transparent 32%),
		radial-gradient(circle at 84% 22%, rgba(88, 86, 214, 0.13), transparent 30%),
		linear-gradient(135deg, #fff 0%, #f8fbff 54%, #eef6ff 100%);
	box-shadow: var(--rww-shadow);
}

.rww-hero::after {
	position: absolute;
	right: -120px;
	bottom: -160px;
	width: 360px;
	height: 360px;
	border-radius: 999px;
	background: rgba(0, 122, 255, 0.08);
	content: "";
}

/* 件数確認用（一時表示） */
.rww-debug-counts {
	margin: 20px 0 0;
	padding: 12px 16px;
	border: 1px dashed var(--rww-line);
	border-radius: 12px;
	background: var(--rww-soft);
	font-size: 13px;
	color: var(--rww-muted);
}

.rww-debug-counts p {
	margin: 0;
	line-height: 1.6;
}

.rww-debug-counts p + p {
	margin-top: 4px;
}

.rww-hero__eyebrow,
.rww-section-heading__eyebrow {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(0, 122, 255, 0.16);
	border-radius: 999px;
	padding: 7px 12px;
	background: rgba(255, 255, 255, 0.74);
	color: var(--rww-accent-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rww-hero__title {
	position: relative;
	max-width: 780px;
	margin: 24px 0 18px;
	color: var(--rww-text);
	font-size: clamp(34px, 5vw, 64px);
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 1.03;
}

.rww-hero__subtitle {
	position: relative;
	max-width: 720px;
	margin: 0;
	color: var(--rww-muted);
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.8;
}

.rww-kpi {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: 28px 0;
}

.rww-kpi-card {
	border: 1px solid var(--rww-line);
	border-radius: 24px;
	padding: 26px 24px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.rww-kpi-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 122, 255, 0.25);
	box-shadow: var(--rww-shadow);
}

.rww-kpi-card__value {
	color: var(--rww-text);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1;
}

.rww-kpi-card__label {
	margin-top: 12px;
	color: var(--rww-muted);
	font-size: 14px;
	font-weight: 600;
}

.rww-analytics {
	margin: 44px 0;
}

.rww-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 18px;
}

.rww-section-heading__title {
	margin: 10px 0 0;
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 800;
	letter-spacing: -0.04em;
}

.rww-chart-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.rww-chart-card {
	border: 1px solid var(--rww-line);
	border-radius: 28px;
	padding: 24px;
	background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
	box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.rww-chart-card__title {
	margin: 0 0 18px;
	color: var(--rww-text);
	font-size: 16px;
	font-weight: 750;
}

.rww-chart-card__canvas {
	position: relative;
	height: 280px;
}

.rww-admin-debug {
	margin: 24px 0;
	padding: 16px;
	border: 1px dashed #f59e0b;
	border-radius: 12px;
	background: #fffbeb;
	color: #78350f;
	font-size: 13px;
	line-height: 1.5;
}

.rww-admin-debug dl {
	display: grid;
	grid-template-columns: minmax(160px, auto) 1fr;
	gap: 8px 16px;
	margin: 12px 0 0;
}

.rww-admin-debug dt {
	margin: 0;
	font-weight: 700;
}

.rww-admin-debug dd {
	margin: 0;
	word-break: break-all;
}

.rww-admin-debug code {
	display: block;
	padding: 4px 6px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.8);
}

.rww-filter {
	display: grid;
	grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(140px, 1fr)) auto;
	gap: 14px;
	align-items: end;
	position: sticky;
	z-index: 2;
	top: 24px;
	margin: 42px 0 24px;
	border: 1px solid rgba(230, 232, 238, 0.9);
	border-radius: 24px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
	backdrop-filter: blur(18px);
}

.rww-filter__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.rww-filter__field label {
	color: #475467;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.rww-filter__field input,
.rww-filter__field select {
	width: 100%;
	min-height: 48px;
	border: 1px solid #d9dee8;
	border-radius: 16px;
	padding: 0 14px;
	background: #fff;
	color: var(--rww-text);
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rww-filter__field input:focus,
.rww-filter__field select:focus {
	border-color: rgba(0, 122, 255, 0.65);
	box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.12);
}

.rww-filter__actions {
	display: flex;
	align-items: flex-end;
}

.rww-filter__submit {
	min-height: 48px;
	padding: 0 20px;
	border: none;
	border-radius: 16px;
	background: var(--rww-accent);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.rww-filter__submit:hover {
	background: var(--rww-accent-dark);
	transform: translateY(-1px);
}

.rww-works-grid {
	display: grid;
	gap: 28px;
	margin: 28px 0 0;
}

.rww-works-grid.rww-columns-1 {
	grid-template-columns: 1fr;
}

.rww-works-grid.rww-columns-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rww-works-grid.rww-columns-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rww-works-grid.rww-columns-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rww-work-card {
	overflow: hidden;
	border: 1px solid var(--rww-line);
	border-radius: 16px;
	background: var(--rww-card);
	box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.rww-work-card:hover {
	transform: translateY(-6px) scale(1.015);
	border-color: rgba(0, 122, 255, 0.24);
	box-shadow: var(--rww-shadow-hover);
}

.rww-work-card__image {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background:
		linear-gradient(135deg, rgba(0, 122, 255, 0.12), rgba(88, 86, 214, 0.12)),
		#f4f7fb;
	color: #64748b;
	text-decoration: none;
}

.rww-work-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.rww-work-card:hover .rww-work-card__image img {
	transform: scale(1.04);
}

.rww-work-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rww-work-card__body {
	padding: 22px;
}

.rww-work-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.rww-work-card__badge {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(0, 122, 255, 0.16);
	border-radius: 999px;
	padding: 5px 10px;
	background: rgba(0, 122, 255, 0.08);
	color: var(--rww-accent-dark);
	font-size: 12px;
	font-weight: 750;
	line-height: 1.3;
}

.rww-work-card__title {
	margin: 0 0 16px;
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.35;
}

.rww-work-card__title a {
	color: var(--rww-text);
	text-decoration: none;
}

.rww-work-card__title a:hover {
	color: var(--rww-accent-dark);
}

.rww-work-card__info {
	display: grid;
	gap: 10px;
	margin-bottom: 18px;
}

.rww-work-card__info-item {
	display: grid;
	gap: 2px;
	color: var(--rww-muted);
	font-size: 13px;
}

.rww-work-card__info-item span {
	color: #98a2b3;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.rww-work-card__info-item strong {
	color: #344054;
	font-size: 14px;
	font-weight: 650;
}

.rww-work-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.rww-work-card__tag {
	display: inline-flex;
	align-items: center;
	border: 1px solid #e8ebf2;
	border-radius: 999px;
	padding: 5px 10px;
	background: var(--rww-soft);
	color: #475467;
	font-size: 12px;
	font-weight: 650;
	line-height: 1.35;
}

.rww-work-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--rww-accent);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.rww-work-card__link:hover {
	color: var(--rww-accent-dark);
	text-decoration: none;
}

.rww-pagination {
	margin: 40px 0 0;
	display: flex;
	justify-content: center;
	width: 100%;
}

.rww-pagination ul.page-numbers {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rww-pagination ul.page-numbers li {
	display: block;
	float: none;
	width: auto;
	max-width: none;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rww-pagination ul.page-numbers a,
.rww-pagination ul.page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid var(--rww-line);
	border-radius: 12px;
	background: var(--rww-card);
	color: var(--rww-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.rww-pagination ul.page-numbers a:hover,
.rww-pagination ul.page-numbers a:focus-visible {
	border-color: rgba(0, 122, 255, 0.28);
	background: rgba(0, 122, 255, 0.08);
	color: var(--rww-accent-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 122, 255, 0.12);
	outline: none;
}

.rww-pagination ul.page-numbers .current {
	border-color: var(--rww-accent);
	background: var(--rww-accent);
	color: #fff;
	box-shadow: 0 12px 28px rgba(0, 122, 255, 0.24);
}

.rww-pagination ul.page-numbers .dots {
	min-width: auto;
	height: auto;
	padding: 0 4px;
	border: none;
	background: transparent;
	box-shadow: none;
	color: var(--rww-muted);
}

.rww-works-empty {
	border: 1px solid var(--rww-line);
	border-radius: 18px;
	padding: 24px;
	background: #fff;
	color: var(--rww-muted);
	text-align: center;
}

.rww-detail {
	--rww-accent: #007aff;
	--rww-accent-dark: #005fcc;
	--rww-text: #111827;
	--rww-muted: #667085;
	--rww-line: #e6e8ee;
	--rww-soft: #f6f8fb;
	--rww-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
	color: var(--rww-text);
	background: linear-gradient(180deg, #fff 0%, #f8fbff 42%, #fff 100%);
}

.rww-detail *,
.rww-detail *::before,
.rww-detail *::after {
	box-sizing: border-box;
}

.rww-detail-hero-image {
	width: 100%;
	max-height: 620px;
	margin: 0;
	overflow: hidden;
	background: var(--rww-soft);
}

.rww-detail-hero-image img {
	display: block;
	width: 100%;
	height: min(620px, 54vw);
	object-fit: cover;
}

.rww-detail__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 40px 20px 80px;
}

.rww-detail-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-bottom: 30px;
	color: var(--rww-muted);
	font-size: 13px;
}

.rww-detail-breadcrumb a {
	color: var(--rww-accent-dark);
	text-decoration: none;
}

.rww-detail-breadcrumb a:hover {
	text-decoration: underline;
}

.rww-detail-header {
	max-width: 920px;
	margin-bottom: 44px;
}

.rww-detail-header__badge {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(0, 122, 255, 0.16);
	border-radius: 999px;
	padding: 7px 12px;
	background: rgba(0, 122, 255, 0.08);
	color: var(--rww-accent-dark);
	font-size: 12px;
	font-weight: 800;
}

.rww-detail-header h1 {
	margin: 18px 0 0;
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 850;
	letter-spacing: -0.055em;
	line-height: 1.08;
}

.rww-detail-section {
	margin-top: 56px;
}

.rww-detail-section__heading {
	margin-bottom: 22px;
}

.rww-detail-section__heading span {
	display: inline-flex;
	margin-bottom: 8px;
	color: var(--rww-accent-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rww-detail-section__heading h2 {
	margin: 0;
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 850;
	letter-spacing: -0.04em;
}

.rww-detail-info {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.rww-detail-info__item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	border: 1px solid var(--rww-line);
	border-radius: 20px;
	padding: 18px;
	background: #fff;
	box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.rww-detail-info__icon {
	display: inline-flex;
	flex: 0 0 38px;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 14px;
	background: rgba(0, 122, 255, 0.08);
	color: var(--rww-accent-dark);
	font-size: 13px;
	font-weight: 850;
}

.rww-detail-info__item span:not(.rww-detail-info__icon) {
	display: block;
	margin-bottom: 4px;
	color: #98a2b3;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.rww-detail-info__item strong {
	color: #344054;
	font-size: 15px;
	line-height: 1.6;
}

.rww-detail-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.rww-detail-gallery__item {
	display: block;
	overflow: hidden;
	border-radius: 18px;
	background: var(--rww-soft);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.rww-detail-gallery__item img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.rww-detail-gallery__item:hover img {
	transform: scale(1.04);
}

.rww-detail-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.rww-detail-lightbox:target {
	display: flex;
}

.rww-detail-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.82);
}

.rww-detail-lightbox img {
	position: relative;
	z-index: 1;
	max-width: min(1080px, 92vw);
	max-height: 86vh;
	border-radius: 18px;
	object-fit: contain;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.rww-detail-lightbox__close {
	position: fixed;
	z-index: 2;
	top: 22px;
	right: 26px;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: #fff;
	color: var(--rww-text);
	font-size: 28px;
	line-height: 42px;
	text-align: center;
	text-decoration: none;
}

.rww-detail-content,
.rww-detail-client-voice,
.rww-detail-improvements {
	border: 1px solid var(--rww-line);
	border-radius: 24px;
	padding: 28px;
	background: #fff;
	box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.rww-detail-content {
	color: #344054;
	font-size: 16px;
	line-height: 1.9;
}

.rww-detail-content > *:first-child {
	margin-top: 0;
}

.rww-detail-content > *:last-child {
	margin-bottom: 0;
}

.rww-detail-participant-voice {
	position: relative;
	margin: 0;
	border-radius: 28px;
	padding: 30px 32px;
	background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(88, 86, 214, 0.08));
	color: #1f2937;
	font-size: 18px;
	font-weight: 650;
	line-height: 1.8;
}

.rww-detail-participant-voice::after {
	position: absolute;
	left: 42px;
	bottom: -16px;
	width: 32px;
	height: 32px;
	background: rgba(0, 122, 255, 0.1);
	clip-path: polygon(0 0, 100% 0, 0 100%);
	content: "";
}

.rww-detail-client-voice p {
	margin: 0;
	color: #344054;
	font-size: 17px;
	line-height: 1.8;
}

.rww-detail-client-voice footer {
	margin-top: 18px;
	color: var(--rww-muted);
	font-size: 14px;
	font-weight: 800;
}

.rww-detail-points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.rww-detail-point-card {
	border: 1px solid var(--rww-line);
	border-radius: 22px;
	padding: 24px;
	background: #fff;
	box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.rww-detail-point-card h3 {
	margin: 0 0 10px;
	color: var(--rww-text);
	font-size: 17px;
	font-weight: 850;
}

.rww-detail-point-card p {
	margin: 0;
	color: #475467;
	line-height: 1.8;
}

.rww-detail-improvements summary {
	cursor: pointer;
	color: var(--rww-text);
	font-size: 18px;
	font-weight: 850;
}

.rww-detail-improvements p {
	margin: 18px 0 0;
	color: #475467;
	line-height: 1.8;
}

.rww-detail-cta {
	margin-top: 64px;
	border-radius: 32px;
	padding: 46px;
	background:
		radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.28), transparent 28%),
		linear-gradient(135deg, #007aff 0%, #005fcc 100%);
	color: #fff;
	box-shadow: 0 24px 70px rgba(0, 122, 255, 0.24);
}

.rww-detail-cta h2 {
	margin: 0 0 12px;
	font-size: clamp(26px, 4vw, 42px);
	font-weight: 850;
	letter-spacing: -0.045em;
}

.rww-detail-cta p {
	max-width: 700px;
	margin: 0 0 26px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 16px;
	line-height: 1.8;
}

.rww-detail-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 14px 22px;
	background: #fff;
	color: var(--rww-accent-dark);
	font-weight: 850;
	text-decoration: none;
}

.rww-detail-related-grid {
	margin-top: 0;
}

@media (max-width: 1024px) {
	.rww-kpi {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rww-filter {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		position: static;
	}

	.rww-works-grid.rww-columns-3,
	.rww-works-grid.rww-columns-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rww-detail-info,
	.rww-detail-gallery,
	.rww-detail-points {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.rww-showcase {
		padding: 32px 16px 48px;
	}

	.rww-hero {
		border-radius: 24px;
		padding: 44px 24px;
	}

	.rww-kpi,
	.rww-chart-grid,
	.rww-filter,
	.rww-works-grid,
	.rww-works-grid.rww-columns-1,
	.rww-works-grid.rww-columns-2,
	.rww-works-grid.rww-columns-3,
	.rww-works-grid.rww-columns-4 {
		grid-template-columns: 1fr;
	}

	.rww-section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.rww-chart-card__canvas {
		height: 240px;
	}

	.rww-work-card:hover {
		transform: translateY(-4px);
	}

	.rww-pagination {
		margin-top: 28px;
		justify-content: center;
	}

	.rww-pagination ul.page-numbers {
		gap: 6px;
		justify-content: center;
	}

	.rww-pagination ul.page-numbers a,
	.rww-pagination ul.page-numbers span {
		min-width: 40px;
		height: 40px;
		padding: 0 10px;
		border-radius: 10px;
		font-size: 13px;
	}

	.rww-detail__inner {
		padding: 28px 16px 56px;
	}

	.rww-detail-hero-image img {
		height: 62vw;
	}

	.rww-detail-info,
	.rww-detail-gallery,
	.rww-detail-points {
		grid-template-columns: 1fr;
	}

	.rww-detail-content,
	.rww-detail-client-voice,
	.rww-detail-improvements,
	.rww-detail-point-card {
		padding: 22px;
	}

	.rww-detail-cta {
		border-radius: 24px;
		padding: 32px 24px;
	}

	.rww-featured-works {
		padding: 32px 16px;
	}

	.rww-featured-works__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.rww-featured-works__title {
		font-size: 22px;
	}

	.rww-featured-works__track {
		gap: 16px;
	}

	.rww-featured-works__track > .rww-work-card {
		flex: 0 0 calc((100vw - 52px) / 1.2);
		width: calc((100vw - 52px) / 1.2);
		min-width: calc((100vw - 52px) / 1.2);
	}
}

/* おすすめ導入実績（横スクロール） */
.rww-featured-works {
	--rww-accent: #007aff;
	--rww-accent-dark: #005fcc;
	--rww-text: #111827;
	--rww-muted: #667085;
	--rww-line: #e6e8ee;
	--rww-card: #fff;
	--rww-shadow-hover: 0 28px 70px rgba(15, 23, 42, 0.14);
	max-width: 1180px;
	margin: 0 auto;
	padding: 48px 20px;
	color: var(--rww-text);
}

.rww-featured-works *,
.rww-featured-works *::before,
.rww-featured-works *::after {
	box-sizing: border-box;
}

.rww-featured-works__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.rww-featured-works__title {
	margin: 0;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.3;
}

.rww-featured-works__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--rww-accent);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.rww-featured-works__link:hover,
.rww-featured-works__link:focus-visible {
	color: var(--rww-accent-dark);
	outline: none;
}

.rww-featured-works__scroll {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 122, 255, 0.35) transparent;
	padding-bottom: 8px;
}

.rww-featured-works__scroll::-webkit-scrollbar {
	height: 6px;
}

.rww-featured-works__scroll::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(0, 122, 255, 0.35);
}

.rww-featured-works__track {
	display: flex;
	gap: 20px;
}

.rww-featured-works__track > .rww-work-card {
	flex: 0 0 calc((min(100vw, 1220px) - 100px) / 5);
	width: calc((min(100vw, 1220px) - 100px) / 5);
	min-width: calc((min(100vw, 1220px) - 100px) / 5);
	scroll-snap-align: start;
}
