/* ヒーロー：静的デザイン型（hero-static） */

.hero-static {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	width: 100%;
	/* min-height: 90vh は Firefox で上下余白が過大化する事象があったため撤去。
	   高さはコンテンツと padding に委ねる */
	padding-top: 130px;
	padding-bottom: 40px;
	box-sizing: border-box;
	}
.hero-static__inner {
	display: flex;
	align-items: center;
	width: 90%;
	max-width: 1120px;
	}
.hero-static__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 8% 0 0;
	color: #333333;
	}
@keyframes hero-catch-wipe {
	from { clip-path: inset(-30px 100% -30px 0); }
	to   { clip-path: inset(-30px 0% -30px 0); }
	}

.hero-static__catch {
	font-size: clamp(2.6em, 5.7vw, 4em);
	font-weight: 900;
	line-height: 1.2;
	margin: 0 0 0.5em;
	}
@media (prefers-reduced-motion: no-preference) {
	.hero-static__catch    { animation: hero-catch-wipe 0.7s ease-out 0.2s both; }
	.hero-static__name     { animation: hero-catch-wipe 0.7s ease-out 0.7s both; }
	.hero-static__position { animation: hero-catch-wipe 0.7s ease-out 1.1s both; }
	}
.hero-static__name {
	font-size: clamp(1.8em, 3.7vw, 2.6em);
	font-weight: 900;
	margin: 0;
	}
.hero-static__position {
	font-size: clamp(1.2em, 2.3vw, 1.6em);
	margin: 1em 0 0;
	}
.hero-static__image {
	width: 40%;
	flex-shrink: 0;
	aspect-ratio: 1 / 1;
	position: relative;
	overflow: hidden;
	}
.hero-static__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	}

@media (max-width: 768px) {
	.hero-static { padding-top: 90px; padding-bottom: 20px; }
	.hero-static__inner { flex-direction: column; }
	.hero-static__body { padding: 8% 0 16%; }
	.hero-static__image { width: 100%; }
	.hero-static__position { margin: .5em 0 0; }
	}
