.content_inner{
	align-items: center;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
}

.member{
	padding: 80px 0;
}
.member_wrap{
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 20px;
	margin: 80px 0 30px;
	width: 100%;
	max-width: 92vw;
}
.member_wrap .member_items{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	gap: 30px;
	border: 1px solid #ddd;
	width: 200px;
	padding: 20px;
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}
.member_wrap a{
	border: none;
	color: #444;
	text-decoration: none;
	transition: 0.3s;
}
.member_wrap a:hover{
	transform: scale(1.05);
}
.member_wrap .member_items h3{
	border: none;
	color: #444;
	text-decoration: none;
}
.member_wrap .member_items_top{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}
.member_wrap .member_items_top h3{
	margin: 10px 0;
}
.member_wrap .member_items_top .member_prf{
	margin: 20px 0 5px;
	padding: 6px 8px;
	border: 2px solid #ddd;
	border-radius: 6px;
	line-height: 1.4;
}
.member_wrap .member_items_bottom{
	width: 100%;
}
.member_wrap .member_items img{
	border: 1px solid #ddd;
	border-radius: 100vw;
	width: 150px;
}
.member_wrap .member_items_bottom a{
	color: #3498DB;
	text-decoration: none;
}
.member_wrap .member_items_bottom .member_link p{
	margin: 4px 0;
}
@media (max-width: 1280px) {
	.member_wrap{
		justify-content: center;
		align-items: stretch;
		flex-wrap: wrap;
		gap: 30px;
		width: 100%;
		max-width: 96vw;
	}
	.member_wrap .member_items{
		width: 200px;
	}
}
@media (max-width: 768px) {
	.member_wrap{
		justify-content: center;
		align-items: stretch;
		flex-wrap: wrap;
		gap: 10px;
		width: 100%;
		max-width: 100vw;
	}
	.member_wrap::after{
		content: "";
		width: 80vw;
		height: auto;
	}
	.member_wrap .member_items{
		width: 35vw;
	}
	.member_wrap .member_bottom p{
		width: 80vw;
	}
}



.container_single{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	position: relative;
	padding: 0;
	min-height: 100svh;
}
.container_single .h1_wrap{
	margin: 180px 0 100px;
	text-align: center;
}
.container_single .h1_wrap h1{
	font-size: 64px;
	font-family: "Poppins", sans-serif;
}
.container_single .member_single_img{
	display: block;
	margin: 0;
	border-radius: 50px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.member_single_wrap{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 30px;
}
.member_single_desc p{
	margin: 4px 0;
	padding: 12px 40px;
	width: 300px;
	background: #001;
	color: #fff;
}
.member_single_desc a{
	color: #fff;
	text-decoration: none;
}
.member_single_txt{
	margin: 100px 0;
	padding: 0 4vw;
	text-align: center;
}
.container_single h2{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	font-family: "Poppins", sans-serif;
}
.container_single h2::before,.container_single h2::after{
	content: "";
	flex-grow: 1;
	min-width: 1em;
	height: 1px;
	background: #aaa;
}
.container_single h2::before{
	margin-right: 0.5em;
}
.container_single h2::after{
	margin-left: 0.5em;
}
.member_single_sns{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.member_single_sns a{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 40px;
	width: 50px;
	height: 50px;
	padding: 8px;
	border-radius: 100vw;
	background: #000;
}
.member_single_sns a img{
	display: block;
	width: 36px;
	height: 36px;
}
.sns_bg{
	background: #000;
}
@media (max-width: 1200px) {
	.member_single_wrap{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 30px;
	}
	.container_single .h1_wrap{
		margin: 130px 0 50px;
		text-align: center;
	}
	.container_single .h1_wrap h1{
		font-size: 36px;
		font-family: "Poppins", sans-serif;
	}
	.container_single .member_single_img{
		width: 80vw;
	}
	.member_single_txt{
		margin: 50px 0;
		text-align: center;
	}
	.member_single_sns{
		margin: 0 0 40px;
	}
}