* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

input, textarea, select, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  box-shadow: none;
  background: none;
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
}

.wrapper {
  overflow: hidden;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.cta {
  position: relative;
}
.cta .btn {
  display: block;
  width: 41.6%;
  position: absolute;
  bottom: 6.8%;
  right: 6.4%;
}

.review a {
  display: block;
  width: 280px;
  margin: 0 auto;
}

.notice {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
}

.movie {
  margin: 50px auto 0;
  position: relative;
  width: 58.3%;
}
.movie img {
  position: absolute;
  top: 8.5%;
  left: 3.6%;
  width: 56.9%;
}
.movie video {
  width: 100%;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .inner {
    width: 100%;
  }
  .cta .btn {
    width: 66.666%;
    right: 50%;
    bottom: 3.1%;
    transform: translateX(50%);
  }
  .review a {
    width: 37.3%;
  }
  .notice {
    margin-top: 5px;
    font-size: 6px;
  }
  .movie {
    margin-top: 25px;
    width: 93.333%;
  }
}/*# sourceMappingURL=style.css.map */