@charset "UTF-8";

.c_foot {
	display: none;
}

.map {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	min-height: calc(100vh - var(--header-height));
}

.map_hd {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 24px;
	border-bottom: 1px solid var(--c-border);
	background: var(--c-white);
}

.map_hd_ttl {
	font-weight: bold;
	font-size: var(--fz-17px);
}

.map_hd_back {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 30px;
	padding: 0 1em;
	border-radius: 15px;
	background: var(--c-gray-5);
	color: var(--c-white);
	font-size: var(--fz-13px);
	line-height: 1;
}

.map_main {
	flex: 1;
	position: relative;
	z-index: 1;
}

.map_popup {
	opacity: 0;
	position: absolute;
	bottom: 40px;
	left: 0;
	z-index: 10;
	padding-left: 24px;
	pointer-events: none;
	transform: translateX(-25%);
	transition-property: opacity, transform;
	transition-duration: 0.3s;
}

.map_popup.-open {
	opacity: 1;
	pointer-events: all;
	transform: translateX(0);
}

.map_popup_card {
	display: flex;
	width: 480px;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 0 7px rgba(0,0,0,0.16);
	background: var(--c-white);
}

.map_popup_card::after {
	content: "\e902";
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 0;
	padding: 8px;
	background: var(--c-green);
	color: var(--c-white);
	font-size: 16px;
	font-family: icomoon;
}

.map_popup_img {
	flex-shrink: 0;
	align-self: center;
	padding: 18px 0 18px 18px;
}

.map_popup_cnt {
	flex: 1;
	align-self: center;
	padding: 18px;
}

.map_popup_ttl {
	font-weight: bold;
}

.map_popup_info {
	color: var(--c-gray-5);
	font-size: var(--fz-14);
}

.map_popup_gmap {
	margin-top: 6px;
}

.map_popup_gmap > button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0.5em;
	border-radius: 5px;
	box-shadow: 0 0 7px rgba(0,0,0,0.16);
	background: var(--c-green);
	color: var(--c-white);
	font-size: var(--fz-14);
	cursor: pointer;
}

@media screen and (max-width:767px) {
	.c_foot {
	}

	.map {
	}

	.map_hd {
		padding: 12px 12px;
	}

	.map_hd_ttl {
		font-size: 16px;
	}

	.map_hd_back {
		font-size: 13px;
	}

	.map_main {
	}

	.map_popup {
		bottom: 12px;
		width: 100%;
		padding-right: 12px;
		padding-left: 12px;
	}

	.map_popup.-open {
	}

	_::-webkit-full-page-media,
	_:future,
	:root .map_popup.-open  {
		bottom: 55px;
	}

	@media screen and (-webkit-min-device-pixel-ratio:0) {
		::i-block-chrome,
		.map_popup.-open  {
			bottom: 55px;
		}
	}

	.map_popup_card {
		width: 100%;
	}

	.map_popup_card::after {
	}

	.map_popup_img {
		width: 90px;
		padding: 12px 0 12px 12px;
	}

	.map_popup_cnt {
		padding: 12px;
	}

	.map_popup_ttl {
		font-size: 15px;
	}

	.map_popup_info {
		font-size: 13px;
	}

	.map_popup_gmap {
	}

	.map_popup_gmap > button {
	}
}
