/*==================================================
プレーヤー
===================================*/
/* プレーヤー一覧アウトライン
------------------------------------------------------------*/
#players-page {
	margin: 0 auto;
	background-color: #282828;
}

/* タイトルはsub-page.cssに記載*/

/* プレーヤー一覧データボックス
------------------------------------------------------------*/
#player-list {
	margin: 60px auto 0;
	padding-bottom: 20px;
	width: 1000px;
}

#player-list .data-box {
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between;
	max-width: 100%;
	margin: 50px auto 0;
	font-weight: bold;
	font-size: 20px;
	line-height: 1.0em;
}
 
#player-list li {
	display: flex;
	flex-direction: column;
	width: 21%;
	margin-bottom: 100px;
	background-color: #fd4c9b;
}

#player-list .data-box::after, #player-list .data-box::before {
	width: 21%;
	content: "";
	display: block;
}

#player-list .data-box::before {
	order: 1;
}

#player-list ul {
	margin: 0;
	padding: 0px;
}

#player-list .data-box a {
	text-decoration: none;
}
	
#player-list .data-box img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}


#player-list .data-box .open {
	margin-top: 7px;
	margin-bottom: 5px;
	color: #fff;
}

#player-list .data-box .parent {
	margin-top: 3px;
	display:flex;
	justify-content:space-between;
}

#player-list .last-name {
	width: 100%;
	height :auto;
	text-align: left;
	padding-left: 3px;
	line-height: 1.4em;             /* 行の高さ */
	transform: scale(0.9, 1.5);   /* 変形 横,縦 */
	font-size: 13pt;            /* 文字サイズ */
}

#player-list .yajirusi img {
	margin-top: 6px;
	margin-right: 10px;
	width: 15px;
	height: auto;
}

#player-list .first-name {
	width: 100%;
	height :auto;
	text-align: left;
	padding-left: 5px;
	line-height: 1.4em;             /* 行の高さ */
	transform: scale(0.9, 1.5);   /* 変形 横,縦 */
	font-size: 13pt;            /* 文字サイズ */
}

#player-list .bib {
	padding-right: 8px;
	line-height: 1.4em;             /* 行の高さ */
	transform: scale(0.9, 1.5);   /* 変形 横,縦 */
	font-size: 13pt;            /* 文字サイズ */
}

#player-list .graduation {
	text-align: right;
	padding-top: 3pt;
	padding-right: 8px;
	width: 100%;
	font-size: 11pt;            /* 文字サイズ */
}

#player-list .nunber {
	font-size: 15px;
}

#player-list .old-player {
	font-size: 15px;
	color: #fff;
}



/* 過去プレーヤー
------------------------------------------------------------*/
#old-player {
}

.old-player-year {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.old-player-year .item {
	margin: 0 0 30px;
	padding: 0px;
	width: 21%;
	background-color: #282828;
}

.old-player-year .butt-player-menu a {
	border-radius: 3px;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	padding: 3px 0;
	color: #fff;
	transition: 0.3s ease-in-out;
	font-weight: normal;
	background-color: #fd4c9b;
	border: 1px solid #fe0172;
	text-decoration: none;
}

.old-player-year .butt-player-menu a:hover {
	background-color: #7201c1;
	border: 1px solid #7201c1;
}








/* カテゴリータイトル
------------------------------------------------------------*/
#player-list .staff {
	position: relative;
	padding-top: 30px;
}

#player-list .staff h1 {
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 3px 0 1px 6px;
	line-height: 1.0em;
	color: #fff;
	border-bottom: solid 1px #fe0172;
	border-left: solid 5px #fe0172;
	font-size: 20px;
}



/* 戻るボタンはstyle.cssに記載*/

/* 注意書きはサブページcssに記載*/


/* プレーヤー詳細　アウトライン
------------------------------------------------------------*/
#profile {
	margin: 100px auto 80px;
	width: 900px;
}

/* プレーヤー詳細　上段
------------------------------------------------------------*/
#profile .profile-box {
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between;
	max-width: 100%;
}

#profile .profile-box li {
	width: 49%;
	margin-bottom: 0px;
	padding: 0px;
	border: solid 0px #de9700;
	text-align: center;
	background-color: #fff;
}

#profile .profile-box::after, #profile .profile-box::before {
	width: 48%;
	content: "";
	display: block;
}

#profile .profile-box::before {
	order: 1;
}

/* プレーヤー詳細　画像
------------------------------------------------------------*/
#profile img {
	margin: 0 auto;
	padding0;
	width: auto;
	height: 800px;
}

/* プレーヤー詳細　選手名
------------------------------------------------------------*/
#profile .name {
	width: 100%;
	margin-top: 130px;
	text-align: right;
	line-height: 1em;             /* 行の高さ */
	transform: scale(0.9, 1.3);   /* 変形 横,縦 */
	font-size: 45pt;            /* 文字サイズ */
	color: #fd1b80;
	font-weight: bold;
}

/* プレーヤー詳細　ポジション
------------------------------------------------------------*/
#profile .position {
	margin-top: 60px;
	line-height: 1em;             /* 行の高さ */
	transform: scale(0.9, 1.3);   /* 変形 横,縦 */
	font-size: 45px;
	text-align: right;
	font-weight: bold;
}

#profile .bib-number {
	font-size: 20px;
}

#profile .border {
	border-right: solid 1px #000;
}

#profile .subposition {
	font-size: 20px;
}

#profile .position-name {
	text-align: center;
	font-size: 20px;
}

/* プレーヤー詳細　下段
------------------------------------------------------------*/
#profile .profile {
	margin-top: 50px;
}

#profile .profile p {
	color: #fd1b80;
	font-size: 30px;
	line-height: 1.5em;
}

#profile .profile-table {
	margin-top: 5px;
	margin-bottom: 70px;
}

#profile .profile-table table {
	border-top: 0px solid #b5b1b1;
}
	
#profile .profile-table table {
	width: 100%;
	margin: 0 auto;
}

#profile .profile-table tr {
	border-top: 1px solid #b5b1b1;
	border-bottom: 1px solid #b5b1b1;
}

#profile .profile-table  th {
	width: 15%;
	padding: 15px 6px 15px 6px;
	vertical-align: top;
	font-weight: normal;
	text-align-last: justify;
}

#profile .profile-table  td {
	padding: 15px 0 15px 30px;
}

#profile .parent {
	margin-top: 15px;
	display:flex;
	justify-content:right;
	line-height: 1.0em;
}

#profile .btn-explanation {
	line-height: 1.6em;
	padding-right: 10px;
}

#profile .question img {
	width: 20px;
	height: auto;
}

/* SNS アイコン
------------------------------------------------------------*/
#profile .sns-icon {
	margin: 0 auto;
	text-align: center;
}

#profile .sns-icon img {
	height: 30px;
	margin: 30px 10px 10px;
}


/* RESPONSIVE 設定
------------------------------------------------------------*/
@media screen and (max-width: 1100px) {
	/* プレーヤー一覧　アウトライン
	------------------------------------------------------------*/
	#player-list {
		width: 90%;
	}

	/* プレーヤー詳細　アウトライン
	------------------------------------------------------------*/
	#profile {
		width: 97%;
	}

	#profile img {
		width: auto;
		height: 700px;
	}
}

@media screen and (min-width: 800px){
}

@media screen and (max-width: 799px){
}

@media screen and (min-width: 601px){
	#profile .position-name {
		display: none;
	}
}

@media screen and (max-width: 600px){
	/* プレーヤー　一覧
	------------------------------------------------------------*/
	#player-list {
		margin: 50px auto 0;
		padding-bottom: 5px;
	}

	#player-list .data-box {
		margin: 20px auto 0;
		width: 89%;
	}
 
	#player-list .data-box::after, #player-list .data-box::before {
		width: 45%
	}

	#player-list li {
		width: 45%;
		margin-bottom: 80px;
	}

	#player-list .data-box .last-name {
		font-size: 13pt;
	}

	#player-list .first-name {
		font-size: 13pt;
		padding-bottom: 4px;
	}

	#player-list .bib {
		font-size: 13pt;
	}

	#player-list .nunber {
		font-size: 13px;
	}


	/* 卒団生
	------------------------------------------------------------*/
	#old-player {
		width: 90%;
		margin: 0 auto;
	}

	.old-player-year {
		margin: 0 auto;
		padding: 0;
		width: 100%;
		justify-content: center;
	}

	.old-player-year .item {
		margin: 0 0 30px;
		width: 100%;
	}

	.old-player-year .item:not(:last-child) {
		margin-bottom: 30px;
	}

	.old-player-year .butt-user-menu a {
		padding: 10px 8px;
	}


	/* プレーヤー詳細　アウトライン
	------------------------------------------------------------*/
	#profile {
		width: 95%;
		margin-top: 50px;
	}

	/* プレーヤー詳細　上段
	------------------------------------------------------------*/
	#profile .profile-box{
	}

	#profile .profile-box li{
		width: 100%;
	}

	#profile .profile-box::after, #profile .profile-box::before{
		width: 100%;
		content: "";
		display: block;
	}

	#profile img {
		width: auto;
		height:420px;
	}

	#profile .name {
		margin-top: 30px;
		text-align: center;
		font-size: 40px;
	}

	#profile .position {
		margin-top: 40px;
		font-size: 36px;
		text-align: center;
	}

	#profile .subposition {
		display: none;
	}

	#profile .position-name {
		line-height: 2.5em;
	}

	/* プレーヤー詳細　下段
	------------------------------------------------------------*/
	#profile .profile {
		margin-top: 30px;
		width: 95%;
	}

	#profile .profile {
	}

	#profile .profile p {
		font-size: 25px;
	}

	#profile .profile-table  th {
		font-size: 13px;
		width: 28%;
	}

	#profile .profile-table  td {
		padding: 15px 0 15px 15px;
		font-size: 13px;
	}
	#profile .btn-explanation {
		font-size: 13px;
	}

}

