@charset "utf-8";

.std-table__item {
	padding: 15px 0;
	border-top: 1px solid rgba(0,0,0,.2);
}

.std-table__item:last-child {
	border-bottom: 1px solid rgba(0,0,0,.2);
}

.std-table__lbl {
	font-size: 1.5rem;
}

.std-table__des {
	margin-top: 1em;
}

.std-table__des .footnote {
	margin-top: 1em;
}

@media all and (min-width: 768px) {

}

@media all and (min-width: 1280px) {
	.std-table__item {
		display: flex;
		justify-content: space-between;
		padding: 20px 0;
	}

	.std-table__item + .std-table__item {
		margin-top: 0;
	}

	.std-table__lbl {
		font-size: inherit;
		width: var(--wcalc3-1);
	}

	.std-table__des {
		width: var(--wcalc3-2);
		margin: 0;
	}
}





.SupportList {
	list-style: none;
	padding: 0;
	counter-reset: SupportList-num;
}

.SupportList__item {
	--Hpadding: 15px;
	--Vpadding: 4px;
	--countsize: 20px;
	
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 5px var(--Hpadding);
	color: var(--color-txt);
	border-top: 1px solid rgba(0,0,0,0.05);
}

.SupportList__item:first-child {
	border-top: none;
}

.SupportList__item::before {
	position: absolute;
	left: 0;
	top: calc(var(--Vpadding));
	counter-increment: SupportList-num;
	content: counter(SupportList-num);
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	width: var(--countsize);
	margin: 0;
}

.SupportList__item:after {
	position: absolute;
	left: calc(var(--countsize) / 2);
	top: calc(2em + (var(--Vpadding)));
	display: block;
	width: 1px;
	height: calc(100% - 1.5em - (var(--Vpadding) / 2));
	background-color: currentColor;
	content: "";
	opacity: 0.5;
}

.SupportList__item:last-child:after {
	display: none;
}


.Support-table__lbl {
	font-weight: bolder;
}

.Support-table__des {
	margin: 0;
}


.SupportList__item {
	width: 100%;
	margin-top: 0;
	padding-left: 35px;
	box-sizing: border-box;
}


mark {
	background-color: var(--color-txt);
	border-radius: 5px;
	color: white;
	margin-inline: 0.5em;
	font-weight: normal;
	font-size: 80%;
	padding: 0.2em 0.4em;
	box-sizing: border-box;
	vertical-align: baseline;
}