@charset "UTF-8";
.error-forms{
    display: none;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color:rgba(244,228,228,1.00);
    color: rgba(165,0,3,1.00);}
.error{
    color: red;
}
/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 9999999; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
}
.modalBg {
  width: 100%;
  /*height: 100%;*/
  min-height: 100vh;
  background-color: rgba(30, 30, 30, 0.6);
}
.modalContents img{
    border-radius: 30px;
}
.modalWrapper {
    
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  /*max-width: 500px;
  padding: 10px 30px;
  background-color: #fff;*/
}


.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(192,192,192, 0.2);
  border-right: 1.1em solid rgba(192,192,192, 0.2);
  border-bottom: 1.1em solid rgba(192,192,192, 0.2);
  border-left: 1.1em solid #c0c0c0;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


#mail_form_wrap { margin: 70px 0 0; }

/* 完了画面追記 */
.thanks-wrap  .btn-base { margin: 60px auto 30px;}

@media (max-width: 768px) {
.thanks-wrap  .btn-base { margin: 30px auto;}
}

