/* Googleマップのモーダル表示 */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}
.modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 780px;
	opacity: 0;
	transition: opacity 0.5s ease;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, calc(-50% - 246px));
}
.modal.show .modal-content {
	opacity: 1;
}
.g-map {
	width: 740px;
	height: 452px;
}
@media only screen and (max-width: 640px) {
	.modal-content {
		width: 350px;
		padding: 7px;
		transform: translate(-50%, calc(-50% - 84px));
	}
	.g-map {
		width: 336px;
		height: 336px;
	}
}
