
@charset "utf-8";
html, body {
    overflow: hidden;
}

.scroll {
	overflow: auto;
	/*IE(Internet Explorer)・Microsoft Edgeへの対応*/
	-ms-overflow-style: none;
	/*Firefoxへの対応*/
	scrollbar-width: none;
	position: absolute;
}
/*Google Chrome、Safariへの対応*/
.scroll::-webkit-scrollbar{
	display: none;
}
.canvas-wrapper canvas {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.frame{
    display: flex;
}

.frame>button{
    width: 1000px;
    width: 50%;
}

.flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.buttons{
	flex: 1;
}

.images{
	flex: 1;
}

.multi_nav {
	margin-top: 2vh;
	height: 18vh;
	padding: 0.5vh 0;
	background-color: #f5f5f5;
}

.multi_body {
	display: flex;
	margin-top: 2vh;
	margin-bottom: 2vh;
	height: 75vh;
}
.content {
    width: 99vw;
	height:75vh;
	margin-right: 20px;
	position: relative;
}
.localNav {
	overflow: auto;
	width: 145px;
	position: relative;
	padding: 10px;
	text-align: center;
	background-color: #f5f5f5;
	display: flex;
	flex-wrap: wrap;
	margin:0 0 0 auto;
	margin-right: 10px;
}
.localNav img {
	width:50%;
	aspect-ratio: 1 / 1;
}

.dragImage {
	z-index: 1;
}