@charset "utf-8";
*, *::before, *::after {
	box-sizing: border-box;
}
#container {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.page-box {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 100%;
	z-index: 0;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.page-box.visible { left: 0; z-index: 10; }
.page-box.hide { left: -100%; }
.page-box.hide-back { left: 100%; }
