@charset "UTF-8";
/*-----------------------------------
	common
-----------------------------------*/
#contents section {
	padding-bottom: 60px;
}
#contents section:last-child {
	padding-bottom: 120px;
}
#contents section h2 {
	background: #393534;
	font: 600 2.4rem/1 var(--fJA);
	letter-spacing: 0.05em;
	color: var(--bgClr1);
	padding: 20px 40px;
	text-box: trim-both cap alphabetic;
	position: relative;
	margin-bottom: 50px;
}
#contents section h2::before {
	content: "";
	width: 5px;
	height: 40%;
	background: var(--mClr2);
	position: absolute;
	top: 30%;
	left: 20px;
}
#contents section h2 span {
	font-size: 1.5rem;
	font-weight: 500;
	margin-left: 30px;
}
.base_inner {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
}
.base_inner .box {
	width: calc((100% - 44px) / 3);
	background: var(--bgClr1);
	border-radius: 10px;
	padding: 30px;
	letter-spacing: 0.05em;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.base_inner .box .name {
	font-weight: 600;
}
.base_inner .box .address {
	line-height: 2;
}
.base_inner .box a.details {
	width: max-content;
	margin: 0 0 0 auto;
	font-size: 1.5rem;
	line-height: 26px;
	color: #888888;
	padding-right: 70px;
	background: url(../img/common/icon_arrow_link02.svg) no-repeat right center/60px;
}
@media screen and (max-width: 840px) {
	.base_inner .box {
		width: calc((100% - 22px) / 2);
	}
}
@media screen and (max-width: 640px) {
	#contents section {
		padding-bottom: 30px;
	}
	#contents section:last-child {
		padding-bottom: 60px;
	}
	#contents section h2 {
		font-size: 1.7rem;
		padding: 10px 20px;
		margin-bottom: 25px;
	}
	#contents section h2::before {
		width: 3px;
		left: 10px;
	}
	#contents section h2 span {
		display: block;
		font-size: 1.2rem;
		margin: 5px 0 0 0;
	}
	.base_inner {
		gap: 15px;
		justify-content: center;
	}
	.base_inner .box {
		width: min(320px,100%);
		padding: 20px;
		gap: 10px;
	}
	.base_inner .box a.details {
		font-size: 1.3rem;
		line-height: 18px;
		padding-right: 50px;
		background: url(../img/common/icon_arrow_link02.svg) no-repeat right center/40px;
	}
}