@charset "UTF-8";
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  min-width: 385px;
}

img {
  display: block;
  width: 100%;
}

a {
  display: block;
  color: #0e0c0a;
}

header {
  display: flex;
  padding: 10px 20px;
  box-sizing: border-box;
  background: #fff;
}
header h1 {
  width: 60%;
  max-width: 120px;
}

main {
  background: url(../img/bk.jpg) top left/5% repeat;
}

.fv {
  position: relative;
}
.fv .btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  max-width: 500px;
  margin-bottom: 1%;
  z-index: 1000;
}

.content {
  margin-top: 3rem;
}
.content .head {
  position: relative;
  font-size: 5vw;
  width: 100%;
  text-align: center;
  padding: 20px 10px;
  box-sizing: border-box;
  background: linear-gradient(101deg, rgb(222, 80, 135) 0%, rgb(130, 91, 222) 50%, rgb(59, 138, 245) 100%);
  border-radius: 30px 30px 0 0;
}
.content .head::before, .content .head::after {
  content: "↓↓";
  position: absolute;
  top: 20%;
  font-size: 5vw;
  color: #fff;
  padding: 0 10px;
  box-sizing: border-box;
  -webkit-animation: fadeDown 1s ease-in infinite;
          animation: fadeDown 1s ease-in infinite;
  z-index: 1000;
}
.content .head::before {
  left: 20%;
}
.content .head::after {
  right: 20%;
}
.content .btn {
  width: 80%;
  margin: 1.5rem auto 3rem;
}

@-webkit-keyframes fadeDown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

@keyframes fadeDown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}
.btn {
  -webkit-animation: btn 0.5s ease-out infinite alternate;
          animation: btn 0.5s ease-out infinite alternate;
}

.cta {
  -webkit-animation: cta 1s ease infinite alternate;
          animation: cta 1s ease infinite alternate;
}

@-webkit-keyframes btn {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(0.9, 0.9);
  }
}

@keyframes btn {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(0.9, 0.9);
  }
}
@-webkit-keyframes cta {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.025);
  }
}
@keyframes cta {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.025);
  }
}
footer {
  padding: 0 10px;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
}
footer a {
  color: #66b3ff;
  padding: 10px;
  box-sizing: border-box;
}
footer .copy {
  width: 100%;
  padding-bottom: 10px;
  font-size: 10px;
  color: #D0D0D0;
}/*# sourceMappingURL=main.css.map */