/**
 * Team Detail Page Styles (仲間詳細)
 *
 *
 * Mobile-first with breakpoints at 768px, 1024px, 1280px
 *
 * @package Okayama
 */



.page-team-detail {
	background-color: #fff;
	overflow: hidden;
	position: relative;
}



.recruit-hero--detail .recruit-hero__image {
	border-radius: 0 30px 30px 0;
}

.recruit-hero--detail .recruit-hero__description {
	font-size: 14px;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 24px;
}


.td-badge {
	position: absolute;
	top: 16px;
	left: 0;
	background-color: red;
	color: #fff;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 24px;
	padding: 0 12px;
}


.td-profile {
	margin-top: 20px;
}

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

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

.td-profile__name-initial {
	font-size: 24px;
	font-weight: 700;
	color: #6bb529;
}

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



.td-qa {
	padding: 40px 20px 0;
}

.td-qa__heading {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 16px;
}

.td-qa__q {
	font-family: 'Ubuntu', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #6bb529;
	line-height: 58px;
	flex-shrink: 0;
}

.td-qa__title {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 24px;
	font-weight: 900;
	line-height: 40px;
	margin: 0;
}

.td-qa__title-dark {
	color: #222;
}

.td-qa__title-accent {
	color: #6bb529;
}

.td-qa__body {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #222;
	line-height: 28px;
	margin-bottom: 24px;
}

.td-qa__image {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.td-qa__img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}


.td-qa--left .td-qa__image {
	border-radius: 0 30px 30px 0;
	width: calc(100% + 20px);
	margin-left: -20px;
}

.td-qa--right .td-qa__image {
	border-radius: 30px 0 0 30px;
	width: calc(100% + 20px);
	margin-right: -20px;
}



.td-recommend {
	padding: 60px 20px 0;
}

.td-recommend__inner {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	gap: 24px;
	text-align: center;
}

.td-recommend__product-image {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.td-recommend__product-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.td-recommend__logo {
	margin-bottom: 16px;
}

.td-recommend__logo-img {
	height: 85px;
	width: auto;
}

.td-recommend__title {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #6bb529;
	line-height: 38px;
	margin: 0 0 12px;
}

.td-recommend__text {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #222;
	line-height: 28px;
	margin: 0;
	max-width: 400px;
}



@media (min-width: 768px) {

	.recruit-hero--detail .recruit-hero__description {
		font-size: 18px;
		line-height: 36px;
	}

	.td-profile__dept {
		font-size: 20px;
	}

	.td-profile__name {
		font-size: 20px;
	}

	.td-profile__name-initial {
		font-size: 28px;
	}

	.td-profile__date {
		font-size: 20px;
	}


	.td-qa {
		padding: 60px 40px 0;
	}

	.td-qa__q {
		font-size: 28px;
	}

	.td-qa__title {
		font-size: 28px;
	}

	.td-qa__body {
		font-size: 15px;
	}

	.td-qa--left .td-qa__image {
		width: calc(100% + 40px);
		margin-left: -40px;
	}

	.td-qa--right .td-qa__image {
		width: calc(100% + 40px);
		margin-right: -40px;
	}


	.td-recommend {
		padding: 80px 40px 0;
	}

	.td-recommend__inner {
		flex-direction: row-reverse;
		text-align: left;
		gap: 40px;
		justify-content: center;
	}

	.td-recommend__product-image {
		width: 234px;
		height: 234px;
	}
}



@media (min-width: 1024px) {

	.recruit-hero--detail {
		max-width: 1100px;
		margin: 0 auto;
		padding: 80px 40px 0;
	}

	.recruit-hero--detail .recruit-hero__image {
		flex: 0 0 45%;
		width: 45%;
		aspect-ratio: auto;
		height: auto;
		border-radius: 50px;
	}

	.recruit-hero--detail .recruit-hero__description {
		font-size: 20px;
		line-height: 40px;
		max-width: 365px;
	}

	.td-profile {
		margin-top: 40px;
	}

	.td-profile__dept {
		font-size: 22px;
	}

	.td-profile__name-initial {
		font-size: 30px;
	}


	.td-qa {
		display: flex;
		align-items: flex-start;
		gap: 40px;
		padding: 80px 0 0;
	}

	.td-qa--left {
		padding-left: max(60px, calc((100vw - 1100px) / 2 + 60px));
		padding-right: 0;
	}

	.td-qa--right {
		padding-left: 0;
		padding-right: max(60px, calc((100vw - 1100px) / 2 + 60px));
	}

	.td-qa__text {
		flex: 1;
	}

	.td-qa__image {
		flex: 0 0 50%;
		max-width: 50%;
		height: auto;
	}


	.td-qa--left .td-qa__text {
		order: 1;
	}

	.td-qa--left .td-qa__image {
		order: 2;
		border-radius: 50px 0 0 50px;
		width: auto;
		margin-left: 0;
	}


	.td-qa--right .td-qa__text {
		order: 2;
	}

	.td-qa--right .td-qa__image {
		order: 1;
		border-radius: 0 50px 50px 0;
		width: auto;
		margin-right: 0;
	}

	.td-qa__q {
		font-size: 30px;
	}

	.td-qa__title {
		font-size: 32px;
		line-height: 52px;
	}

	.td-qa__body {
		font-size: 15px;
		margin-bottom: 0;
	}

	.td-qa__img {
		height: 350px;
		object-fit: cover;
	}


	.td-recommend {
		padding: 100px 60px 0;
	}

	.td-recommend__product-image {
		width: 234px;
		height: 234px;
	}

	.td-recommend__title {
		font-size: 26px;
	}

	.td-recommend__text {
		font-size: 16px;
	}
}



@media (min-width: 1280px) {

	.recruit-hero--detail {
		max-width: 1100px;
		padding: 80px 0 0;
	}

	.recruit-hero--detail .recruit-hero__image {
		flex: 0 0 532px;
		width: 532px;
		border-radius: 50px;
	}

	.recruit-hero--detail .recruit-hero__content {
		padding: 0 0 0 80px;
	}

	.recruit-hero--detail .recruit-hero__description {
		font-size: 24px;
		line-height: 44px;
		max-width: 365px;
	}

	.td-profile {
		margin-top: 60px;
	}

	.td-profile__dept {
		font-size: 24px;
	}

	.td-profile__name {
		font-size: 24px;
	}

	.td-profile__name-initial {
		font-size: 32px;
	}

	.td-profile__date {
		font-size: 24px;
	}


	.td-qa {
		gap: 60px;
		padding-top: 80px;
	}

	.td-qa--left {
		padding-left: calc((100vw - 1100px) / 2);
	}

	.td-qa--right {
		padding-right: calc((100vw - 1100px) / 2);
	}

	.td-qa__text {
		flex: 0 1 502px;
		max-width: 502px;
	}

	.td-qa__q {
		font-size: 32px;
	}

	.td-qa__title {
		font-size: 36px;
		line-height: 58px;
	}

	.td-qa__body {
		font-size: 16px;
		line-height: 28px;
	}

	.td-qa__image {
		flex: 1 1 638px;
		max-width: none;
	}

	.td-qa__img {
		height: 396px;
	}

	.td-qa--left .td-qa__image {
		border-radius: 50px 0 0 50px;
	}

	.td-qa--right .td-qa__image {
		border-radius: 0 50px 50px 0;
	}


	.td-recommend {
		padding: 100px 0 0;
		max-width: 1100px;
		margin: 0 auto;
	}

	.td-recommend__inner {
		max-width: 800px;
		margin: 0 auto;
	}

	.td-recommend__logo-img {
		height: 85px;
	}

	.td-recommend__title {
		font-size: 28px;
		line-height: 38px;
	}

	.td-recommend__text {
		font-size: 16px;
		line-height: 28px;
		max-width: 368px;
	}
}
