/*
 * common
 */
.for-pc {
  display: block;
}

.for-sp {
  display: none;
}

@media(max-width:576px) {
  .for-pc {
    display: none;
  }

  .for-sp {
    display: block;
  }
}

h2 {
  margin: 0;
}

p {
  margin: 0;
}

.main-wrapper {
  width: 100%;
  /* max-width: 750px !important; */
  background-color: #FFFFFF;
  margin: 0 auto;
  overflow: hidden;
  font-family: var(--font-family-1);
}

.fv-video-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width:768px) {
  .fv-video-content {
    /* height: 65vh; */
  }
}

.fuwafuwa {
  transition: transform 1s ease-out;
  will-change: transform;
}