/* カテゴリタイトル */
.player_list_wrap {
	padding-top: 20px;
	padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
	.player_list_wrap {
		padding-top: 20px;
		padding-bottom: 40px;
	}
}

.player_list_wrap .player_cat_ttl {
	padding: 10px;
	background-color: #222;
	color: #FFF;
}
@media screen and (max-width: 767px) {
	.player_list_wrap .player_cat_ttl {
		position: sticky;
	}
}

.player_list_wrap .list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 20px;
	padding-top: 20px;
}
@media screen and (max-width: 767px) {
	.player_list_wrap .list {
		gap: 20px 0;
	}
}

.player_list_wrap .list .detail {
	width: calc(33.3% - 13px);
}
@media screen and (max-width: 767px) {
	.player_list_wrap .list .detail {
		width: 100%;
	}
}

.player_list_wrap .list .detail a {
	display: block;
	color: #333;
	text-decoration: none;
}
@media screen and (max-width: 767px) {
	.player_list_wrap .list .detail a {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

.player_list_wrap .list .detail .ph_wrap {
	background-image: url(../img/common/players_bg.webp);
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	.player_list_wrap .list .detail .ph_wrap {
		width: 140px;
		height: 120px;
		border-radius: 6px;
	}
}

.player_list_wrap .list .detail .ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}

.player_list_wrap .list .detail a:hover .ph_wrap img {
	transform: scale(1.06);
}

.player_list_wrap .list .detail .name_wrap {
	display: flex;
	align-items: center;
	margin-top: 20px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.player_list_wrap .list .detail .name_wrap {
		margin-top: 0;
		width: calc(100% - 160px)
	}
}

.player_list_wrap .list .detail .name_wrap .num img {
	height: 36px;
}

.player_list_wrap .list .detail .name_wrap .name {
	padding-left: 20px;
	font-size: 20px;
	font-weight: 700;
}
@media screen and (max-width: 767px) {
	.player_list_wrap .list .detail .name_wrap .name {
		padding-left: 15px;
		font-size: 18px;
	}
}

.player_list_wrap .list .detail .name_wrap .name span {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.1em;
	display: block;
	padding-top: 5px;
}
@media screen and (max-width: 767px) {
	.player_list_wrap .list .detail .name_wrap .name span {
		font-size: 12px;
	}
}

.player_list_wrap .list .detail .name_wrap .more {
	font-size: 14px;
	font-weight: 500;
	color: #005a99;
	position: absolute;
	right: 6px;
	top:40%;
	transform: translateY(-50%);
	transition: all 0.3s;
	opacity: 0;
}
@media screen and (max-width: 767px) {
	.player_list_wrap .list .detail .name_wrap .more {
		display: none;
	}
}

.player_list_wrap .list .detail a:hover .name_wrap .more {
	opacity: 1;
	right: 0;
}

.player_list_wrap .list .detail .name_wrap .more span {
	border-bottom: 2px solid #005a99;
}