@charset "UTF-8";
/* お問い合わせ ---------------------------------------- */
#form {
  color: #000;
}
#form h2 {
  margin: 0 auto 50px;
  padding-bottom: 5px;
  border-bottom: 2px #000 solid;
}
#form h3 {
  font-size: 20px;
}
#form p {
  margin-bottom: 30px;
}
#form ul {
  margin-bottom: 30px;
  margin-left: 20px;
}
#form table {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
#form table th {
  width: 35%;
  padding: 10px 0;
  text-align: left;
  vertical-align: top;
}
#form table th span {
  margin-left: 10px;
  color: #ff0000;
  font-size: 12px;
}
#form table td {
  width: 65%;
  padding: 10px 0;
  text-align: left;
}
#form div.radio {
  display: inline-block;
  margin-left: 10px;
}
#form div.radio:first-of-type {
  margin-left: 0;
}
#form table td input[type="text"], #form textarea {
  border: 1px solid #000000;
  width: 94%;
  padding: 10px 10px;
  font-size: 14px;
}
#form input[type="submit"]{
  font-size: 22px;
  display: block;
  border: none;
  border-radius: 5px; /* CSS3草案 */
  -webkit-border-radius: 5px; /* Safari,Google Chrome用 */
  -moz-border-radius: 5px; /* Firefox用 */
  outline: 0;
  cursor: pointer;
  color: #ffffff;
  background: #b50005;
  width: 100%;
  margin: 100px auto 0;
  padding: 15px 0;
  transition: 0.3s;
	text-align: center;
}
#form .btn, #form .btn2 {
  position: relative;
  line-height: 2.8em;
  width: 40%;
  max-width: 400px;
  margin:0 auto;
}
#form .btn::after{
  content: "";
  width: .6em;
  height: .6em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
#form .btn2::after{
  content: "";
  width: .6em;
  height: .6em;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
#form .btn input:hover {
  opacity: 0.8;
}

#form .btn2 form input {
  color: #000;
  background: #fff;
  border: 1px #000 solid;
  margin-top: 10px;
}
#form em, .error {
  color: #ff0000;
  font-size: 14px;
}
#form .retern {
  margin-top: 150px;
}
#form .retern a {
  display: block;
}
/* ------------------------------------------------------------ 
tablet
------------------------------------------------------------ */
@media screen and (max-width: 860px) {
  #form table th {
    display: block;
    width: 100%;
    padding: 4% 0 1%;
  }
  #form table td {
    display: block;
    width: 100%;
    padding: 0;
  }
  #form input[type="submit"] {
-webkit-appearance: none;
  border-radius: 5px; /* CSS3草案 */
  -webkit-border-radius: 5px; /* Safari,Google Chrome用 */
  -moz-border-radius: 5px; /* Firefox用 */
  }
#form .btn {
  width: 60%;
}
}
/* ------------------------------------------------------------ 
smartphone
------------------------------------------------------------ */
@media screen and (max-width: 480px) {
  #form {
    color: #000;
  }
  #form h2 {
    padding: 20px 0 5px;
    border-bottom: 2px #000 solid;
    font-size: 6.0vw;
  }
  #form h3 {
    font-size: 5.5vw;
  }
  #form div.radio {
    display: block;
    margin-left: 0;
  }
  #form .btn, #form .btn2  {
    width: 100%;
  }
  #form .btn input, #form .btn2 input {
    width: 100%;
    font-size: 5.0vw;
    padding: 2% 2%;
    margin: 3% 0;
  }
}