/* テーブル3 */
.table3 {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas: repeat(3, 1fr);
	border-radius: 10px;
	border: 1px solid var(--Gray);
	overflow: hidden;
}
.table3__item {
	display: grid;
    grid-template-columns: 18% 1fr 1fr;
}
.table3__item:nth-child(n + 2) {
    border-top: 1px solid var(--Gray);
}
.table3__item:nth-child(n + 1) .table3__ttl:not(:first-of-type){
    border-left: 1px solid var(--Gray);
}
.table3__ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	background-color: #F1FAFF;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
}
.table3__txt {
	border-left: 1px solid var(--Gray);
	padding: 10px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
}
/* テーブル4 */
.table4 {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas: repeat(2, 1fr);
	border-radius: 10px;
	border: 1px solid var(--Gray);
	overflow: hidden;
}
.table4__item {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.table4__ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	background-color: #F1FAFF;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
	border-bottom: 1px solid var(--Gray);
}
.table4__txt {
	padding: 10px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
}
.table4__item dt:not(:first-of-type),
.table4__item dd:not(:first-of-type){
	border-left: 1px solid var(--Gray);
}
.table4__item:nth-child(n + 3) {
    border-top: 1px solid var(--Gray);
}
@media screen and (min-width: 769px) {
	/* テーブル3 */
	.table3__item {
		grid-template-columns: 18% 1fr 1fr;
	}
	.table3__ttl {
		font-size: 14px;
	}
	.table3__txt {
		font-size: 14px;
	}
	/* テーブル4 */
	.table4__ttl {
		font-size: 14px;
	}
	.table4__txt {
		font-size: 14px;
	}
}