body, html {
/*	height: 100%;
	overflow: hidden;*/
	overscroll-behavior-x: none;
}

#page {
	width: 100vw;
/*	height: 100vh;
	height: calc(var(--vh) * 100);
	overflow-y: auto;*/
	scrollbar-width: none;
}

.main-box-one .container {
	width: 100vw;
	height: 100vh;
	height: calc(var(--vh) * 100);
	background-color: #e5e5e5;
	overflow: hidden;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0px);
    cursor: grab;
}

.main-box-two .container {
	width: 100vw;
	height: 85vh;
	overflow: hidden;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0px);
	background-color: white;
}

.main-box-three {
	width: 100vw;
	background-color: #e8b934;
	color: #33b1ff;
	margin: 2.3vw 0px 2.3vw 0px;
	text-align: center;
	height: 25vh;
	display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--big-font-size);
}

.main-box-four {
	width: 100vw;
	background-color: #e8b934;
	color: #33b1ff;
	margin: 2.3vw 0px 2.3vw 0px;
	text-align: center;
	height: 25vh;
	display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--big-font-size);
}

.main-box-two .swiper-lazy {
	position: absolute;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.main-scroll-guide {
	position: fixed;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,100%);
    font-size: var(--big-font-size);
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
    padding: 10px 36px;
    box-sizing: border-box;
    background: white;
    white-space: nowrap;
}

.main-scroll-guide.active {
	opacity: 1;
	transform: translate(-50%,0%);
}

@media screen and (max-width: 900px) {
    .main-box-three {
    	margin: 8vw 0px 8vw 0px;
		height: 20vw;
	}

	.main-box-four {
		margin: 8vw 0px 8vw 0px;
		height: 20vw;
	}
}