@charset "utf-8";

/*-------------------------------
	スタッフ紹介（一覧）
-------------------------------*/

.Staff{
	padding-top: 12.5rem;
	padding-bottom: 16.8rem;
}
.Staff + .Staff{
	padding-top: 0;
}
.Staff-block-wrap{
	border-top: 2px solid var(--subcolor);
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.Staff-block-wrap .No-data{
	margin-top: 5rem;
}
.Staff-block{
	width: 50%;
	border-bottom: 2px solid var(--subcolor);
}
.Staff-block a{
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	opacity: 1 !important;
}
.Staff-block__image{
	width: 24.7rem;
	overflow: hidden;
}
.Staff-block__image img{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.21;
	object-fit: cover;
}
.Staff-block__body{
	width: calc(100% - 24.7rem);
	padding: 1.5rem 3rem 1.5rem 2.6rem;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	position: relative;
}
.Staff-block__title{
	margin-bottom: 3.5rem;
}
.Staff-block__title-en{
	font-size: 1.2rem;
	margin-bottom: 1.3rem;
	line-height: 1;
	font-weight: 700;
	display: block;
}
.Staff-block__title-jp{
	font-size: 2.1rem;
	letter-spacing: .15em;
	line-height: 1.3;
	font-weight: 700;
	text-align: left;
}
.Staff-block__job{
	line-height: 1.5;
	letter-spacing: .15em;
}
.Staff-block .C-Arrow{
	position: absolute;
	right: 3rem;
	bottom: 1.8rem;
}

.Staff-block a:hover .Staff-block__image img{
	transform: scale(1.1);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

	.Staff-block__image{
		width: 20rem;
	}
	.Staff-block__body{
		width: calc(100% - 20rem);
	}

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.Staff-block__image{
		width: 17.5rem;
	}
	.Staff-block__body{
		width: calc(100% - 17.5rem);
	}

}
@media screen and (max-width:960px) and (min-width: 769px){


}
@media screen and (max-width:768px){

	.Staff{
		padding-top: 4.5rem;
		padding-bottom: 5.5rem;
	}
	.Staff + .Staff{
		padding-top: 0;
	}
	.Staff-block-wrap{
		flex-direction: column;
	}
	.Staff-block-wrap .No-data{
		margin-top: 2.5rem;
	}
	.Staff-block{
		width: 100%;
	}
	.Staff-block__image{
		width: 9.1rem;
	}
	.Staff-block__body{
		width: calc(100% - 9.1rem);
		padding: 2.2rem 3.5rem 2.2rem 1.8rem;
	}
	.Staff-block__title{
		margin-bottom: 1rem;
	}
	.Staff-block__title-en{
		font-size: 1rem;
		margin-bottom: .8rem;
	}
	.Staff-block__title-jp{
		font-size: 1.4rem;
	}
	.Staff-block__job{
		font-size: 1.1rem;
	}
	.Staff-block .C-Arrow{
		width: 2.2rem;
		height: 2.2rem;
		right: .6rem;
		bottom: 50%;
		transform: translateY(50%);
	}
	.Staff-block .C-Arrow::after{
		width: .8rem;
		height: .5rem;
	}

	.Staff-block a:hover .Staff-block__image img{
		transform: scale(1.1);
	}

}