@charset "UTF-8";

/* マルケトのエラー吹き出しを模倣したスタイル */
#email-error {
  background-color: rgb(253, 124, 150);
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: bold;
  padding: 14px 15px;
  border-radius: 6px;
  position: relative;
  top: 11px;
  left: 0;
  z-index: 10;
  animation: fadeIn 0.4s ease 0s 1 normal;
}

#email-error::before {
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: -3px;
  left: 11px;
  content: '';
  overflow: hidden;
  z-index: 100;
  background-color: rgb(253, 124, 150);
}

/* マルケトのエラー吹き出しをマルケト側の js による style 制御に負けず完全に非表示にする */
#email-error + .mktoError,
#Email + .mktoError {
  display: none !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}