/* ヒーロー：全幅背景画像型（hero-fullscreen） */

.hero-fullscreen {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #eee;
	width: 100%;
	padding-top: 130px;
	box-sizing: border-box;
	}
.hero-fullscreen__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1120px;
	height: 85vh;
	position: relative;
	overflow: hidden;
	}
.hero-fullscreen__bg-img {
	position: absolute;
	height: 120%;
	width: auto;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: 0;
	}
.hero-fullscreen__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0;
	width: 90%;
	color: #fff;
	position: absolute;
	top: 60%;
	z-index: 1;
	text-align: center;
	}
@keyframes hero-fullscreen-catch-wipe {
	from { clip-path: inset(-30px 100% -30px 0); }
	to   { clip-path: inset(-30px 0% -30px 0); }
	}

.hero-fullscreen__catch {
	font-size: clamp(2.6em, 5.7vw, 4em);
	font-weight: 900;
	line-height: 1.2;
	margin: 0 0 0.5em;
	color: var(--color-accent);
	transform: scaleY(1.1);
	display: inline-block;
	}
.hero-fullscreen__name {
	font-size: clamp(1.8em, 3.7vw, 2.6em);
	font-weight: 900;
	margin: 0;
	}
.hero-fullscreen__position {
	font-size: clamp(1.2em, 2.3vw, 1.6em);
	margin: 1em 0 0;
	}

@media (max-width: 768px) {
	.hero-fullscreen { padding-top: 90px; }
	.hero-fullscreen__inner { flex-direction: column; height: 80vh; }
	.hero-fullscreen__body { padding: 8% 0 16%; }
	.hero-fullscreen__position { margin: .5em 0 0; }
	}
