html {
	scroll-behavior: smooth;
}

/* Floormap */
#floormapsBox {
	padding: 0  0 80px;
}
.floormapBoxes {
	margin: -112px 0 0;
	padding: 160px 0 0;
}
.floormapBoxes:first-of-type {
	margin: -160px 0 0;
	padding: 160px 0 0;
}
.floormapBox {
	position: relative;
	margin: 24px 0 0;
}
.floormapBox img {
	width: 64%;
	background: #fff;
	margin: 0 auto;
	display: block;
}
.floormapBox span {
	position: absolute;
	top:0;
	left: calc((100% - (100% * 0.64)) / 2);
	width: 40px;
	height: 40px;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	border-radius: 20px;
	padding: 9px 0 0;
	display: block;
}
.floormapBoxes:nth-of-type(2) .floormapBox span {
	color: #0f2f6f;
	border: solid 1px #0f2f6f;
}
.floormapBoxes:nth-of-type(3) .floormapBox span {
	color: #2f40af;
	border: solid 1px #2f40af;
}
.floormapBoxes:last-of-type .floormapBox span {
	color: #608fff;
	border: solid 1px #608fff;
}
.floormapBox a.btnAllMap {
	position: relative;
	width: 320px;
	height: 48px;
	color: #2f40af;
	font-size: 1.4rem;
	line-height: 1;
	text-decoration: none;
	border: solid 1px #afafaf;
	border-radius: 8px;
	margin: 24px auto 0;
	padding: 17px 0 0 50px;
	display: block;
	transition: .3s;
	outline: none;
}
.floormapBox a.btnAllMap:before {
	position: absolute;
	top: 50%;
	left: 16px;
	width: 24px;
	height: 32px;
	background-image: url(../img/pdf_b_s_icn.png);
	background-size: 24px 32px;
	transform: translateY(-50%);
	content: "";
}
.floormapBox a.btnAllMap:hover {
	background-color: rgba(96, 143, 255, .1);
}

/* Floor List */
.floorListBox {
	list-style: none;
	margin: 0;
	padding: 0 0 32px;
	display: flex;
	flex-wrap: wrap;
}
.floorListBox li {
	width: calc(100% / 4);
	padding: 0 4px;
}
.floorListBox li a {
	position: relative;
	width: 100%;
	height: 48px;
	color: #606060;
	font-size: 1.4rem;
	text-decoration: none;
	line-height: 1;
	border: solid 1px #afafaf;
	border-radius: 8px;
	padding: 17px 0 0 24px;
	display: block;
	transition: .3s;
}
.floorListBox li a:before {
	position: absolute;
	top: 50%;
	left: 8px;
	width: 6px;
	height: 6px;
	border-top: solid 1px #2f40af;
	border-right: solid 1px #2f40af;
	display: inline-block;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}
.floorListBox li a:after {
	position: absolute;
	top: 50%;
	right: 12px;
	width: 16px;
	height: 16px;
	background-image: url(../img/more_b_icn.png);
	background-size: 100%;
	transform: translateY(-50%);
	transition: .3s;
	content: "";
}
.floorListBox li a:hover {
	border: solid 1px #608fff;
	background-color: rgba(96, 143, 255, .1);
}
.floorListBox li a:hover:after {
	transform: translateY(-50%) rotate(90deg);
}

@media screen and (max-width:414px) {
	/* Floormap */
	#floormapsBox {
		padding: 0  0 64px;
	}
	.floormapBoxes {
		margin: -56px 0 0;
		padding: 88px 0 0;
	}
	.floormapBoxes:first-of-type {
		margin: -88px 0 0;
		padding: 88px 0 0;
	}
	.floormapBox {
		margin: 16px 0 0;
	}
	.floormapBox img {
		width: 100%;
		margin: 0;
	}
	.floormapBox span {
		top:0;
		left: 0;
		width: 24px;
		height: 24px;
		font-size: 1.3rem;
		border-radius: 12px;
		padding: 5px 0 0;
	}
	.floormapBox a.btnAllMap {
		width: 100%;
		padding: 17px 0 0 40px;
		transition: none;
	}
	.floormapBox a.btnAllMap:before {
		left: 8px;
	}
	.floormapBox a.btnAllMap:hover {
		background-color: #fff;
	}
	
	/* Floor List */
	.floorListBox {
		padding: 0 0 24px;
	}
	.floorListBox li {
		width: 50%;
		padding: 2px;
	}
	.floorListBox li:nth-last-child(2),
	.floorListBox li:last-of-type {
		padding: 2px 2px 0;
	}
	.floorListBox li a {
		padding: 17px 0 0 20px;
		transition: none;
	}
	.floorListBox li a:before {
		left: 6px;
	}
	.floorListBox li a:after {
		right: 6px;
		transform: translateY(-50%) rotate(90deg);
		transition: none;
	}
	.floorListBox li a:hover {
		border: solid 1px #afafaf;
		background-color: #fff;
	}
}