.facilities-list li {
	position: relative;
	padding-left: 1rem;
}

.facilities-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: -2px;
	font-size: 1.1rem;
}

/* 施設紹介 表 */
.facility-table {
	table-layout: fixed;
	width: 100%;
}
.facility-table th,
.facility-table td {
	padding: 1rem;
	vertical-align: middle;
	text-align: left;
}
.facility-table .facility-category {
	width: 18%;
	vertical-align: middle;
	white-space: nowrap;
	background: #F5F7F1;
}
.facility-table .facility-name {
	width: 22%;
	white-space: nowrap;
	background: #F5F7F1;
}
@media (max-width: 768px) {
	.facility-table,
	.facility-table tbody,
	.facility-table tr,
	.facility-table th,
	.facility-table td {
		display: block;
		width: 100%;
	}
	.facility-table .facility-category {
		background: none;
		padding: 0.5rem 0;
	}
	.facility-table .facility-name {
		background: none;
		padding-bottom: 0.2rem;
	}
	.facility-table td {
		line-height: 1.5;
		padding-top: 0;
	}
	.facility-table th,
	.facility-table td {
		border: none !important;
		padding: 0.75rem 1rem;
	}
	.facility-table tr:first-child{
		border-top: none;
	}
	.facility-table tr:last-child {
		border-bottom: none;
	}
}