@charset "UTF-8";
/*
施設・事業所一覧
-----------------------------------------------------------------------------------------------*/
.facilityCtsFirst {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 80px;

	> li:first-of-type {
		margin-top: 50px;
	}
}
.titSub {
	.tit {
		padding: 18px 0 30px;
		font-size: 2.5rem;
		font-weight: var(--fw-medium);
		line-height: 1;
		border-top: 1px solid var(--c-grey);
		position: relative;

		&::before {
			width: 50px;
			content: "";
			height: 1px;
			background-color: var(--c-orange);
			position: absolute;
			left: 0;
			top: -1px;
		}
	}
}
.listFacility {
	margin: 0 auto;
}
#office {
	margin-top: 145px;
}


@media screen and (width < 750px){
	/*
	施設・事業所一覧
	-----------------------------------------------------------------------------------------------*/
	.facilityCtsFirst {
		gap: 50px;

		> li:first-of-type {
			margin-top: 20px;
		}
	}
	.titSub {
		.tit {
			padding: 12px 0 20px;
			font-size: 2rem;
			line-height: 1.3;
		}
	}
	#office {
		margin-top: 80px;
	}
	}
