@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
.ContactSuccessBadge {
  align-content: center;
  align-items: center;
  background-color: #1a1a1c;
  bottom: -50px;
  box-shadow: 0px 4px 4px 0px #1a1a1c;
  border-radius: 8px;
  color: #ffffff;
  -moz-column-gap: 12px;
       column-gap: 12px;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  left: 50%;
  letter-spacing: 1.5%;
  margin-top: 20px;
  opacity: 0;
  padding: 14px 32px 14px 16px;
  position: fixed;
  text-align: center;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.ContactSuccessBadge::before {
  content: "";
  background-image: url("/img/top/contact/info.svg");
  background-repeat: no-repeat;
  border-radius: 50%;
  display: block;
  height: 20px;
  width: 20px;
}

.ContactSuccessBadge--success {
  animation-name: fadeUpAndDown;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAndDown {
  0%, 5% {
    opacity: 0;
    bottom: 0;
  }
  5%, 80% {
    opacity: 1;
    bottom: 30px;
  }
  80%, 100% {
    opacity: 1;
    bottom: 30px;
  }
  95%, 100% {
    opacity: 0;
    bottom: -50px;
  }
}/*# sourceMappingURL=contact_success_badge.css.map */