@charset "UTF-8";

/* ランキング */
.ranking {
	display:flex;
	align-items: center;
	margin-top:1em;
	flex-wrap: wrap;
}
.ranking .place {
	width:2.5em;
	height:2.5em;
	border-radius:50%;
	display:flex;
	justify-content: center;
	align-items: center;
	border:1px solid var(--color_darkblue);
}
.ranking .place.first {
	background-color: var(--color_darkblue);
	color:#fff;
}
.ranking .model {
	margin-left:1em;
	font-size:1.2em;
	font-weight:600;
	color:var(--color_darkblue);
	width:10em;
}
@media screen and (max-width: 768px) {
	.ranking .spec {
		width:100%;
		padding-left:3.6em;
	}
}
/*スペック表モデル部分*/
.spec_table .model th,
.spec_table .model td{
	font-size:1.2em;
	font-weight:600;
	color:var(--color_darkblue);
	border-bottom: 3px double #ccc;
}
@media screen and (max-width: 768px) {
	.spec_table .model td{
		font-size:1em;
	}
}

