/* Y'S GEAR : /mc/wear/europemotogp/css/layout.css */


.contentsWidth {
	overflow: hidden;
	font-family:
		"游ゴシック体", "Yu Gothic", YuGothic, 
		"メイリオ", Meiryo, 
		"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 
		"ＭＳ Ｐゴシック", "MS PGothic", 
		sans-serif;
}

.contentsWidth * {
	box-sizing: border-box;
}


/*======================================================================*
 *  [ tab ] 
 *======================================================================*/

.tab {
	display: flex;
	justify-content: space-between;
	border-bottom: 5px solid #0A2D82;
	text-align: center;
}

.tab > * {
	display: flex;
	align-items: center;
	width: 33.33%;
	height: 70px;
	padding: 10px;
	border: 1px solid #0A2D82;
	border-bottom: none;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1;
}
.tab > * + * {
	margin-left: 1px;
}
.tab > b {
	background: #0A2D82;
	color: #fff;
}
.tab > a {
	color: #0A2D82;
}
.tab > a:hover,
.tab > a:active {
	border-color: #0A2D82 !important;
	background: #eaf2fa;
	color: #0A2D82 !important;
}
.tab span {
	width: 100%;
}

@media screen and (min-width: 569px) {
	.tab span::after {
		display: inline-block;
		white-space: pre-wrap;
		content: " items";
	}
} /* */

@media screen and (max-width: 980px) {
	.tab {
		margin-right: -20px;
		margin-left: -20px;
	}
} /* */

@media screen and (max-width: 568px) {
	.tab {
		margin-right: -10px;
		margin-left: -10px;
	}
	.tab > * {
		height: 60px;
		padding: 10px;
		font-size: 1.4rem;
	}
} /* */


/*======================================================================*
 *  [ main ] 
 *======================================================================*/

.main + h2, 
.present + h2 {
	margin: 35px 0;
	font-size: 2rem;
	text-align: center;
}

.note {
	position: relative;
	margin-bottom: 30px;
	padding: 30px 20px;
	background: #eaf2fa;
	color: #0a2d82;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}
.note::before,
.note::after {
	position: absolute;
	width: 40px;
	height: 40px;
	border: 1px solid #0a2d82;
	content: "";
}
.note::before {
	top: 0;
	left: 0;
	border-right: none;
	border-bottom: none;
}
.note::after {
	right: 0;
	bottom: 0;
	border-top: none;
	border-left: none;
}

@media screen and (max-width: 980px) {
	.main {
		margin-right: -20px;
		margin-left: -20px;
	}
} /* */

@media screen and (max-width: 568px) {
	.main {
		margin-right: -10px;
		margin-left: -10px;
	}
	.main + h2, 
	.present + h2 {
		margin: 30px 0;
		font-size: 1.8rem;
	}
	
	.note {
		margin-bottom: 20px;
		padding: 20px 10px;
		font-size: 1.6rem;
	}
	.note::before,
	.note::after {
		width: 30px;
		height: 30px;
	}
} /* */


/*======================================================================*
 *  [ lineup ] 
 *======================================================================*/

.lineup {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	text-align: center;
}
.lineup section {
	display: flex;
	width: 33.33%;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.lineup a {
	position: relative;
	width: 100%;
	padding: 20px 20px 85px;
	color: #000;
}
.lineup figure {
	margin-bottom: 20px;
}
.lineup figure + span {
	display: inline-block;
	margin-bottom: 10px;
	padding: 2px 7px;
	border: 1px solid #0A2D82;
	border-radius: 5px;
	color: #0A2D82;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
}
.lineup h3 {
	font-size: 1.8rem;
	font-weight: normal;
}
.lineup h3 span {
	display: inline-block;
}
.lineup b {
	position: absolute;
	left: 50%;
	bottom: 20px;
	width: 175px;
	padding: 12px 15px 12px 30px;
	background: #0A2D82;
	color: #fff;
	font-size: 1.6rem;
	transform: translateX(-50%);
}
.lineup b:after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 10px;
	width: 10px;
	height: 10px;
	margin: auto;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(-45deg);
	content: "";
}

/* [ SOLD OUT ] */
.lineup .soldout {
	position: relative;
}
.lineup .soldout::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url(../img/soldout.png) center center no-repeat rgba(0, 0, 0, .5);
	background-size: 150px 22px;
	content: "";
}

@media screen and (max-width: 568px) {
	.lineup section {
		width: 50%;
	}
	.lineup a {
		padding: 20px 10px 70px;
	}
	.lineup figure {
		margin-bottom: 10px;
	}
	.lineup figure + span {
		font-size: 1.2rem;
	}
	.lineup h3 {
		font-size: 1.5rem;
	}
	.lineup b {
		font-size: 1.2rem;
		width: 135px;
	}
} /* */