@charset "utf-8";
.map01{
	width: 100%;
	height:calc(120vw + 15px);
	overflow-y:hidden;
	overflow-x:scroll;
	margin: 0 auto;
}
.map01 img{
	height:120vw;
	width:150vw;
	max-width:none;
}
@media(min-width: 768px){
	.map01{
		width:100%;
		height:auto;
		overflow:hidden;
		margin: 0 auto;
	}
	.map01 img{
		width:100%;
		height:auto;
		max-width:100%;
	}
}

.hanrei{
	width: 100px;
	margin-left: 5%;
	margin-top: 20px;
}
@media(min-width: 768px){
	.hanrei{
		width: 163px;
		margin-left: 5%;
		margin-top: 20px;
	}
}

.btn01{
	font-size: clamp(2rem,2vw,2.7rem);
	letter-spacing: 0.1em;
	text-decoration: none;
	position: relative;
	padding-right: 20px;
}
.btn01::before{
	position: absolute;
	right: 0;
	top: calc(50% - 5px);
	content: "";
	display: flex;
	width: 10px;
	height: 10px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	transform: rotate(45deg);
}