/* SALON
=========================================================================
=========================================================================*/
main {
	position: relative;
}

/* Photo
-----------------------------------------------------------*/
.salon_photo {
	position: relative;
	overflow: hidden;
	height: calc(100svh - var(--title-height));
	contain: layout paint;
}

.salon_photo picture {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.salon_photo picture img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	object-position: center;
	will-change: transform;
}

/* Map
-----------------------------------------------------------*/
.salon_map {
	width: 100%;
	aspect-ratio: 16 / 6;
}

.salon_map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	filter: grayscale(100%);
	transition: all .3s;
}

.salon_map iframe:hover {
	filter: grayscale(0%);
}

/* Info
-----------------------------------------------------------*/
.salon_info {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 30px 0;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(5px);
	z-index: 2;
	will-change: transform;
	transform: translateZ(0);
}

.salon_info.is-end {
	position: absolute;
	bottom: 0;
}

.salon_info .inner_1200 {
	display: flex;
	justify-content: space-between;
}

.salon_info .inner_1200 .text {
	width: fit-content;
}

.salon_info .inner_1200 .text h2 {
	margin-bottom: 0.5em;
	font-weight: 400;
	font-size: 31px;
	line-height: 1.25em;
}

.salon_info .inner_1200 .text h2 span {
	display: block;
	font-weight: 300;
	font-size: 20px;
}

.salon_info .inner_1200 .text p {
	font-size: 18px;
}

.salon_info .inner_1200 .line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 30px;
	width: fit-content;
}

.salon_info .inner_1200 .line a {
	display: block;
	padding: 1em;
	width: 387px;
	white-space: nowrap;
	font-size: 18px;
	color: #FFF;
	text-align: center;
	background-color: #1A1311;
	border: 1px solid #204224;
	cursor: pointer;
	transition: all .3s;
}

@media(hover: hover) {
	.salon_info .inner_1200 .line a:hover {
		color: #1A1311;
		background-color: #FFF;
	}
}

.salon_info .inner_1200 .line figure {
	width: 80px;
}

@media screen and (max-width:1100px) {
	.salon_info .inner_1200 .line {
		display: block;
	}

	.salon_info .inner_1200 .line a {
		padding: 1em 2.5em;
		width: auto;
	}

	.salon_info .inner_1200 .line figure {
		margin-top: 20px;
		margin-left: auto;
	}
}


/*  767px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:767px) {
	/* Photo
	-----------------------------------------------------------*/
	.salon_photo picture img {
		width: 100%;
		height: 150%;
		display: block;
		object-fit: cover;
		object-position: center;
	}

	/* Map
	-----------------------------------------------------------*/
	.salon_map {
		aspect-ratio: 1 / 1;
	}

	/* Info
	-----------------------------------------------------------*/
	.salon_info  {
		padding: 20px 0;
	}

	.salon_info .inner_1200 {
		flex-wrap: wrap;
		gap: 15px 0;
	}

	.salon_info .inner_1200 .text {
		margin: 0 auto;
		width: auto;
	}

	.salon_info .inner_1200 .text h2 {
		margin-bottom: 0.5em;
		font-size: 22px;
		text-align: center;
	}

	.salon_info .inner_1200 .text h2 span {
		font-size: 15px;
	}

	.salon_info .inner_1200 .text p {
		font-size: 12px;
	}

	.salon_info .inner_1200 .line {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 0 30px;
		width: 100%;
	}

	.salon_info .inner_1200 .line a {
		margin: 0 auto;
		font-size: 14px;
	}

	.salon_info .inner_1200 .line figure {
		display: none;
	}
}

/*  420px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:420px) {
	.salon_info .inner_1200 .line a {
		width: 100%;
	}

}
