@import url('https://fonts.googleapis.com/css2?family=Kosugi&display=swap');
.bg {
	background-color: rgba(211, 211, 211, 0.3);
}
	
.member {
	width: 980px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 100px;
}

.member-container {
	margin: 80px 0 0;
}
.content__ttl {
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 2px;
	margin: 50px 0;
}
.content__txt {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	margin: 0 auto;
}
.content__img {
	width: 33%;
	transform: translateY(30px);
	opacity: 0;
	transition: all, 2s;
}
.content__img.scrollin{
  opacity: 1;
  transform: translateY(0);
}


.content__item {
	position: relative;
	width: 280px;
	height: 400px;
	margin: 0 auto;
	display: block;
	overflow: hidden;
	cursor: pointer;
}
.content__item img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	margin: 0 auto;
	display: block;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
	border-radius: 20px;
}
.content__item:hover img:nth-of-type(2) {
	opacity: 0;
}
.content__name {
	margin: 20px 0 40px;
	font-family: 'Syouwanonioi';
	font-size: 20px;
}
@media screen and (max-width:980px) {
.member {
	width: 90%;
}
.content__item {
	width: 90%;
	height: auto;
	padding: 140% 0 0;
}
}
@media screen and (max-width:640px) {
	.content__img {
		width: 50%;
	} 
	.content__sp img {
		display: none;
	}
	.content__name {
		margin: 10px 0;
		font-size: 15px;
	}
}