@charset "UTF-8";

/************ 下層ヘッダー ************/

.head {
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
}
.head .bg-image {
	background: url('../images/access/head.webp') no-repeat;
	background-size: cover;
	background-position: 0 36%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: brightness(50%);
	z-index: 0;
}
.head .triangle-bottom {
	position: relative;
}
.head .triangle-bottom::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 6vw solid #fff;
	border-left: 100vw solid transparent;
}
.head .head-title {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	height: 300px;
}
.head .head-title h1 {
	background-color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 0.5rem 3.3rem;
	margin: 0 auto;
}



/************ 浜屋リユースセンター ************/

.access-about .googlemap iframe {
	width: 100%;
	height: 450px;
}
.access-about .about-body {
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	line-height: 1.8;
}
@media (max-width: 767px) {
	.access-about .about-body {
		width: 100% !important;
	}
}
.access-about .about-body dl {
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	border-top: 1px solid #e4e4e4;
	border-left: 1px solid #e4e4e4;
	border-right: 1px solid #e4e4e4;
	margin: 1rem 0 2rem;
}
@media (max-width: 575px) {
	.access-about .about-body dl {
		display: block;
	}
}
.access-about .about-body dl dt {
	background-color: #f7f7f7;
	border-bottom: 1px solid #e4e4e4;
	text-align: center;
	font-weight: 400;
	width: 25%;
	padding: 0.75rem;
}
@media (max-width: 575px) {
	.access-about .about-body dl dt {
		width: 100%;
	}
}
.access-about .about-body dl dd {
	border-bottom: 1px solid #e4e4e4;
	width: 75%;
	padding: 0.75rem;
	margin: 0;
}
@media (max-width: 575px) {
	.access-about .about-body dl dd {
		width: 100%;
	}
}
