/*===============================
* ウィジェット
* =================================*/
#custom_html-6 {
	border-radius: 2.66667vw;
	overflow: hidden;
}
@media (min-width: 768px) {
	#custom_html-6 {
		border-radius: min(0.73206vw, 10px);
	}
}
/*===============================
* ウィジェットタイトル
* =================================*/
#custom_html-6 .c-widget__title {
	margin-bottom: 0;
	padding: 4vw;
	text-align: center;
	line-height: 1;
	background-color: #00a6d8;
	font-size: 4.8vw;

	font-weight: var(--fw-lg);
	color: var(--c-light);
}
@media (min-width: 768px) {
	#custom_html-6 .c-widget__title {
		padding: min(1.31772vw, 18px);
		font-size: min(1.46413vw, 20px);
	}
}
/* 下線 */
#custom_html-6 .c-widget__title::before,
#custom_html-6 .c-widget__title::after {
	content: none;
}

/*===============================
* 記事一覧
* =================================*/
.rankingList {
	display: block;
	padding: 4vw 6.4vw;
	font-size: 3.73333vw;
	transition: var(--ani-t--normal) ease-out;
}
@media (min-width: 768px) {
	.rankingList {
		padding: min(1.31772vw, 18px) min(1.75695vw, 24px);
		font-size: min(1.02489vw, 14px);
	}
}
.rankingList:is(:hover, :focus) {
	opacity: 0.7;
}
.rankingList:nth-child(odd) {
	background-color: #f0fbff;
}
.rankingList:nth-child(even) {
	background-color: #cef3ff;
}