.headingList__section dt {
	font-size: 110%;
	margin:0;
	padding-top:2%;
	color: #0058BC;
}
.headingList__section dt_sub {
	font-size:80%;
	color:#777777;
	font-weight:normal;
	padding-left:2%;
}
.headingList__section dd {
	font-size: 100%;
	margin:0;
	padding-left:3%;
}
.headingList__section strike {
	color:#777777;
}

.headingList {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
	align-items: flex-start;
    gap: 30px;
	overflow: visible;
}
.headingList__nav {
	position:sticky;
	top: 25%;
}
.headingList__nav ul {
	list-style:none;
	list-style-position:inside;
	display: flex;
	flex-direction: column;
    flex-wrap: wrap;
    height: 50vh;
    gap: 10px;
	padding-left: 0;
}
.headingList__nav ul li {
	color: #bfc1c3;
	border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
	cursor: pointer;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.headingList__nav ul li.active {
	font-weight: bold;
	color: #0058BC;
	border-bottom: 1px dotted transparent;
	-webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.headingList__nav ul li:hover {
	color: #000;
}