html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  margin: 0 auto;
}

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

footer {
  width: 750px;
  max-width: 100%;
  margin: 0 auto;
}
footer img {
  width: 100%;
}

.lp_container {
  width: 750px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}

.img_container {
  width: 100%;
  margin: 0 auto;
}
.img_container img {
  width: 100%;
}

.btn_container {
  overflow: hidden;
}
.btn_container .inner {
  width: 680px;
  max-width: 90%;
  margin: 0 auto;
  padding: 40px 0;
}
@media (max-width: 480px) {
  .btn_container .inner {
    padding: 20px 0;
  }
}
.btn_container .inner .link {
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.btn_container .inner .link::after {
  animation: 2s 0s shine linear infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 75%);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-15deg);
  width: 100%;
}
@keyframes shine {
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.btn_container .inner img {
  width: 100%;
  animation: yurayura 2.5s linear infinite;
  scale: 1;
  overflow: hidden;
  margin: 0 0 0 4px;
}
@keyframes yurayura {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-1deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.btn_container .inner img:hover {
  opacity: 0.6;
  transition: 0.4s;
}/*# sourceMappingURL=style.css.map */