/* ==========================================================================
   Pattern: lynkbeez-hero (一)
   ========================================================================== */

.lk-hero {
	position: relative;
	min-height: 100vh;
	background: var(--navy);
	padding: var(--gutter);
	display: grid;
	grid-template-rows: auto 1fr auto;
	overflow: hidden;
}
.lk-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(0,0,0,0.4), transparent 60%),
		radial-gradient(circle at 85% 70%, rgba(0,0,0,0.4), transparent 60%);
	mix-blend-mode: multiply;
	pointer-events: none;
}
.lk-hero__top {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: flex-end;
	align-items: start;
	padding-top: 80px;
}
.lk-hero__center {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	padding: 40px 0;
}
.lk-hero__frame {
	position: relative;
	aspect-ratio: 3 / 4;
	width: min(38vw, 460px) !important;
	margin: 0 !important;
	overflow: hidden !important;
	box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.lk-hero__frame img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	filter: contrast(1.02);
}
.lk-hero__frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.22) 100%);
}
.lk-hero__bottom {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: flex-end;
	align-items: end;
	padding-bottom: 40px;
}
.lk-hero__statement {
	font-family: var(--f-jp) !important;
	font-weight: 500 !important;
	font-size: clamp(22px, 3.2vw, 44px) !important;
	line-height: 1.5 !important;
	letter-spacing: 0.04em;
	text-align: right;
	color: var(--paper) !important;
}
.lk-hero__statement em {
	font-style: normal;
	color: var(--navy-soft);
}

/* ---------- Mobile: hero image を大きく ---------- */
@media (max-width: 720px) {
	.lk-hero__frame {
		width: min(70vw, 420px) !important;
	}
}
