@charset "utf-8";

/* ---------- staff profiles ---------- */
.staff-profiles {
	max-width: 1000px;
	margin: 0 auto;
}

.staff-profile {
	padding-bottom: clamp(48px, 4vw, 64px);
}
.staff-profile:last-child {
	padding-bottom: 0;
}

.staff-profile__head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: clamp(32px, 3vw, 48px);
}
.staff-profile--reverse .staff-profile__head {
	flex-direction: row-reverse;
	text-align: right;
}

.staff-profile__head-bar {
	width: 4px;
	height: 56px;
	border-radius: 999px;
	flex-shrink: 0;
}
.staff-profile__head-bar--teal { background: #3aaecc; }
.staff-profile__head-bar--orange { background: #f4874b; }
.staff-profile__head-bar--yellow { background: #e8b84a; }
.staff-profile__head-bar--green { background: #4db87a; }
.staff-profile__head-bar--pink { background: #f4a0b0; }

.staff-profile__en {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: #3aaecc;
	margin: 0 0 4px;
}
.staff-profile--reverse.staff-profile--orange .staff-profile__en { color: #f4874b; }
.staff-profile--yellow .staff-profile__en,
.staff-profile--reverse.staff-profile--yellow .staff-profile__en { color: #c99700; }
.staff-profile--green .staff-profile__en { color: #4db87a; }
.staff-profile--pink .staff-profile__en { color: #e8899a; }

.staff-profile__name {
	font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
	font-size: clamp(24px, 1.88vw, 32px);
	font-weight: 900;
	color: #1e2939;
	margin: 0 0 4px;
	line-height: 1.2;
}

.staff-profile__role {
	font-size: 15px;
	font-weight: 700;
	color: #3aaecc;
	margin: 0;
}
.staff-profile--reverse.staff-profile--orange .staff-profile__role { color: #f4874b; }
.staff-profile--yellow .staff-profile__role,
.staff-profile--reverse.staff-profile--yellow .staff-profile__role { color: #c99700; }
.staff-profile--green .staff-profile__role { color: #4db87a; }
.staff-profile--pink .staff-profile__role { color: #e8899a; }

.staff-profile__row {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: clamp(32px, 3vw, 48px);
	align-items: start;
}
.staff-profile--reverse .staff-profile__row {
	grid-template-columns: 1fr 360px;
}

.staff-profile__img {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}
.staff-profile__img img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 360 / 460;
}
.staff-profile__img-bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 6px;
}
.staff-profile__img-bar--teal { background: #3aaecc; }
.staff-profile__img-bar--orange { background: #f4874b; }
.staff-profile__img-bar--yellow { background: #e8b84a; }
.staff-profile__img-bar--green { background: #4db87a; }
.staff-profile__img-bar--pink { background: #f4a0b0; }

.staff-profile__message-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: #3aaecc;
	margin: 0 0 16px;
	padding-bottom: 13px;
	border-bottom: 1px solid rgba(58,174,204,0.27);
}
.staff-profile--reverse.staff-profile--orange .staff-profile__message-label {
	color: #f4874b;
	border-bottom-color: rgba(244,135,75,0.27);
}
.staff-profile--yellow .staff-profile__message-label,
.staff-profile--reverse.staff-profile--yellow .staff-profile__message-label {
	color: #c99700;
	border-bottom-color: rgba(232,184,74,0.27);
}
.staff-profile--green .staff-profile__message-label {
	color: #4db87a;
	border-bottom-color: rgba(77,184,122,0.27);
}
.staff-profile--pink .staff-profile__message-label {
	color: #e8899a;
	border-bottom-color: rgba(244,160,176,0.27);
}

.staff-profile__message-text p {
	font-size: clamp(16px, 1vw, 19px);
	line-height: 2;
	color: #364153;
	margin: 0;
}

.staff-profile__details {
	margin-top: clamp(28px, 2.5vw, 40px);
}
.staff-profile__detail-row {
	display: grid;
	grid-template-columns: 112px 1px 1fr;
	gap: 20px;
	align-items: start;
	padding-top: 28px;
}
.staff-profile__detail-row:first-child {
	padding-top: 0;
}
.staff-profile__detail-label p {
	font-size: 13px;
	font-weight: 700;
	color: #3aaecc;
	margin: 0;
	text-align: right;
	line-height: 1.5;
}
.staff-profile--reverse.staff-profile--orange .staff-profile__detail-label p { color: #f4874b; }
.staff-profile--yellow .staff-profile__detail-label p,
.staff-profile--reverse.staff-profile--yellow .staff-profile__detail-label p { color: #c99700; }
.staff-profile--green .staff-profile__detail-label p { color: #4db87a; }
.staff-profile--pink .staff-profile__detail-label p { color: #e8899a; }

.staff-profile__detail-line {
	width: 1px;
	min-height: 19px;
	background: rgba(58,174,204,0.33);
	margin-top: 4px;
}
.staff-profile--reverse.staff-profile--orange .staff-profile__detail-line { background: rgba(244,135,75,0.33); }
.staff-profile--yellow .staff-profile__detail-line,
.staff-profile--reverse.staff-profile--yellow .staff-profile__detail-line { background: rgba(232,184,74,0.33); }
.staff-profile--green .staff-profile__detail-line { background: rgba(77,184,122,0.33); }
.staff-profile--pink .staff-profile__detail-line { background: rgba(244,160,176,0.33); }

.staff-profile__detail-text p {
	font-size: 16px;
	line-height: 1.85;
	color: #4a5565;
	margin: 0;
}

/* ---------- divider ---------- */
.staff-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: clamp(48px, 4vw, 64px) 0;
}
.staff-divider::before,
.staff-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #e5e7eb;
}
.staff-divider div {
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
	border-radius: 2px;
	background: linear-gradient(135deg, #b8e4f4 0%, #7ecaec 100%);
	flex-shrink: 0;
}

/* ---------- recruit CTA ---------- */
.staff-recruit-cta {
	position: relative;
	padding: clamp(80px, 10vw, 200px) 0;
	overflow: hidden;
}
.staff-recruit-cta__bg {
	position: absolute;
	inset: 0;
}
.staff-recruit-cta__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.staff-recruit-cta__overlay {
	position: relative;
	z-index: 1;
	background: rgba(30,41,57,0.55);
	padding: clamp(64px, 5vw, 96px) 0;
}
.staff-recruit-cta__inner {
	text-align: center;
	color: #fff;
}
.staff-recruit-cta__en {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.28em;
	color: #f4874b;
	margin: 0 0 16px;
}
.staff-recruit-cta__inner h2 {
	font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
	font-size: clamp(28px, 2.5vw, 40px);
	font-weight: 900;
	color: #fff;
	margin: 0 0 20px;
}
.staff-recruit-cta__lead p {
	font-size: clamp(15px, 1vw, 17px);
	line-height: 1.9;
	color: rgba(255,255,255,0.92);
	margin: 0 0 32px;
}
.staff-recruit-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 40px;
	border-radius: 999px;
	background: linear-gradient(163deg, #3aaecc 0%, #5bc8e8 100%);
	box-shadow: 0 4px 16px rgba(58,174,204,0.35);
}
.staff-recruit-cta__btn p {
	font-size: 16px;
	font-weight: 900;
	color: #fff;
	margin: 0;
}
.staff-recruit-cta__btn-icon img {
	width: 18px;
	height: 18px;
	display: block;
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
	.staff-profile__row,
	.staff-profile--reverse .staff-profile__row {
		grid-template-columns: 300px 1fr;
	}
}

@media (max-width: 768px) {
	.staff-profile__head,
	.staff-profile--reverse .staff-profile__head {
		flex-direction: row;
		text-align: left;
	}
	.staff-profile__row,
	.staff-profile--reverse .staff-profile__row {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.staff-profile--reverse .staff-profile__img {
		order: -1;
	}
	.staff-profile__img {
		max-width: 360px;
		margin: 0 auto;
		width: 100%;
	}
	.staff-profile__detail-row {
		grid-template-columns: 96px 1px 1fr;
		gap: 16px;
	}
}
