@charset "utf-8";

#hero {
	min-height: 100svh;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 0;
}
.hero-visual {
	position: relative;
	width: 100%;
	flex: 1;
	min-height: 100svh;
	display: flex;
	align-items: flex-end;
}
.hero-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}
.hero-visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom, 
		rgba(255, 248, 250, 0) 0%, 
		rgba(255, 248, 250, 0) 38%, 
		rgba(255, 232, 242, .52) 65%, 
		rgba(255, 248, 250, .97) 100%
	);
}
.hero-text {
	position: relative;
	z-index: 5;
	width: 100%;
	padding: 0 60px 56px;
	max-width: 860px;
	animation: heroUp .9s cubic-bezier(.22, 1, .36, 1) .2s both;
}
@keyframes heroUp {
	from {
		opacity: 0;
		transform: translateY(24px)
	}
	to {
		opacity: 1;
		transform: none
	}
}
.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, .88);
	color: var(--pk4);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
	padding: 6px 18px;
	border-radius: 30px;
	margin-bottom: 14px;
	backdrop-filter: blur(6px);
	border: 1.5px solid var(--pk2);
}
.hero-name {
	font-size: clamp(2.6rem, 6.5vw, 4.8rem);
	font-weight: 900;
	line-height: 1.1;
	color: var(--text);
	margin-bottom: 6px;
	text-shadow: 0 2px 16px rgba(255, 255, 255, .9);
}
.hero-name .pk {
	color: var(--pk4);
}
.hero-tagline {
	font-size: .9rem;
	font-weight: 700;
	color: var(--pk4);
	letter-spacing: .1em;
	margin-bottom: 14px;
	font-family: var(--fn-jp);
	text-shadow: 0 1px 8px rgba(255, 255, 255, .8);
}
.hero-catch {
	font-size: 1rem;
	font-family: var(--fn-jp);
	font-weight: 600;
	color: var(--text2);
	line-height: 1.9;
	margin-bottom: 26px;
	text-shadow: 0 1px 8px rgba(255, 255, 255, .8);
}
.hero-oshi{
	font-size: 1.6rem;
	margin-bottom: 20px;
	text-shadow: 0 2px 8px rgba(255, 255, 255, .7);
}
.hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.angel-deco {
	position: absolute;
	z-index: 4;
	font-size: 1.15rem;
	font-weight: 800;
	background: rgba(255, 255, 255, .88);
	border: 1.5px solid var(--pk2);
	border-radius: 30px;
	padding: 8px 16px;
	color: var(--pk4);
	backdrop-filter: blur(6px);
	box-shadow: var(--shadow-sm), var(--glow);
	white-space: nowrap;
	animation: floatDeco 4s ease-in-out infinite;
}
.ad1 {
	top: 18%;
	right: 6%;
	animation-delay: 0s;
}
.ad2 {
	top: 36%;
	right: 10%;
	animation-delay: .9s;
}
.ad3 {
	top: 14%;
	left: 5%;
	animation-delay: 1.8s;
	font-size: .82em;
}
@keyframes floatDeco {
	0%,
	100% {
		transform: translateY(0)
	}
	50% {
		transform: translateY(-10px)
	}
}
.halo-deco {
	position: absolute;
	z-index: 3;
	bottom: 150px;
	right: 60px;
	width: 170px;
	opacity: .2;
	animation: haloFloat 6s ease-in-out infinite;
}
@keyframes haloFloat {
	0%,
	100% {
		transform: rotate(-8deg)translateY(0)
	}
	50% {
		transform:rotate(8deg)translateY(-12px)
	}
}
.scroll-hint {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: var(--text3);
	font-size: .6rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	z-index: 6;
	animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-hint::after {
	content: '';
	width: 1px;
	height: 26px;
	background: linear-gradient(to bottom, var(--pk3), transparent);
}
@keyframes scrollBounce {
	0%,
	100% {
		transform: translateX(-50%)translateY(0)
	}
	50% {
		transform:translateX(-50%)translateY(7px)
	}
}