@charset "UTF-8";

/* ===============================
	共通スタイル
=============================== */

.list-award {
	align-items: center;
}

.list-award>li {
	position: relative;
	max-inline-size: 140px;
	align-self: center;
}

.list-award>li.has-caption {
	padding-right: 2rem;
}

.list-award>li>sup {
	position: absolute;
	right: 0;
	top: .5em;
}

#compare .section-title:not(.has-item)::before {
	content: none;

}

.compare-block {
	padding-left: 1em;
}

.underline {
	text-decoration: underline;
	text-underline-offset: 2px;
}


/* ==========================================
	ホバー、マウスポインタがサポートされている環境
=========================================== */
@media (hover:hover) and (pointer: fine) {
	.link-btn-spec:hover {
		color: #000;
		background-color: #fff;
		text-decoration: none;
	}


	.underline:hover {
		text-decoration: none;
	}
}

/* ====================================
	スマートフォン専用スタイル（～768px）
===================================== */
@media screen and (width <768px) {
	#compare .section-title {
		text-align: center;
	}

	.compare-block {
		display: block;
		padding-left: 0;
	}
}

/* ====================================
	TAB、PC、印刷専用スタイル（768px～）
===================================== */
@media print,
screen and (width >=768px) {
	.list-award {
		justify-content: center;
	}

	.list-award>li {
		max-inline-size: 200px;
	}

	#compare .section-title {
		padding-top: 8rem;
		text-align: center;
	}
}