@charset "utf-8";


/* * {
  outline: 1px solid magenta;
} */

.main h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 30px;
}

/* .main h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin-top: 20px;
} */

.map {
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
}

.map iframe {
  display: block;
  width: 100%;
  height: 320px;
  margin-top: 25px;
}






/* formここから */

#formWrap {
  margin: 0 auto;
  color: #555;
  line-height: 120%;
  font-size: 90%;
}

table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

.formTable select {
  padding: 20px;
}

table.formTable td {
  padding-left: 20px;
  border-bottom: 20px solid #ffffff;
}

.formTable tr th {
  /* display: flex;
  align-items: center; */
  padding: 20px;
  border-bottom: 20px solid #ffffff;
  width: 30%;
  font-weight: normal;
  background: #f0f0f0;
}

.require {
  border: solid 1px #df4440;
  color: #df4440;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 5px;
  margin-left: 20px;
}

.formWrapP {
  margin-bottom: 30px;
}

form input[type="tel"],
form input[type="text"],
form input[type="email"],
textarea,
select {
  border: 1px solid #cecece;
  display: inline-block;
  width: 100%;
  padding: 20px 0;
}

form input[type="submit"],
form input[type="reset"] {
  border: 1px solid #1f1f1f;
  background-color: #fff;
  color: #1f1f1f;
  margin-left: 20px;
  padding: 10px 30px;
  transition: 0.31s ease-in;
}

form input[placeholder],
form textarea[placeholder] {
  padding: 20px;
}

form input[type="submit"]:hover,
form input[type="reset"]:hover {
  background-color: #1f1f1f;
  color: #fff;
}

.submit {
  text-align: center;
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
  #formWrap {
    width: 95%;
    margin: 0 auto;
  }

  table.formTable th,
  table.formTable td {
    width: auto;
    display: block;
  }

  table.formTable td {
    padding: 0;
  }

  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }

  form input[type="tel"],
  form input[type="text"],
  form input[type="email"],
  textarea,
  select {
    border: none;
    border-bottom: 1px solid #cecece;
    display: inline-block;
    width: 100%;
    padding: 20px;
    font-size: 110%;
    display: block;
  }


  form input[type="submit"],
  form input[type="reset"],
  form input[type="button"] {
    display: inline-block;
    width: 80%;
    height: 40px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #cecece;
  }

  .main h2::after {
    display: none;
  }

  .main h2 {
    margin-bottom: 30px;

  }

}