input.failed,textarea.failed {
  background: rgb(246, 228, 228);
}
.jsValidateMessageTarget{
  position: relative;
  display:none;
}
.jsValidateMessageTarget.failed{
  display:block;
}
.jsValidateMessageTarget.failed::after {
  content: attr(data-name);
  display: block;
  width: calc(100% - 20px);
  color:#fff;
  margin:20px 0 0;
  padding:10px;
  background:#d82c12;
  border:1px solid #d82c12;
  border-radius:3px;
  line-height:1;
  text-align: center;
}
.jsValidateMessageTarget.failed::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  bottom: 0;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-bottom: 15px solid#d82c12;
  border-left: 15px solid transparent;
}
/* プライバシーポリシー用 */
.jsValidateMessageTarget.forHv.failed::after {
  margin:0 auto;
  width: calc(85% - 20px);
}
.jsValidateMessageTarget.forHv.failed::before {
  top: -40px;
}
.form-btn button{
border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    width: 50%;
    text-align: center;
    margin-bottom: 10px;
    padding: 15px 2%;
    background: #2A4CC2;
    border: 1px solid #FFF;
    border-radius: 0.3em;
    color: #FFF;
    font-size: 120%;
}
@media screen and (max-width: 960px){
.form-btn button{
      width: 80%;
  }
}

.form-btn button.edit{
  width: 50%;
  text-align: center;
  padding: 10px 2%;
  background: #dddddd;
  border: 1px solid #FFF;
  border-radius: 0.3em;
  color: rgb(76 75 75);
  font-size: 110%;
}