/* /////////////////////////////////////////////////////////////////////////////
J SPORTS ラグビー > トップリーグ > 注目選手 CSS
///////////////////////////////////////////////////////////////////////////// */
/* **********
注目選手一覧
***************************** */
/** リスト **/
.playerList__container {
	color: #333;
	font-size: 16px;
	line-height: 1.5;
}
.playerList--item__container {
	display: flex;
	flex-wrap: wrap;
}
.playerList--item {
	width: 260px;
	margin-right: 20px;
	background: #eee;
}
.playerList--item:nth-child(4n) {
	margin-right: 0;
}
.playerList--item:nth-child(n + 5) {
	margin-top: 20px;
}
.playerList--item a {
	display: block;
	-webkit-transition: all .3s 0s ease;
    transition: all .3s 0s ease;
}
.playerList--item a:hover {
	opacity: .6;
}
.playerList--item img {
	vertical-align: top;
	width: 100%;
	height: auto;
}

.playerList--item--info {
	position: relative;
}
.playerList--item--img {
	position: relative;
}
.playerList--item--img::after {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 70px;
	height: 50px;
	content: "";
}
.playerList--item--countory {
	position: absolute;
	z-index: 1;
	top: 10px;
	left: 10px;
	width: 45px;
	height: 45px;
}
.playerList--item--position {
	position: absolute;
	z-index: 1;
	top: 10px;
	right: 10px;
	min-width: 70px;
	padding: 5px 0;
	background: #434343;
	color: #fff;
	font-family: 'Pathway Gothic One',sans-serif;
	font-size: 25px;
	line-height: 1;
	text-align: center;
}
.playerList--item--name {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	padding: 0 14px;
	background: #434343;
	color: #fff;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}
.playerList--item--name::before {
	position: absolute;
	right: 5px;
	bottom: 5px;
	content: '';
	border-top: 6px solid transparent;
	border-right: 6px solid #fff;
}
.playerList--item--team {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	padding: 0 14px;
	background: #000;
	color: #fff;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}

@media only screen and (max-width: 896px) {
	.playerList__container {
		font-size: 14px;
	}
	.playerList--item {
		width: calc(50% - 5px);
		margin: 0;
	}
	.playerList--item:nth-child(odd) {
		margin-right: 5px;
	}
	.playerList--item:nth-child(even) {
		margin-left: 5px;
	}
	.playerList--item:nth-child(n + 5) {
		margin-top: 0;
	}
	.playerList--item:nth-child(n + 3) {
		margin-top: 10px;
	}
	
	.playerList--item--img::after {
		bottom: 5px;
		right: 5px;
		width: 40px;
		height: 30px;
	}
	.playerList--item--countory {
		top: 5px;
		left: 5px;
		width: 25px;
		height: 25px;
	}
	.playerList--item--position {
		top: 5px;
		right: 5px;
		min-width: 40px;
		font-size: 15px;
	}
	.playerList--item--name {
		height: 40px;
		padding: 0;
		font-size: 11px;
	}
	.playerList--item--team {
		height: 40px;
		padding: 0 11px;
		font-size: 11px;
	}
}

/* **********
詳細ページ
***************************** */
.playerList .player__profile {
	display: flex;
	align-items: flex-start;
}
.playerList .player__profile--img {
	width: 280px;
	margin-right: 50px;
}
.playerList .player__profile--img img {
	width: 100%;
	height: auto;
}
.playerList .player__profile--txt {
	width: 760px;
	margin-left: 0;
}
.playerList .player__profile--name {
	margin: 0 0 30px;
	padding: 5px 0 5px 15px;
}
.playerList .player__profile--name:before {
	content: none;
}
.playerList .player__profile--name p {
	color: #222;
}
.playerList .player__profile--name2 {
	margin: 0 0 30px;
	padding: 5px 0 5px 15px;
}
.playerList .player__profile--name2:before {
	content: none;
}
.playerList .player__profile--name2 p {
	color: #222;
}
.playerList .player__profile--name__main {
	margin-bottom: 10px;
	font-size: 30px;
}
.player__profile--list {
	margin-top: 0;
	color: #222;
}
.playerList .player__profile--item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 0;
	padding: 0 0 10px 0;
	border-bottom: solid 1px #ccc;
	line-height: 1.8;
}
.playerList .player__profile--item + .player__profile--item {
	margin-top: 5px;
	padding-top: 10px;
}
.playerList .player__profile--item__name {
	width: 30%;
	font-weight: bold;
}
.playerList .player__profile--item__body {
	width: 70%;
}

@media only screen and (max-width: 896px) {
	.playerList .player__profile {
		display: block;
	}
	.playerList .player__profile--img {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.playerList .player__profile--txt {
		width: 100%;
	}
	.playerList .player__profile--name {
		font-size: 12px;
		margin-left: 0;
		margin-bottom: 20px;
	}
	.playerList .player__profile--name2 {
		font-size: 12px;
		margin-left: 0;
		margin-bottom: 20px;
	}
	.playerList .player__profile--name__main {
		font-size: 20px;
	}
	
	.playerList .player__profile--item {
		display: block;
	}
	.playerList .player__profile--item__name {
		width: 100%;
		margin-bottom: 5px;
	}
	.playerList .player__profile--item__body {
		width: 100%;
	}
}

/* アザーショット */
.playerList .player__profile--other--shot {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}
.playerList .player__profile--other--shot .player__profile--other--shot--item {
	width: 50%;
	padding: 10px;
}
.playerList .player__profile--other--shot .player__profile--other--shot--item img {
	width: 100%;
	height: auto;
}
.playerList .player__profile--other--shot--credit {
	width: 80%;
	margin: 10px auto 0;
	padding-right: 10px;
	color: #fff;
	font-size: 14px;
	text-align: right;
}

@media only screen and (max-width: 896px) {
	.playerList .player__profile--other--shot .player__profile--other--shot--item {
		width: 100%;
		padding: 10px;
	}
}

/* 動画 */
.playerList .movie {
	width: 510px;
	margin-right: auto;
	margin-left: auto;
}
.playerList .player__profile--movie {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	background: #eee;
}
.playerList .player__profile--movie__iframe {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media only screen and (max-width: 896px) {
	.playerList .movie {
		width: calc(100% - 30px);
		margin: 0 15px;
	}
}

/* イントロダクション */
.playerList .player__introduction {
	/*display: flex;*/
	/* ↑相関図いれるとき */
	line-height: 1.8;
}
.playerList .player__introduction--body + .player__introduction--body {
	margin-top: 20px;
}
.playerList .player__introduction--quote {
	margin-top: 20px;
	color: #999;
}
.playerList .player__introduction .player__introduction--txt {
	width: calc(50% - 10px);
	margin-right: 10px;
	padding-top: 0;
	color: #222;
}
.playerList .player__introduction .player__introduction--correlation {
	width: calc(50% - 10px);
	margin-left: 10px;
}
.playerList .player__introduction .player__introduction--correlation img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
.playerList .player__introduction .player__introduction--correlation .player__introduction--correlation--txt {
	padding: 20px;
	background: #fff;
	font-size: 14px;
}

@media only screen and (max-width: 896px) {
	.playerList .player__introduction {
		display: block;
	}
	.playerList .player__introduction .player__introduction--txt {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.playerList .player__introduction .player__introduction--correlation {
		width: 100%;
		margin-left: 0px;
	}
	.playerList .player__introduction .player__introduction--correlation .player__introduction--correlation--txt {
		padding: 14px;
		font-size: 12px;
	}	
}

/* QUESTION */
.playerList .player__question--item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 0;
	padding-bottom: 20px;
	border-bottom: solid 1px #ccc;
	color: #222;
	line-height: 1.8;
}
.playerList .player__question--item + .player__question--item {
	margin-top: 20px;
}
.playerList .player__question--item__name {
	width: 40%;
	font-weight: bold;
}
.playerList .player__question--item__body {
	width: 60%;
}

@media only screen and (max-width: 896px) {
	.playerList .player__question--item {
		display: block;
		padding: 0 0 10px 0;
	}
	.playerList .player__question--item__name {
		width: 100%;
		margin-bottom: 5px;
	}
	.playerList .player__question--item__body {
		width: 100%;
	}
}

/** ページ最下の一覧 **/
.playerList .page--detail .txt--link--item {
	width: calc(100% / 3);
	margin-bottom: 15px;
}
.playerList .page--detail .txt--link--item:nth-child(even) {
	padding-right: 0;
	padding-left: 0;
}

@media only screen and (max-width: 896px) {
	.playerList .headline-small--blue {
		line-height: 1.4;
	}
	.playerList .page--detail .txt--link--item {
		width: 100%;
		margin-bottom: 10px;
	}
}


/** 成績 **/
.playerList .player__profile--item__body .player__profile--item__body--cat {
	display: flex;
}
.playerList .player__profile--item__body .player__profile--item__body--cat {
	display: flex;
}
.playerList .player__profile--item__body .player__profile--item__body--cat dl + dl {
	margin-left: 10px;
}
.playerList .player__profile--item__body .player__profile--item__body--cat dt {
	padding: 0 1px;
	font-weight: bold;
	text-align: center;
}
.playerList .player__profile--item__body .player__profile--item__body--cat dd {
	padding: 0 5px 5px 5px;
	text-align: center;
}
.playerList .player__profile--item__body .player__profile--item__body--cat + .player__profile--item__body--cat {
	margin-top: 10px;
}