@charset "UTF-8";
/*------------------------------------------------------------------------------
    config
------------------------------------------------------------------------------*/
/***  media ***/
/***  color ***/
/*** font ***/
.contact_form {
  max-width: 700px;
  margin: auto;
}
.contact_form dl {
  display: flex;
}
@media screen and (max-width: 850px) {
  .contact_form dl {
    display: block;
  }
}
.contact_form dl dt {
  width: 220px;
  text-align: right;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.contact_form dl dt p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
@media screen and (max-width: 850px) {
  .contact_form dl dt p {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 850px) {
  .contact_form dl dt {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }
}
.contact_form dl dt span {
  font-size: 10px;
  border-radius: 2px;
  background: #278D44;
  color: #ffffff;
  padding: 2px 5px;
  margin-left: 5px;
  width: 38px;
  display: block;
  text-align: center;
}
.contact_form dl dd {
  width: calc(100% - 220px);
  padding-left: 30px;
  text-align: left;
}
@media screen and (max-width: 850px) {
  .contact_form dl dd {
    width: 100%;
    padding-left: 0;
    margin-top: 5px;
  }
}
.contact_form dl dd input,
.contact_form dl dd select,
.contact_form dl dd textarea {
  max-width: 100%;
  border-radius: 3px;
  padding: 10px 15px;
  border: 1px solid #D9D9D9;
  width: 100%;
  font-size: 16px;
}
@media screen and (max-width: 850px) {
  .contact_form dl dd input,
  .contact_form dl dd select,
  .contact_form dl dd textarea {
    font-size: 14px;
  }
}
.contact_form dl + dl {
  margin-top: 40px;
}
@media screen and (max-width: 850px) {
  .contact_form dl + dl {
    margin-top: 25px;
  }
}
.contact_form .bri select {
  width: fit-content;
  margin-right: 5px;
}
.contact_form .send_box {
  position: relative;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 850px) {
  .contact_form .send_box {
    width: 100%;
  }
}
.contact_form .send_box::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 15px;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/common/btn_green_icon.png) no-repeat center / contain;
  transition: 0.3s ease-in;
}
.contact_form .send_box:hover::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 15px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/common/btn_green_icon.png) no-repeat center / contain;
  transition: 0.3s ease-in;
}
.contact_form #send,
.contact_form #send1 {
  position: relative;
  display: block;
  margin: auto;
  width: 340px;
  background: #278D44;
  color: #ffffff !important;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.6px;
  padding: 20px;
  margin-top: 50px;
  cursor: pointer;
  border: none;
}
@media screen and (max-width: 850px) {
  .contact_form #send,
  .contact_form #send1 {
    width: 100%;
    padding: 15px 10px;
    margin-top: 30px;
  }
}
.contact_form .wpcf7-spinner {
  display: none;
}
.contact_form .wpcf7-not-valid-tip {
  font-size: 12px;
}
