@charset "UTF-8";
/* CSS Document */

.section-title{
	text-align: center;
	margin: 10px 0 50px;
	font-size: 2rem;
}

/*-----------------------------------
	
   スマホ版

-----------------------------------*/
.interview-section{
	padding: 50px 20px;
}
.interview-item{
	margin-bottom: 100px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.interview-img{
	width: 100%;
	overflow: hidden;
}
.interview-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.interview-text{
	position: relative;
	width: 100%;
}
.interview-text .number{
	display: block;
	font-size: 5rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 10px;
}
.interview-catch-copy{
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 15px;
	position: relative;
	z-index: 10;
	margin-top: -80px;
	padding: 10px;
}
.highlight{
	background: linear-gradient(transparent 60%, #ffff00 60%);
	padding: 0 5px;
}
.interview-text .name{
	font-size: 1.2rem;
	margin-bottom: 30px;
}
.interview-text .sub-title{
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 10px;
}
.interview-text .description{
	font-size: 1.3rem;
	line-height: 1.8;
}

/*-----------------------------------
	
   PC版

-----------------------------------*/
@media (min-width: 900px){
	
	.section-title{
		margin-bottom: 120px;
		font-size: 5rem;
	}
	
	.interview-section{
		width: 70%;
		margin: 0 auto;
		padding: 0;
	}
	.interview-img img{
		width: 100%;
		height: auto;
		border-radius: 8px;
	}
	.interview-img .main-img{
		width: 60%;
		max-width: 800px;
		height: auto;
	}
	.interview-item .interview-img img:not(.main-img){
		width: 500px;
		height: auto;
		display: block;
	}
	.interview-item{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 150px;
		gap: 0;
		position: relative;
	}
	.interview-text{
		flex: 0 0 50%;
		width: 90%;
		padding: 40px 80px;
		box-sizing: border-box;
	}
	.interview-item:nth-of-type(even){
		flex-direction: row-reverse;
	}
	.interview-item:nth-of-type(even) .interview-img img{
		margin-left: auto;
		margin-right: 0;
	}
	.interview-item:nth-of-type(3){
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 150px;
	}
	.interview-item:nth-of-type(7){
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 200px;
	}
	.interview-item:nth-of-type(4){
		display: flex;
		justify-content: flex-start;
		margin-top: -150px;
		margin-bottom: 300px;
		position: relative;
	}
	.interview-header-group{
		position: absolute;
		top: 15%;
		left: 45%;
		z-index: 10;
		width: 80%;
	}
	.interview-header-group .interview-catch-copy{
		font-size: 5rem;
		margin-top: -20px;
	}
	.interview-text .number{
		font-size: 11rem;
	}
	.interview-header-group .name{
		font-size: 1.5rem;
		margin-left: 300px;
		margin-bottom: 50px;
	}
	
}