@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-sp-only {
  display: none;
}

.simple-complete-container {
  height: 60vh;
  background-color: var(--bg-blue);
}
.simple-complete-container .complete-content {
  text-align: center;
  width: 100%;
}
.simple-complete-container .complete-content .complete-message-box {
  border-radius: 0;
  padding: 20vh 40px 60px;
}
.simple-complete-container .complete-content .complete-message-box p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 20px;
}
.simple-complete-container .complete-content .top-link .top-btn {
  display: inline-block;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--blue);
  position: relative;
  padding-right: 20px;
  padding-bottom: 3px;
}
.simple-complete-container .complete-content .top-link .top-btn::after {
  content: "";
  display: inline-block;
  vertical-align: 1px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
  position: absolute;
  top: 30%;
  right: 0;
}
.simple-complete-container .complete-content .top-link .top-btn:hover {
  background-color: transparent;
  transform: none;
  box-shadow: none;
  text-decoration: none;
  border-bottom: 1px solid var(--blue);
}

/* レスポンシブ */
@media (max-width: 767px) {
  .contact-sp-only {
    display: block;
  }
  .simple-complete-container .complete-content {
    text-align: center;
    width: 100%;
  }
  .simple-complete-container .complete-content .complete-message-box {
    border-radius: 0;
    padding: 10vh 20px 20px;
  }
  .simple-complete-container .complete-content .complete-message-box h1 {
    font-size: 20px;
  }
  .simple-complete-container .complete-content .complete-message-box p {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.4;
  }
  .simple-complete-container .complete-content .top-link .top-btn {
    font-size: 16px;
    padding-right: 16px;
  }
  .simple-complete-container .complete-content .top-link .top-btn::after {
    width: 6px;
    height: 6px;
    top: 20%;
    right: 0;
  }
  .simple-complete-container .complete-content .top-link .top-btn:hover {
    background-color: transparent;
    transform: none;
    box-shadow: none;
    text-decoration: none;
    border-bottom: 1px solid var(--blue);
  }
}
/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.complete-message-box {
  animation: fadeInUp 0.6s ease-out;
}

.top-link {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}/*# sourceMappingURL=contact3.css.map */