/* /////////////////////////////////////////////////////////////////////////////
J SPORTS ラグビー > MLB > チーム紹介 CSS
///////////////////////////////////////////////////////////////////////////// */
/* **********
共通
***************************** */
.driverProfile__profile__headline {
	text-align: center;
}

/* クレジット */
.credit {
	margin-top: 40px;
	color: #999;
}

/* **********
一覧ページ
***************************** */
.mlbLogo {
	width: 204px;
	margin: 0 auto 30px;
}
.mlbLogo img {
	width: 100%;
	height: auto;
}

/** チームリスト **/
.leagueContainer + .leagueContainer {
	margin-top: 50px;
}
.teamList {
	display: flex;
	flex-wrap: wrap;
}
.teamList .teamList--item {
	width: 23.5%;
	margin-left: 2%;
}
.teamList .teamList--item:first-child,
.teamList .teamList--item:nth-child(4n+1) {
	margin-left: 0;
}
.teamList .teamList--item:nth-child(n+5) {
	margin-top: 2%;
}
.teamList .teamList--item a {
	position: relative;
	display: block;
	-webkit-transition: all .3s 0s ease;
    transition: all .3s 0s ease;
}
.teamList .teamList--item a:hover {
	opacity: .6;
}
.teamList .teamList--item .district {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0.5rem;
	font-size: 12px;
	line-height: 1;
}
.teamList .teamList--item .district.east {
	background: #2d489d;
	color: #fff;
}
.teamList .teamList--item .district.central {
	background: #2d489d;
	color: #fff;
}
.teamList .teamList--item .district.west {
	background: #2d489d;
	color: #fff;
}
.teamList .teamList--item .teamList--item--img {
	padding: 30px;
	background: #fff;
}
.teamList .teamList--item img {
	vertical-align: top;
	width: 100%;
	height: auto;
}
.teamList .teamList--item--name {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 75px;
	padding: 0 14px;
	background: #000;
	color: #fff;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}
.teamList .teamList--item--namegray  {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 75px;
	padding: 0 14px;
	background: #494746;
	color: #7a7878;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}
.teamList .teamList--item--name::before {
	position: absolute;
	right: 5px;
	bottom: 5px;
	content: '';
	border-top: 6px solid transparent;
	border-right: 6px solid #fff;
}

@media only screen and (max-width: 896px) {
	.teamList .teamList--item {
		width: 49%;
		margin: 0 10px;
	}
	.teamList .teamList--item:nth-child(odd) {
		margin-right: 1%;
		margin-left: 0;
	}
	.teamList .teamList--item:nth-child(even) {
		margin-left: 1%;
		margin-right: 0;
	}
	.teamList .teamList--item:nth-child(n+3) {
		margin-top: 2%;
	}
	.teamList .teamList--item--name {
		height: 50px;
		padding: 0;
		/*font-size: 11px;*/
		font-size: 3vw;
	}
	.teamList .teamList--item .district {
		font-size: 10px;
	}
}

/* **********
詳細ページ
***************************** */
/** チーム名 **/
#teamName {
	margin: 0;
	padding: 50px 0 0;
}
.teamName--main {
	margin: 20px 0 0;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
}
.teamLogo {
	width: 100%;
	height: 200px;
	margin: 10px auto 0 !important;
	text-align: center;
}
.teamLogo img {
	width: auto;
	height: 100%;
}
.teamName--area {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}
.teamName--flag {
	width: 360px;
	margin: 0 auto;
}
.teamName--flag img {
	vertical-align: top;
	width: 100%;
	height: auto;
}
@media only screen and (max-width: 896px) {
	#teamName {
		margin: 0;
		padding: 25px 0;
	}
	.teamName--main {
		margin: 10px 0;
		font-size: 22px;
	}
	.teamLogo {
		height: 100px;
		margin: 0 auto !important;
	}
	.teamName--area {
		font-size: 16px;
	}
	.teamName--flag {
		width: 300px;
	}
}

/** 基本情報 **/
.team--photo {
	margin-top: 50px !important;
	margin-bottom: 50px !important;
}
.team--photo img {
	vertical-align: top;
	width: 100%;
	height: auto;
}

.teamInfo--item {
	line-height: 1.5;
}

.teamInfo--basic {
	margin-top: 1em;
}
.teamInfo--basic dl {
	display: flex;
}
.teamInfo--basic dl + dl {
	margin-top: 2px;
}
.teamInfo--basic dt {
	width: 150px;
	padding: 0.25rem;
	background: #000;
	color: #fff;
}
.teamInfo--basic dd {
	width: calc(100% - 150px);
	padding: 0.25rem 0.25rem 0.25rem 1rem;
}
.teamInfo--basic dd span {
	font-size: 12px;
}

.teamInfo--container {
	display: flex;
	align-items: flex-start;
}

.teamInfo--result__specialTopic + .teamInfo--result__chronology {
	margin-top: 1em;
}
.teamInfo--result__chronology dl {
	display: flex;
}
.teamInfo--result__chronology dt {
	width: 80px;
	background: #666;
	text-align: center;
}
.teamInfo--result__chronology dd {
	width: calc(100% - 80px);
}
.teamInfo--result__chronology dd span {
	font-size: 12px;
}

@media only screen and (max-width: 896px) {
	.team--photo {
		margin-top: 25px !important;
		margin-bottom: 25px !important;
	}
	.teamInfo--container .teamInfo--item {
		width: 100%;
	}
	.teamInfo--container .teamInfo--item:nth-child(odd) {
		margin-right: 0;
	}
	.teamInfo--container .teamInfo--item:nth-child(even) {
		margin-left: 0;
	}
	.teamInfo--container .teamInfo--item + .teamInfo--item {
		margin-top: 30px;
		padding-top: 30px;
		border-top: solid 2px #ccc;
	}
	.teamInfo--item__title {
		font-size: 25px;
	}
	.teamInfo--basic dl {
		display: block;
	}
	.teamInfo--basic dl + dl {
		margin-top: 5px;
	}
	.teamInfo--basic dt {
		width: 100%;
		padding-right: 0;
	}
	.teamInfo--basic dd {
		width: 100%;
		padding-left: 0;
	}
	.teamInfo--basic dd span {
		margin-left: 5px;
		font-size: 10px;
	}
	.teamInfo--result__chronology dl {
		display: block;
	}
	.teamInfo--result__chronology dl + dl {
		margin-top: 5px;
	}
	.teamInfo--result__chronology dt {
		width: 100%;
		padding-right: 0;
		text-align: left;
	}
	.teamInfo--result__chronology dd {
		width: 100%;
		padding-left: 0;
	}
	.teamInfo--result__chronology dd span {
		margin-left: 5px;
		font-size: 10px;
	}
	.teamInfo--container {
		display: block;
	}
	
	.teamInfo--container #teamInfo--jerseis {
		display: flex;
		margin-top: 2em;
	}
	.teamInfo--container .team--jersey {
		width: calc(50% - 10px);
	}
	.teamInfo--container .team--jersey + .team--jersey {
		margin-top: 0;
	}
}

.playerCardList  + .credit {
	margin-top: 0;
	margin-bottom: 50px;
}


@media only screen and (min-width: 1024px) {
	.teamMember--container {
		width: 950px;
		margin: 0 auto;
	}
}

.rugby-button a {
	color: #222;
}
.rugby-button--back a {
	border-color: #222;
}
.rugby-button a .arrow:before {
	background: #222;
}
.rugby-button--back a .arrow:after {
	border-color: transparent transparent #222;
}

@media only screen and (max-width: 1023px) {
	.lo-team__member-copyright {
		margin-top: 0;
	}	
}