:root {
 --hero-height: 72vh;
 --overlay-color: rgba(0,0,0,0.35);
 --max-width: 1100px;
 --accent: #ff6b6b;
 --accent-2: #ff9a9a;
 --text-contrast: #ffffff;
 --logo-size: 56px;
 --gap: 16px;
 --font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
* {
	box-sizing: border-box
}
html, body {
	height: 100%;
	margin: 0;
	font-family: var(--font-family);
	color: var(--text-contrast)
}
.hero {
	position: relative;
	min-height: var(--hero-height);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-image: var(--bg, url('../images/bg.jpg'));
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	margin-bottom: 20px;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--overlay-color);
	pointer-events: none;
}
.hero__top {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	margin-bottom: 20px;
}
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text-contrast)
}
.logo__img {
	width: var(--logo-size);
	height: var(--logo-size);
	flex: 0 0 var(--logo-size);
	border-radius: 6px;
	background: #fff;
	display: inline-block
}
.logo__title {
	display: block;
	text-align: center;
	font-weight: 700;
	font-size: clamp(42px, 7.2vw, 72px) !important;
	margin-bottom: 20px;
	color: #fff;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
.hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--max-width);
	padding: 40px 20px
}
.eyebrow {
	display: block;
	margin-bottom: var(--gap);
	font-weight: 600;
	letter-spacing: 0.06em;
	opacity: 0.95;
	cursor: pointer;
}
h1 {
	margin: 0 0 12px 0;
	font-size: clamp(28px, 4.8vw, 48px);
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.02em
}
p.lead {
	margin: 0 auto 20px;
	max-width: 760px;
	font-size: clamp(14px, 2vw, 18px);
	line-height: 1.4;
	opacity: 0.95;
	display: none;
	transition: max-height 0.3s ease;
	overflow: hidden;
}
p.lead.open {
	display: block;
}
.hero__actions {
	display: inline-flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 10px;
	border: 0;
	cursor: pointer;
	font-weight: 700;
	text-decoration: none
}
.btn--primary {
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	color: white;
	box-shadow: 0 6px 18px rgba(0,0,0,0.25);
	transition: transform .18s ease, box-shadow .18s ease
}
.btn--primary:hover, .btn--primary:focus {
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(0,0,0,0.3)
}
.btn--ghost {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.7);
	color: var(--text-contrast)
}
@media (max-width:767px) {
.hero {
	min-height: auto;
	height: auto;
	width: 100% !important;
	max-width: 100% !important;
	padding: 30px 15px !important;
	box-sizing: border-box !important;
}
.hero__top {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	justify-content: center;
}
.logo__title {
	font-size: 30px !important;
	margin-bottom: 15px;
}
.hero__content {
	padding: 20px 10px !important;
	width: 100% !important;
	max-width: 100% !important;
}
.hero__content h1 {
	font-size: 20px !important;
	line-height: 1.4 !important;
}
.logo__img {
	width: 48px;
	height: 48px
}
.eyebrow {
	font-size: 13px !important;
}
.btn {
	padding: 12px 18px !important;
	font-size: 14px !important;
}
}
 @media (prefers-reduced-motion:reduce) {
.btn--primary, .btn--primary:hover {
	transition: none;
	transform: none
}
}
