@charset "utf-8";
/*------------------------------------------------------------
	members
------------------------------------------------------------*/
#main {
	padding-bottom: 7.4rem;
	background-color: #EFEEEC;
}
#main .memberUl {
	padding: 3.5rem 1rem 0;
	margin: 0 auto;
	width: fit-content;
	display: flex;
	flex-wrap: wrap;
	gap: 4rem 2.5rem;
	/*
	max-height: 102.4rem;
	overflow: hidden;
	*/
	justify-content: center;
}
#main .memberUl li {
	width: 21.6rem;
}
#main .memberUl a {
	height: 100%;
	display: block;
	border-top-right-radius: 1.4rem;
	background-color: #fff;
}
#main .memberUl .title {
	padding: 0.7rem 0.9rem 0.6rem;
	display: block;
	position: relative;
	font-weight: 600;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
}
#main .memberUl .title::before {
	width: 0.3rem;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: #FFED00;
}
#main .memberUl .photo {
	display: block;
	width: 18.2rem;
	aspect-ratio: 182/212;
}
#main .memberUl .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#main .memberUl .name {
	padding: 0.4rem 3.4rem 0.5rem ;
	font-weight: 600;
	line-height: 1.875;
	text-align: right;
	display: block;
	position: relative;
	word-break: break-all;
}
#main .memberUl .name::before {
	width: 0.7rem;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #FFED00;
}
#main .memberUl .name .number {
	font-size: 1.8rem;
	display: block;
	line-height: 1.5;
	font-family: "Inter", sans-serif;
}
@media all and (min-width: 897px) {
	#main .memberUl a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	#main {
		padding-bottom: 3.3rem;
	}
	#main .memberUl li {
		width: 11.4rem;
	}
	#main .memberUl a {
		border-top-right-radius: 0.7rem;
	}
	#main .memberUl .photo {
		width: 10.7rem;
	}
	#main .memberUl {
		padding: 3.3rem 1.5rem 0;
		gap: 1.5rem 0.6rem;
		max-height: inherit;
	}
	#main .memberUl .title {
		padding-top: 0.6rem;
		font-size: 0.6rem;
	}
	#main .memberUl .name {
		padding: 0.3rem 0.7rem 0.5rem;
		line-height: 1.55;
	}
	#main .memberUl .name::before {
		display: none;
	}
	#main .memberUl .name .number {
		font-size: 1.4rem;
	}
}