@charset "UTF-8";

/* コーディングパーツ */
#list-block .content {
	max-width: 960px;
	margin: 0 auto;
}

#list-block .inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

#list-block .item {
	display: block;
	color: var(--color_black);
	text-decoration: none;
	background-color: var(--color_gray05);
	padding: 32px 64px 32px 32px;
	position: relative;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}
#list-block .item:hover {
	color: var(--color_white);
	background-color: var(--color_gray02);
}

#list-block .item::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 32px;
	width: 16px;
	aspect-ratio: 1/1;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
	-webkit-transform: translateY(-50%) rotate(45deg);
	-moz-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	-o-transform: translateY(-50%) rotate(45deg);
}

#list-block .item-ttl {
	font-size: clamp(16px, 5.5vw, 22px);
	line-height: 1.5;
	font-weight: var(--fw_jp_bold);
}


/* スマートフォン用 */
@media screen and (max-width: 768px) {

}
