/**
 * Team Page Styles (仲間を紹介)
 *
 *
 * @package Okayama
 */



.team-grid {
	position: relative;
	padding: 60px 20px 0;
}

.team-grid__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}



.team-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.team-card__photo {
	position: relative;
	width: 100%;
	aspect-ratio: 360 / 400;
	border-radius: 30px;
	overflow: hidden;
}

.team-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.team-card__dept {
	position: absolute;
	bottom: 25px;
	left: 0;
	background-color: #6bb529;
	padding: 8px 20px;
	border-radius: 0 15px 15px 0;
	display: flex;
	align-items: center;
}

.team-card__dept-text {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	line-height: 30px;
}

.team-card__name {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 20px;
	font-weight: 500;
	color: #222;
	line-height: 38px;
	margin: 10px 0 0;
}

.team-card__message {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #222;
	line-height: 24px;
	margin: 4px 0 0;
}



.team-grid__dot {
	display: none;
}



@media (min-width: 768px) {
	.team-grid {
		padding: 80px 40px 0;
	}

	.team-grid__inner {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 40px;
		max-width: 940px;
		margin: 0 auto;
	}

	.team-card {
		width: calc(50% - 20px);
	}

	.team-card__photo {
		aspect-ratio: 450 / 500;
	}
}



@media (min-width: 1024px) {
	.team-grid {
		padding: 0 60px 0;
		margin-top: 120px;
	}

	.team-grid__inner {
		flex-wrap: nowrap;
	}

	.team-card {
		width: calc(33.333% - 27px);
	}

	.team-card__dept {
		bottom: 30px;
		padding: 8px 16px;
	}

	.team-card__dept-text {
		font-size: 16px;
		line-height: 26px;
	}

	.team-card__name {
		font-size: 20px;
		margin-top: 16px;
	}

	.team-card__message {
		font-size: 14px;
		line-height: 24px;
		margin-top: 8px;
	}

	.team-grid__dot {
		display: block;
		position: absolute;
		width: 330px;
		height: 330px;
		pointer-events: none;
		z-index: -1;
	}

	.team-grid__dot-img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.team-grid__dot--left {
		left: calc(50% - 488px);
		transform: translateX(-50%);
		top: -80px;
	}

	.team-grid__dot--right {
		left: calc(50% + 385px);
		transform: translateX(-50%);
		top: 380px;
	}
}



@media (min-width: 1280px) {
	.team-grid {
		padding: 0;
		margin-top: 140px;
	}

	.team-grid__inner {
		max-width: 1100px;
	}

	.team-card {
		width: calc(33.333% - 27px);
	}

	.team-card__photo {
		aspect-ratio: 340 / 400;
	}

	.team-card__dept-text {
		font-size: 18px;
		line-height: 28px;
	}

	.team-card__name {
		font-size: 22px;
		line-height: 36px;
	}

	.team-card__message {
		font-size: 15px;
		line-height: 26px;
	}
}
