
.l-wrapper {
  width: 100%;
  max-width: 414px;
  min-height: 100%;
  padding: 0;
  position: relative;
  margin: 0 auto;
}

.wrapper_bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /*background-image: url(../img/body_bg.jpg);*/
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

*[data-intersection] {
  opacity: 0;
  transition: all 0.4s ease-out;
  transform: translateY(20px);
}

*[data-intersection][data-intersecting=true] {
  opacity: 1;
  transition: all 0.4s ease-out 0.2s;
  transform: translateY(0);
}

*.js-itrsec-right[data-intersection] {
  opacity: 0;
  transition: all 0.4s ease-out;
  transform: translateX(-20px);
}

*.js-itrsec-right[data-intersection][data-intersecting=true] {
  opacity: 1;
  transition: all 0.4s ease-out 0.2s;
  transform: translateX(0);
}

*.js-itrsec-left[data-intersection] {
  opacity: 0;
  transition: all 0.4s ease-out;
  transform: translateX(20px);
}

*.js-itrsec-left[data-intersection][data-intersecting=true] {
  opacity: 1;
  transition: all 0.4s ease-out 0.2s;
  transform: translateX(0);
}

*[data-intersection-x] {
  opacity: 0;
  transition: all 0.2s ease-out;
  transform: translateX(20px);
}

*[data-intersection-x][data-intersecting=true] {
  opacity: 1;
  transition: all 0.2s ease-out 0.1s;
  transform: translateX(0);
  position: sticky;
}

/* .mv{
  position: relative;
}
.logo{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
}
.logo a {
  display: block;
  background: #fff;
  padding-bottom: 10px;
} */

.l-container{
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.l-container-block:first-of-type{
  padding-top: 68px;
}