@charset "utf-8";
/* CSS Document */
.page-title{
  background-image: url("../img/contact/contact_titlebg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100px;
  margin-bottom: 50px;
}
.page-title h2{
  font-size: 2.4rem;
  color: #fff;
  line-height: 100px;
  vertical-align: middle;
}
@media (min-width: 960px){
  .page-title{
    height: 230px;
    margin-bottom: 100px;
  }
  .page-title h2{
    font-size: 3.2rem;
    line-height: 230px;
  }
}
.contact{
  width: 92%;
  margin: 0 auto 115px;
}
@media (min-width: 960px){
  .contact{
    margin-bottom: 150px;
  }
}
.contact .lead-text{
  margin-bottom: 30px;
}
.contact .form p{
  text-align: left;
  max-width: 593px;
  margin: 0 auto 30px;
}
.contact .form label{
  display: inline-block;
  margin-bottom: 3px;
}
.contact .form label span{
  font-size: 1.4rem;
  color: #F23B42;
  content: " *必須";
}
.contact .form input[type="text"],
.contact .form input[type="email"]{
  font-family: "ヒラギノ角ゴ ProN", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  height: 40px;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 10px;
}
.contact .form textarea{
  font-family: "ヒラギノ角ゴ ProN", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  height: 300px;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 10px;
}
.contact .form input[type="text"]:focus{
  outline: none;
  border: 2px solid #BA9A73;
}
.contact .form input[type="email"]:focus{
  outline: none;
  border: 2px solid #BA9A73;
}
.contact .form textarea:focus{
  outline: none;
  border: 2px solid #BA9A73;
}
.contact .form input[type="submit"]{
  font-family: "ヒラギノ角ゴ ProN", sans-serif;
  font-size: 1.6rem;
  width: 200px;
  height: 60px;
  background-color: #30A1ED;
  color: #fff;
  border: none;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
}
::placeholder{ 
  /*color: #846239;*/
  color: #000;
  opacity: 0.3;
}
.contact .form input[type="submit"]:hover{
  cursor: pointer;
  background-color: #60B5EE;
}






