@charset "UTF-8";
/* 初期設定 */
html {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  animation: loading 1s;
}
@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img, video {
  width: 100%;
  pointer-events: none;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 700px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
body {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  font-family: 'Yu Gothic', '游ゴシック', 'YuGothic', sans-serif;
  background-image: url("https://image.unit4xz.com/data/genericImages/lp022_bg.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 200vh; /* ページを長くしてスクロールを確認 */
	line-height: 0;
}
header {
  max-width: 700px;
  margin: 0 auto;
}
.fv {
  position: relative;
  text-align: center;
}
.main-title{
  width: 95%;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.fv_btn {
  width: 95%;
  position: absolute;
  bottom: 5%;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.content {
  position: relative;
  text-align: center;
}
.content_btn {
  width: 95%;
  position: absolute;
  bottom: 5%;
  right: 0;
  left: 0;
  margin: 0 auto;
}


.step {
  position: relative;
  width: 100%;
}
.step1 {
  position: absolute;
  width: 90%;
  margin: 0 auto;
  top: 10%;
  left: 0;
  right: 0;
}
.step2 {
  position: absolute;
  width: 90%;
  margin: 0 auto;
  top: 24%;
  left: 0;
  right: 0;
}
.step3 {
  position: absolute;
  width: 90%;
  margin: 0 auto;
  top: 38%;
  left: 0;
  right: 0;
}
.step_photo {
  position: absolute;
  width: 90%;
  margin: 0 auto;
  top: 53%;
  left: 0;
  right: 0;
}
.shake-horizontal{-webkit-animation:shake-horizontal 1.2s cubic-bezier(.455,.03,.515,.955) infinite both;animation:shake-horizontal 1.2s cubic-bezier(.455,.03,.515,.955) infinite both}

@-webkit-keyframes shake-horizontal{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%{-webkit-transform:translateX(10px);transform:translateX(10px)}80%{-webkit-transform:translateX(8px);transform:translateX(8px)}90%{-webkit-transform:translateX(-8px);transform:translateX(-8px)}}@keyframes shake-horizontal{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%{-webkit-transform:translateX(10px);transform:translateX(10px)}80%{-webkit-transform:translateX(8px);transform:translateX(8px)}90%{-webkit-transform:translateX(-8px);transform:translateX(-8px)}}

.step_btn {
  width: 95%;
  position: absolute;
  bottom: 5%;
  right: 0;
  left: 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {}
/*フッター*/
footer {
  padding: 5% 0 0 0;
  position: relative;
  z-index: 9999;
  color: #fff;
  background: #333;
  margin-top: auto;
}
footer a {
  color: #fff;
}
.footer_text {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .footer_text {
    font-size: 14px;
  }
}
.copy {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-size: 11px;
}
/* fadeUp*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}
/*アニメーション*/
/*スライドイン*/
.scroll_fadein {
  opacity: 0;
}
.fadein_animation_start {
  /*キーフレームアニメーションを指定*/
  animation-name: fadein_animation;
  /* アニメーションの開始時間の遅延*/
  animation-delay: 0.3s;
  /* アニメーションの時間を指定*/
  animation-duration: 1s;
  /*アニメーション再生後のスタイルを指定*/
  animation-fill-mode: both;
}
@keyframes fadein_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.slideup {
  transform: translateY(50px);
}
.slidedown {
  transform: translateY(-50px);
}
/*ボタンアニメーション*/
.pulsate-bck {
  -webkit-animation: pulsate-bck 1s ease-in-out infinite both;
  animation: pulsate-bck 1s ease-in-out infinite both
}
@-webkit-keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
  50% {
    -webkit-transform: scale(.9);
    transform: scale(.9)
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}
@keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
  50% {
    -webkit-transform: scale(.9);
    transform: scale(.9)
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}