@charset "utf-8";

.toTop {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 1000;
	width: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	transition: 0.4s;
	border: 1px solid #000;
	border-radius: 50%;
	background-color: #FFF;
	opacity: 0;
}

.column {
	display: flex;
	height: 100vh;
	overflow: hidden;
}
.column div.left {
	flex-grow: 1;
	background-color: #f4f4f4;
	overflow-y: auto;
	flex-shrink: 0;
	background-image: url(../images/bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.column div.left .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 95%;
	max-width: 350px;
}
.column div.left .btn a {
	margin: 30px 0;
	display: block;
}
.column div.right {
	flex-grow: 1;
	background-color: #f4f4f4;
	overflow-y: auto;
	flex-shrink: 0;
	background-image: url(../images/bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.column div.center {
	width: 450px;
	height: 100vh;
	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	max-width: 100%;
	container-type: inline-size;
}
.column div.center::-webkit-scrollbar {
	display: none;
}
.column div.center .btn {
	position: relative;
}
.column div.center .btn a {
	position: absolute;
}
.column div.center .gmap {
	position: relative;
	padding: 0;
	height: 0;
	padding-bottom: 54%;
	overflow: hidden;
}
.column div.center .gmap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

a img{
	position:relative;
	top: 0;
	transition: 0.3s;
}
a img:hover{
	top: 5px;
	opacity: 0.7;
}