body {
  margin: 0;
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  background: #fff;
}
.lp-section {
  position: relative;
  max-width: 840px;
  margin: auto;
}

.section-01 {
  overflow: hidden;
}
.fv-img {
  position: absolute;
  top: 0;
  width: 111.328%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 16.976% 0 0 0;
  margin: 0 0 0 -2.807%;
  -webkit-animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  opacity: 1;
}
.lp-section img,
.js__fixed_btn img {
  width: 100%;
  display: block;
}

.cv-button {
  position: absolute;
  bottom: 0;
  padding: 0 2.148% 4.882% 2.929%;
}

.cv-button-top {
  bottom: unset;
  top: 0;
  padding: 4.882% 2.148% 0 2.929%;
}

.section-03 .cv-button {
  padding-bottom: 9.277%;
}
.section-04 .cv-button {
  padding-bottom: 7.226%;
}
.section-06 .cv-button {
  padding-bottom: 8.691%;
}

ul.lp-footer-links {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background: #f7f7f7;
  padding: 6% 0;
}

ul.lp-footer-links li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
ul.lp-footer-links li + li {
  margin-top: 5%;
}
ul.lp-footer-links li a {
  display: block;
  background: #2ebdff;
  padding: 2% 5%;
  color: #fff;
  text-decoration: none;
  font-size: 0.85em;
  white-space: nowrap;
}
ul.lp-footer-links li a:hover {
  background: #1a8bb8;
}

@media screen and (min-width: 479px) {
  ul.lp-footer-links li a {
    font-size: 1.45em;
  }
}

p.copyright {
  background: #35bcf7;
  text-align: center;
  color: #fff;
  font-size: 0.85em;
  padding: 1%;
  margin: 0;
}
@media screen and (min-width: 479px) {
  p.copyright {
    font-size: 1.45em;
  }
}
.line-button {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.15s ease-out, -webkit-filter 0.2s ease-out;
  transition: -webkit-transform 0.15s ease-out, -webkit-filter 0.2s ease-out;
  -o-transition: transform 0.15s ease-out, filter 0.2s ease-out;
  transition: transform 0.15s ease-out, filter 0.2s ease-out;
  transition: transform 0.15s ease-out, filter 0.2s ease-out, -webkit-transform 0.15s ease-out, -webkit-filter 0.2s ease-out;
  -webkit-animation: shake 3s infinite;
          animation: shake 3s infinite;
}

.line-button:hover,
.js__fixed_btn:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

.js__fixed_btn {
  width: 35%;
  position: fixed;
  bottom: 20px;
  right: 10px;
  border: none;
  z-index: 100;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
  pointer-events: auto;
}

.js__fixed_btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 479px) {
  .js__fixed_btn {
    -webkit-animation: pulse 2.5s ease-out infinite;
            animation: pulse 2.5s ease-out infinite;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .js__fixed_btn {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    padding: 2% 7%;
    position: fixed;
    bottom: 0px;
    right: 0px;
    border: none;
    z-index: 100;
    background: #ffffffc7;
  }
}

/* zooming Animation */
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* Pulse animation */
@-webkit-keyframes pulse {
  0%,
  40%,
  60%,
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%,
  70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@keyframes pulse {
  0%,
  40%,
  60%,
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%,
  70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

/* Shake animation */
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  5% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  10% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  15% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  20% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  25% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  5% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  10% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  15% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  20% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  25% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
