/*--------------------------------
	base
--------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
body {
  font-family: 'Montserrat', sans-serif;
}

/*--------------------------------
	body
--------------------------------*/
body {
  width: 100%;
  text-align: center;
}
/*--------------------------------
	set
--------------------------------*/
.scroll-body {
  width: 100%;
  max-width: 100%;
  margin: 100vw auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile .scroll-body {
  margin: 60vh auto;
}
/*--------------------------------
	palalax
--------------------------------*/
.js-parallax {
  width: 100%;
  max-width: 1600px;
  transform: scale(1.4);
  position: relative;
  top: 0;
}
.mobile .js-parallax {
  transform: scale(1.5);
}
.mini {
  width: 50%;
  max-width: 600px;
}
/*--------------------------------
	fade-in
--------------------------------*/
.scroll-target {
  opacity: 0;
}
.in {
  opacity: 1;
  transition: 0.5s;
}
