/* ==========================================================================
   Hero Section - Based on Figma TOP page Main Visual
   ========================================================================== */

.hero-section {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.hero-columns {
	display: flex;
	height: 580px;
	position: relative;
	overflow: hidden;
}

/* ---------- Background Layers (absolute) ---------- */

/* Figma: right gray gradient at left:685px, width:755px */
.hero-bg-right {
	position: absolute;
	top: 0;
	/* 685 / 1440 = 47.569% */
	left: 47.569%;
	right: 0;
	height: 100%;
	background: linear-gradient(130deg, rgba(247, 244, 244, 1) 4%, rgba(210, 205, 205, 1) 100%);
	z-index: 0;
}

/* Figma: Union (wave) at left:0, width:743px, height:580px */
.hero-bg-wave {
	position: absolute;
	top: 0;
	left: 0;
	/* 743 / 1440 = 51.597% */
	width: 51.597%;
	height: 100%;
	z-index: 1;
}

.hero-bg-wave img {
	display: block;
	width: 100%;
	height: 100%;
}

/* ---------- Left Column ---------- */

.hero-left {
	position: relative;
	z-index: 2;
	flex: 0 0 50%;
	color: #FFFFFF;
	display: flex;
	justify-content: flex-end;
	box-sizing: border-box;
}

.hero-left__inner {
	width: 100%;
	max-width: 600px; /* 1200px / 2 */
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 32px;
	padding: 80px 40px 80px 0;
	box-sizing: content-box;
}

.hero-left__h1 {
	display: flex;
	flex-direction: column;
}

/* Figma: Noto Sans, 700, 23px, lineHeight 1.362em, letterSpacing 4.35% */
.hero-subtitle {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.362;
	letter-spacing: 0.0435em;
	color: #FFFFFF;
	margin: 0 0 8px 0;
}

/* Figma: Inter, 800, 128px, lineHeight 1.21em */
.hero-title {
	font-family: "Inter", sans-serif;
	font-size: 128px;
	font-weight: 800;
	line-height: 1.21;
	letter-spacing: -0.01em;
	color: #FFFFFF;
	margin: 0 0 16px 0;
}

/* Figma: Noto Sans, 600, 16px, lineHeight 1.362em, letterSpacing 6.25% */
.hero-description {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.362;
	letter-spacing: 0.0625em;
	color: #FFFFFF;
	margin: 0;
}

/* ---------- CTA Buttons ---------- */

.hero-buttons {
	display: flex;
	gap: 16px;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-radius: 4px;
	padding: 16px 24px 16px 16px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.362;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.3s ease;
}

.hero-btn img {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.hero-btn:hover {
	opacity: 0.85;
}

.hero-btn--download {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
}

.hero-btn--contact {
	background: #FFFFFF;
	border: 1px solid #FFFFFF;
	color: #000000;
}

/* ---------- Right Column ---------- */

.hero-right {
	position: relative;
	z-index: 2;
	flex: 0 0 50%;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.hero-right__inner {
	width: 100%;
	max-width: 600px; /* 1200px / 2 */
	padding: 60px 0 60px 40px;
	box-sizing: content-box;
}

.hero-right__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

/* Figma: Noto Sans, 700, 32px, lineHeight 1.362em, letterSpacing 3.125% */
.hero-right-heading {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #000000 !important;
	line-height: 1.362;
	letter-spacing: 0.03125em;
	margin: 0 0 16px 0;
}

/* ---------- Checklist ---------- */

.hero-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hero-checklist li {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 16px;
	background: #FFFFFF;
}

.hero-checklist li img {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.hero-checklist li span {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.362;
	color: #000000;
}

.hero-checklist__accent {
	color: #972929;
	font-weight: 700;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
	.hero-columns {
		flex-direction: column;
		height: auto;
	}

	.hero-bg-right,
	.hero-bg-wave {
		display: none;
	}

	.hero-left {
		flex: 1 1 auto;
		justify-content: center;
		background: linear-gradient(135deg, #E51F1F 0%, #A91C1C 100%);
	}

	.hero-left__inner {
		max-width: 100%;
		padding: 48px 24px;
		align-items: center;
		text-align: center;
	}

	.hero-left__h1 {
		align-items: center;
	}

	.hero-left__content {
		align-items: center;
	}

	.hero-description {
		text-align: center;
	}

	.hero-right {
		flex: 1 1 auto;
		background: linear-gradient(130deg, rgba(247, 244, 244, 1) 4%, rgba(210, 205, 205, 1) 100%);
	}

	.hero-right__inner {
		max-width: 100%;
		padding: 48px 24px;
	}

	.hero-right__content {
		align-items: center;
	}

	.hero-right-heading {
		font-size: 19px;
		text-align: center;
	}

	.hero-description {
		font-size: 13px;
	}

	.hero-title {
		font-size: 64px;
	}

	.hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.hero-btn {
		display: flex;
		justify-content: center;
		text-align: center;
		width: 100%;
		box-sizing: border-box;
	}
}
