@charset "UTF-8";
/* ---------------------------------------
  人を知る
-----------------------------------------*/
/* sec_interview
--------------------------------*/
#sec_interview {
	padding: 10rem 0 0;
}
#sec_interview .interview_list {
	max-width: 50rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10rem 0;
	margin: 0 auto;
}
#sec_interview .interview_list .item {
	padding-bottom: 5.2rem;
}
#sec_interview .interview_list .item a {
	position: relative;
	display: block;
}
@media screen and (min-width: 768px) {
	#sec_interview .interview_list .item a {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	#sec_interview .interview_list .item a:hover {
		opacity: 0.7;
	}
}
#sec_interview .interview_list .item .img {
	aspect-ratio: 1/1;
	border-radius: 3.5rem;
	box-shadow: 0 0 2.4rem -0.5rem rgba(0, 0, 0, 0.06);
	overflow: hidden;
}
#sec_interview .interview_list .item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#sec_interview .interview_list .item .profile {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: absolute;
	left: 0;
	bottom: -5.2rem;
}
#sec_interview .interview_list .item .profile > * {
	letter-spacing: 0.06em;
	padding: 0.3rem 0.4rem;
	background-color: #fff;
}
#sec_interview .interview_list .item .profile .year {
	font-size: 2.2rem;
	line-height: 1.1818181818;
}
#sec_interview .interview_list .item .profile .position {
	font-weight: 700;
	font-size: 2.3rem;
	line-height: 1.4347826087;
}
#sec_interview .interview_list .item .profile .name {
	font-weight: 700;
	font-size: 4.2rem;
	line-height: 1.5;
}
#sec_interview .interview_list .item .arw {
	width: 6.9rem;
	height: 6.9rem;
	background-color: #262423;
	border-radius: 50%;
	position: absolute;
	right: 1.8rem;
	bottom: -3rem;
}
#sec_interview .interview_list .item .arw::before {
	content: "";
	display: inline-block;
	width: 1.1rem;
	height: 1.1rem;
	border-top: 0.25rem solid #fff;
	border-right: 0.25rem solid #fff;
	transform: rotate(45deg);
	position: absolute;
	left: 2.8rem;
	top: 3rem;
}
#sec_interview .interview_post {
	max-width: 52.2rem;
	margin: 0 auto;
}
#sec_interview .interview_post .post_head .img {
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: 3.5rem;
	box-shadow: 0 0 2.4rem -0.5rem rgba(0, 0, 0, 0.06);
	overflow: hidden;
}
#sec_interview .interview_post .post_head .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#sec_interview .interview_post .post_head .profile {
	margin-top: 2.5rem;
}
#sec_interview .interview_post .post_head .profile > * {
	letter-spacing: 0.06em;
}
#sec_interview .interview_post .post_head .profile .year {
	font-size: 2.3rem;
	line-height: 1.5217391304;
}
#sec_interview .interview_post .post_head .profile .position {
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 1.68;
}
#sec_interview .interview_post .post_head .profile .name {
	font-weight: 700;
	font-size: 4.1rem;
	line-height: 1.6097560976;
}
#sec_interview .interview_post .post_main {
	margin-top: 7rem;
}
#sec_interview .interview_post .post_main .block + .block {
	margin-top: 4.2rem;
}
#sec_interview .interview_post .post_main .block .topic {
	position: relative;
	font-weight: 500;
	font-size: max(2.2rem, 15px);
	line-height: 1.5454545455;
	letter-spacing: 0;
	padding-left: 1.14em;
}
#sec_interview .interview_post .post_main .block .topic::before {
	content: "";
	width: 0.8em;
	height: 0.8em;
	background-color: #FF8128;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: calc(50% - 0.4em);
}
#sec_interview .interview_post .post_main .block .topic + .ttl {
	margin-top: 0.9rem;
}
#sec_interview .interview_post .post_main .block .ttl {
	font-weight: 700;
	font-size: 3.3rem;
	line-height: 1.6060606061;
	letter-spacing: 0.04em;
}
#sec_interview .interview_post .post_main .block .ttl + p {
	margin-top: 1.7rem;
}
#sec_interview .interview_post .post_main .block p {
	text-align: justify;
}