@charset "UTF-8";
/* CSS Document */
.main {
  background-image: url("../image/contact_image.png");
  background-position: center;
  background-size: cover;
  display: block;
  background-repeat: no-repeat;
  object-fit: cover;
  object-position: 50% 50%;
  height: auto;
  margin: 0 auto;
  padding-bottom: 20px;
}
.contact-top {
  padding: 60px 0;
  position: relative;
  margin: 0 auto;
}
.hp_thanks {
  text-align: left;
  font-weight: 400;
  padding: 80px 24px 40px;
  margin: 0 auto;
}
.button img {
  position: relative;
  margin: 0 auto;
  width: 50%;
}
.contact-top h2 img {
  width: 50%;
}
.contact-top h2 {
  margin: 0 auto;
  text-align: center;
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}
@media(min-width:1040px) {
  .main {
    margin: 0 240px;
    height: auto;
    box-sizing: border-box;
  }
  .contact-top {
    max-width: 1040px;
  }
  .contact-top h2 img {
    width: 22%;
  }
  .hp_thanks {
    text-align: center;
    padding: 40px 140px;
    font-size: 2.0rem;
    line-height: 3.0rem;
  }
  .button img {
    width: 30%;
  }
}
@media only screen and (max-width: 1160px) {
  .button_pc {
    display: none !important;
  }
  .button_sp {
    display: block !important;
  }
}
.button_sp {
  display: none !important;
}
.button_pc {
  display: block !important;
}
.how-to {
  box-sizing: border-box;
  height: auto;
}
.how-to h2 img {
  width: 50%;
}
.how-to h2 {
  margin: 0 auto;
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}
.how-to_123 {
  background-color: #fff;
  margin: 60px 24px 60px 24px;
  padding-top: 60px;
  box-sizing: border-box;
  animation-name: smoothAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}
@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
.how-to h3 {
  text-align: left;
  padding: 0 30px 10px;
}
.how-to p {
  padding: 0 30px 40px 40px;
  text-align: left;
}
.cash {
  text-align-last: right;
  text-decoration: underline;
}
@media(min-width:1040px) {
  .how-to_123 {
    padding: 60px 40px 20px 40px;
    margin: 40px 120px;
    box-sizing: border-box;
  }
  .how-to h2 img {
    width: 20%;
  }
}