@charset "UTF-8";
#crosstalk {
	counter-reset: contents;
	margin-top: 120px;
}
#crosstalk > .container {
	max-width: 1200px;
}
@media screen and (max-width: 768px) {
	#crosstalk {
		margin-top: 70px;
	}
}


/*------------------------------------
.hero
------------------------------------*/
.hero__bg {
	background:
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)),
        url("../images/recruit/crosstalk/mv-bg.jpg") center 40% / cover no-repeat;
}
@media screen and (max-width: 768px) {}


/*------------------------------------
.ttl
------------------------------------*/
#crosstalk .ttl {
	font-size: 50px;
	text-align: center;
	padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
	#crosstalk .ttl {
		font-size: 24px;
		padding-bottom: 24px;
	}
}


/*------------------------------------
.crosstalk__desc
------------------------------------*/
.crosstalk__desc {
	padding-bottom: 120px;
}
.desc__txt {
	text-align: center;
	padding-bottom: 40px;
}
.desc-list {
	display: flex;
	gap: 100px;
}
.desc-list li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	position: relative;
	width: calc((100% - 200px)/3);
	text-align: center;
}
.desc-list li:not(:last-child):before,
.desc-list li:not(:last-child):after {
	content: "";
	position: absolute;
	top: 50%;
	right: -90px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-color: #155ca7;
	width: 80px;
	height: 2px;
}
.desc-list li:not(:last-child):before {
	transform: rotate(-45deg);
}
.desc-list li:not(:last-child):after {
	transform: rotate(45deg);
}
.desc-list img {
	border-radius: 50%;
	max-width: 200px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	aspect-ratio: 1 / 1;
	margin-inline: auto;
}
.desc-list .name {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.desc-list .name span {
	display: inline-block;
	background-color: #fff;
	font-size: 14px;
	line-height: 1;
	padding: 8px;
}
.desc-list .year {
	font-size: 14px;
	margin-top: 8px;
}
.desc-list p {
	font-size: 12px;
	text-align: left;
	margin-top: 8px;
}
.desc__img {
	margin-top: 100px;
}
.desc__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	aspect-ratio: 2 / 1;
}
@media screen and (max-width: 768px) {
	.crosstalk__desc {
		padding-bottom: 70px;
	}
	.desc__txt {
		text-align: left;
	}
	.desc-list {
		gap: 24px;
	}
	.desc-list li {
		width: calc((100% - 48px)/3);
	}
	.desc-list li:not(:last-child):before,
	.desc-list li:not(:last-child):after {
		right: -22px;
		width: 20px;
		height: 1px;
	}
	.desc-list img {
		width: 100%;
		height: auto;
	}
	.desc-list .name {
		flex-direction: column;
		gap: 0;
	}
	.desc-list .name span {
		font-size: 12px;
		padding: 5px;
	}
	.desc-list .year {
		font-size: 12px;
		margin: 0;
	}
	.desc__img {
		margin-top: 50px;
	}
	.desc__img img {
		aspect-ratio: 3 / 2;
	}
}


/*------------------------------------
.crosstalk__block
------------------------------------*/
.crosstalk__block {
	padding: 120px 0;
}
.crosstalk__block:nth-of-type(odd) {
	background-color: #f1f1f1;
}
.crosstalk__block:nth-of-type(even) {
	background-color: #fff;
}
.crosstalk__block .container {
	max-width: 1080px;
}
.block__txt {
	padding-bottom: 50px;
}
.block__txt h3 {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.crosstalk__block .block__txt h3::before {
	counter-increment: contents;
	content: "THEME " counter(contents, decimal-leading-zero) " ";
	font-size: 20px;
	font-weight: 500;
	line-height: 1.15;
	mix-blend-mode: difference;
}
.block__inner {
	max-width: 800px;
	margin-inline: auto;
}
.block__row {
	display: flex;
	align-items: flex-start;
	gap: 30px;
}
.block__row:nth-child(odd) {
	flex-direction: row-reverse;
}
.block__row:not(:last-child) {
	margin-bottom: 40px;
}
.block__row .img {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 100px;
	text-align: center;
}
.block__duo .img {
	width: 115px;
}
.block__trio .img {
	width: 170px;
}
.block__row .name {
	font-size: 10px;
}
.block__row .txt {
	position: relative;
	background-color: #f1f1f1;
	width: calc(100% - 130px);
	padding: 24px;
}
.block__duo .txt {
	width: calc(100% - 145px);
}
.block__trio .txt {
	width: calc(100% - 200px);
}
.crosstalk__block:nth-of-type(odd) .block__row .txt {
	background-color: #fff;
}
.block__row .txt:before {
	content: "";
	position: absolute;
	top: 20px;
	left: -10px;
	border-color: transparent #f1f1f1 transparent transparent;
	border-style: solid;
	border-width: 8px 10px 8px 0;
}
.crosstalk__block:nth-of-type(odd) .block__row .txt:before {
	border-color: transparent #fff transparent transparent;
}
.block__row:nth-child(odd) .txt:before {
	right: -10px;
	left: auto;
	border-color: transparent transparent transparent #f1f1f1;
	border-width: 8px 0 8px 10px;
}
.crosstalk__block:nth-of-type(odd) .block__row:nth-child(odd) .txt:before {
	border-color: transparent transparent transparent #fff;
}
.block__bottom {
	margin-top: 80px;
}
.block__bottom img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	aspect-ratio: 2 / 1;
}
#crosstalk .recruit__more {
	margin-top: 50px;
}
#crosstalk .recruit__more a {
	margin-inline: auto;
}
@media screen and (max-width: 768px) {
	.crosstalk__block {
		padding: 70px 0;
	}
	.block__txt h3 {
		font-size: 20px;
	}
	.crosstalk__block .block__txt h3::before {
		font-size: 14px;
	}
	.block__row {
		gap: 20px;
	}
	.block__row .img {
		width: 80px;
	}
	.block__duo .img {
		width: 95px;
	}
	.block__trio .img {
		width: 140px;
	}
	.block__row .txt {
		width: calc(100% - 100px);
		padding: 16px 24px;
	}
	.block__duo .txt {
		width: calc(100% - 115px);
	}
	.block__trio .txt {
		width: calc(100% - 160px);
	}
	.block__bottom {
		margin-top: 50px;
	}
	.block__bottom img {
		aspect-ratio: auto;
	}
}
