/* ==================================================
   single-best-work.css
================================================== */

/* Hero */

.bw-single__hero {
	position: relative;
	width: 100%;
	aspect-ratio: 1920 / 800;
	overflow: hidden;
}

.bw-single__hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Counter */

.bw-single__counter {
	position: absolute;
	inset: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: clamp(32px, 5vw, 80px);
	font-weight: 800;
	color: #fff;

	text-shadow:
		0 2px 8px rgba(0,0,0,.4),
		0 6px 20px rgba(0,0,0,.3);
}

/* Content */

.bw-single__content {
	max-width: var(--bw-max-width);
	margin: 60px auto 0;
	display: grid;
	row-gap: 20px;
}

/* Main Image */

.bw-single__block img {
	width: 100%;
	aspect-ratio: 1100 / 828;
	object-fit: cover;
}

/* Interior / Styling */

.bw-single__block--interior,
.bw-single__block--styling {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 20px;
	column-gap: 13px;
}

.bw-single__block--interior img,
.bw-single__block--styling img {
	aspect-ratio: 542 / 408;
	object-fit: cover;
}

/* Other Works */

.bw-other-works {
	margin-top: 80px;
}

.bw-other-works__grid {
	max-width: var(--bw-max-width);
	margin: 0 auto;

	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* No hidden in other works */

.bw-other-works .bw-thumb-card {
	position: relative;
}

.bw-other-works .bw-thumb-card__number {
	position: absolute;
	top: 0;
	left: 0;

	/* front-pageより一段小さい比率 */
	font-size: clamp(18px, 3.2vw, 28px);
	font-weight: 800;
	line-height: 1;
	padding: 0 0 0 2%;
	color: #fff;
	text-shadow:
		0 2px 6px rgba(0,0,0,.45),
		0 6px 16px rgba(0,0,0,.35);
	z-index: 2;
	pointer-events: none;
	display: block;
}

/* front-page と完全共通デザイン */

.bw-single__action {
	margin: 100px 0 150px;
	text-align: center;
}

.bw-single__action .bw-button {
	/* デザイン：w400 h100 / 文字36px / 色 #6E6E6E */
	width: min(400px, 100%);
	height: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(20px, 3.2vw, 36px);
	font-weight: 700;
	background: var(--color-yellow);
	color: var(--color-muted);
	border-radius: 12px;
}

/* 「他の作品を見る」 */
.bw-other-works__title {
	text-align: center;
	margin-top: 80px;
	margin-bottom: 40px;

	font-size: clamp(18px, 3.2vw, 36px);
	font-weight: 700;
	color: var(--color-text);
}

/* 「一覧へ戻る」 */
.bw-single__back {
	margin: 100px 0 150px;
	text-align: center;
}

.bw-single__back a {
	font-size: clamp(14px, 2.2vw, 20px);
	color: var(--color-muted);
	text-decoration: none;
}

