/* 取付けレビューの詳細（/review/view） */
.sl-rv,
.sl-rv * {
	box-sizing: border-box;
}

.sl-rv {
	max-width: 1080px;
	margin: 0 auto;
	padding: 8px 0 72px;
	color: #1d1d1f;
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
}

.sl-rv a {
	color: #0066cc;
}

.sl-rv__kicker {
	margin: 0 0 6px;
	color: #6e6e73;
	font-size: 13px;
	font-weight: 700;
}

.sl-rv__head h1 {
	margin: 0 0 10px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
}

.sl-rv__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 14px;
	margin: 0 0 24px;
	color: #6e6e73;
	font-size: 14px;
}

.sl-rv__stars {
	color: #f5a623;
	letter-spacing: 1px;
}

.sl-rv__main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	align-items: start;
	gap: 40px;
	margin-bottom: 56px;
}

.sl-rv__photo {
	margin: 0 0 10px;
	border-radius: 18px;
	background: #f5f5f7;
	overflow: hidden;
}

.sl-rv__photo img {
	display: block;
	width: 100%;
	max-height: 560px;
	object-fit: contain;
}

.sl-rv__thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}

.sl-rv__thumbs button {
	display: block;
	width: 72px;
	height: 72px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 10px;
	background: #f5f5f7;
	overflow: hidden;
	cursor: pointer;
}

.sl-rv__thumbs button.is-active {
	border-color: #0071e3;
}

.sl-rv__thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sl-rv__text {
	margin: 0 0 24px;
	font-size: 16px;
	line-height: 1.9;
}

.sl-rv__reply {
	padding: 18px 20px;
	border-left: 3px solid #0071e3;
	border-radius: 0 14px 14px 0;
	background: #f5f8fc;
	font-size: 14px;
	line-height: 1.8;
}

.sl-rv__reply p {
	margin: 0;
}

.sl-rv__reply .sl-rv__reply-from {
	margin-bottom: 6px;
	color: #0058b0;
	font-size: 13px;
	font-weight: 700;
}

.sl-rv__side {
	position: sticky;
	top: 88px;
}

.sl-rv__product {
	padding: 20px;
	border: 1px solid #e5e5ea;
	border-radius: 18px;
	background: #fff;
}

.sl-rv__side-label {
	margin: 0 0 10px;
	color: #6e6e73;
	font-size: 13px;
	font-weight: 700;
}

.sl-rv a.sl-rv__product-link {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	color: #1d1d1f;
	text-decoration: none;
}

.sl-rv__product-link img {
	flex: none;
	width: 88px;
	height: 88px;
	border-radius: 12px;
	background: #f5f5f7;
	object-fit: contain;
}

.sl-rv__product-link strong {
	font-size: 15px;
	line-height: 1.5;
}

.sl-rv a.sl-rv__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: 8px;
	padding: 0 16px;
	border: 1px solid #d2d2d7;
	border-radius: 999px;
	color: #1d1d1f;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.sl-rv a.sl-rv__btn--primary {
	border-color: #0071e3;
	background: #0071e3;
	color: #fff;
}

.sl-rv__section {
	margin-bottom: 48px;
}

.sl-rv__section h2 {
	margin: 0 0 16px;
	font-size: 22px;
	font-weight: 700;
}

.sl-rv__section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
}

.sl-rv__section-head a {
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.sl-rv__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sl-rv__list a {
	display: flex;
	flex-direction: column;
	gap: 4px;
	height: 100%;
	padding: 12px;
	border-radius: 16px;
	background: #f5f5f7;
	color: #1d1d1f;
	text-decoration: none;
}

.sl-rv__list a:hover {
	background: #ececf0;
}

.sl-rv__list img {
	width: 100%;
	aspect-ratio: 4 / 3;
	margin-bottom: 6px;
	border-radius: 10px;
	background: #fff;
	object-fit: cover;
}

.sl-rv__list strong {
	font-size: 14px;
	line-height: 1.5;
}

.sl-rv__excerpt,
.sl-rv__product-name {
	color: #6e6e73;
	font-size: 12px;
	line-height: 1.6;
}

@media (max-width: 900px) {
	.sl-rv__main {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.sl-rv__side {
		position: static;
	}

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

@media (max-width: 640px) {
	.sl-rv__head h1 {
		font-size: 22px;
	}

	.sl-rv__text {
		font-size: 15px;
	}
}
