@charset "UTF-8";

/* ========================================================================== 
   LOCATION Page Styles
   ========================================================================== */

.location-page {
	color: #333;
	overflow-x: hidden;
}

/* main visual */
.location-page .location_mv {
	position: relative;
	display: grid;
	place-items: center;
	box-sizing: border-box;
	width: 100%;
	min-height: clamp(300px, 26vw, 360px);
	padding: 60px 20px;
	overflow: hidden;
	background-color: #122a4c;
	background-image: url("../img/location/mv.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.location-page .location_mv::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(80% 90% at 50% 52%, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .22) 100%),
		rgba(0, 0, 0, .4);
	pointer-events: none;
}

.location-page .location_mv_ttl {
	position: relative;
	z-index: 1;
	margin: 0;
	font-weight: 400;
	text-align: center;
}

.location-page .location_mv_en {
	display: block;
	color: #fff;
	font-family: "Libre Baskerville", "EB Garamond", "Times New Roman", Times, serif;
	font-size: clamp(32px, 5.4vw, 62px);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.22em;
	text-indent: 0.22em;
}

.location-page .location_mv_ja {
	position: relative;
	display: block;
	margin-top: 30px;
	padding-top: 26px;
	color: #d9c68f;
	font-size: clamp(13px, 1.4vw, 17px);
	line-height: 1;
	letter-spacing: 0.32em;
	text-indent: 0.32em;
}

.location-page .location_mv_ja::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 48px;
	height: 1px;
	background: #d9c68f;
	transform: translateX(-50%);
}

.location-page .location_mv_caption {
	position: absolute;
	right: 20px;
	bottom: 12px;
	z-index: 1;
	margin: 0;
	color: #fff;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.04em;
}

/* breadcrumb */
.location-page .location_breadcrumb {
	margin-top: 18px;
}

.location-page .location_breadcrumb_inner {
	box-sizing: border-box;
	width: min(100% - 40px, 920px);
	margin-left: auto;
	margin-right: auto;
}

.location-page .location_breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	color: #5f6d80;
	font-size: 12px;
	line-height: 1.6;
	letter-spacing: 0.04em;
}

.location-page .location_breadcrumb li {
	display: flex;
	align-items: center;
}

.location-page .location_breadcrumb li + li::before {
	content: "＞";
	margin: 0 0.7em;
	color: #8799b3;
	font-size: 10px;
}

.location-page .location_breadcrumb a {
	color: #5f6d80;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color .3s ease, border-color .3s ease;
}

.location-page .location_breadcrumb a:hover {
	color: #16355f;
	border-bottom-color: #16355f;
}

.location-page .location_breadcrumb a:focus-visible {
	outline: 2px solid #16355f;
	outline-offset: 3px;
}

.location-page .location_content {
	padding: 90px 0 120px;
	text-align: center;
}

.location-page .location_inner {
	box-sizing: border-box;
	width: min(90%, 940px);
	min-width: 0;
	margin-left: auto;
	margin-right: auto;
}

.location-page .location_heading {
	margin: 0 0 60px;
	color: #333;
	font-size: clamp(23px, 2.4vw, 31px);
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.08em;
}

.location-page .location_facilities {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 18px 22px;
	margin: 0 auto 62px;
	text-align: left;
}

.location-page .location_facility {
	grid-column: span 3;
	margin: 0;
}

.location-page .location_facility_l {
	grid-column: span 4;
}

.location-page .location_facility img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1.45 / 1;
	object-fit: cover;
}

.location-page .location_facility figcaption {
	margin-top: 6px;
	color: #333;
	font-size: 13px;
	line-height: 1.35;
	letter-spacing: 0.02em;
}

.location-page .location_facility_list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px 28px;
	width: 100%;
	margin: 0 auto 62px;
	text-align: left;
}

.location-page .location_facility_group {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-content: start;
	gap: 12px;
}

.location-page .location_facility_category {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 0;
	padding: 12px;
	border: 1px solid #d4d4d4;
	text-align: center;
}

.location-page .location_facility_category_en {
	color: #969eba;
	font-family: "Times New Roman", Times, serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.15;
}

.location-page .location_facility_category_ja {
	font-size: 13px;
	line-height: 1.5;
}

.location-page .location_facility_entries {
	min-width: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.location-page .location_facility_entry {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 4.5em 6em;
	gap: 6px;
	font-size: 14px;
	line-height: 1.8;
}

.location-page .location_facility_name {
	display: flex;
	align-items: baseline;
	min-width: 0;
	overflow-wrap: anywhere;
}

.location-page .location_facility_name::after {
	content: "";
	flex: 1 0 12px;
	margin-left: 4px;
	border-bottom: 2px dotted #666;
	transform: translateY(-0.3em);
}

.location-page .location_facility_walk,
.location-page .location_facility_distance {
	text-align: right;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.location-page .location_map {
	width: min(800px, 72vw);
	margin: 0 auto;
}

.location-page .location_map img {
	display: block;
	width: 100%;
	height: auto;
}

.location-page .location_note {
	width: min(100%, 900px);
	margin: 60px auto 0;
	font-size: 11px;
	line-height: 1.45;
	text-align: left;
}

@media screen and (max-width: 767px) {
	.location-page .location_breadcrumb_inner {
		width: min(100% - 32px, 920px);
	}

	.location-page .location_breadcrumb ol {
		font-size: 11px;
	}

	.location-page .location_mv {
		min-height: clamp(200px, 30vw, 240px);
		padding: 46px 16px;
	}

	.location-page .location_mv_ja {
		margin-top: 22px;
		padding-top: 20px;
	}

	.location-page .location_content {
		padding: 60px 0 80px;
	}

	.location-page .location_inner {
		width: calc(100% - 40px);
	}

	.location-page .location_heading {
		margin-bottom: 30px;
		font-size: 20px;
		letter-spacing: 0.04em;
	}

	.location-page .location_facilities {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px 14px;
		margin-bottom: 42px;
	}

	.location-page .location_facility,
	.location-page .location_facility_l {
		grid-column: span 1;
		min-width: 0;
	}

	.location-page .location_facility figcaption {
		font-size: 12px;
		overflow-wrap: anywhere;
	}

	.location-page .location_facility_list {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
		margin-bottom: 42px;
	}

	.location-page .location_facility_group {
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
	}

	.location-page .location_facility_category {
		flex-direction: row;
		gap: 16px;
		padding: 12px;
	}

	.location-page .location_facility_entry {
		grid-template-columns: minmax(0, 1fr) 4.5em 6em;
		gap: 4px;
		padding: 7px 0;
		border-bottom: 1px dotted #d4d4d4;
		font-size: 12px;
	}

	.location-page .location_facility_name {
		display: block;
	}

	.location-page .location_facility_name::after {
		content: none;
	}

	.location-page .location_map {
		width: min(520px, 100%);
	}

	.location-page .location_note {
		margin-top: 40px;
	}
}
