@charset "UTF-8";
/* wordpressデフォルトをリセットするためのCSS */

figure {
  margin: 0;
}

.formArea .wpcf7 form .wpcf7-response-output{
  border: 2px solid #f2f2f2;
  position: fixed;
  top: 40px;
  left: 10%;
  width: 80%;
  margin-inline: auto;
  z-index: 10;
  padding: 20px 10px;
  background: #cf1414;
  color: #fff;
  text-align: center;
  animation: hideMsg 4s forwards;
}

@keyframes hideMsg{
  0%{
    opacity: 1;
  }
  90%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}