@charset "UTF-8";

/****** 下層ページはヘッダー固定 ******/
.header{
  top: 0;
}

/****** ここからh1 ******/

.title_wrap{
  background: url(../images/contact/mainvisual_contact.png) no-repeat center 60%;
  background-size: cover;
  position: relative;
}

/****** ここからお問い合わせフォーム ******/

.form_sec{
  padding-bottom: 100px;
}

.form_sec h3{
  text-align: center;
  padding-bottom: 50px;
}

.form_sec .text{
  padding-bottom: 32px;
  line-height: 2;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  border: 1px solid #ccc;
  background-color: #fffdf1; 
  width: 100%;
  margin-top: 5px;
  padding: 4px 8px;
}

textarea{
  height: 216px;
  resize: vertical;
  margin-bottom: 60px;
}

form p{
  line-height: 1.5;
  margin-bottom: 20px;
}

/***送信ボタン****/
.submit_btn input{
  display: block;
  width: 100px;
  margin: 0 auto;
  padding: 15px 0;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  color: #fff;
  background-color: #34548f;
  cursor: pointer;
  transition: .3s;
}

.submit_btn input:hover{
  background-color: #ef7c7f;
}


/****** ここからメディアクエリ ******
*********************************/
@media  screen and (max-width:900px){
  .title_wrap{
    background-image: url(../images/contact/mainvisual_contact\ _min.png);
  }
  .form_sec h3{
    padding-bottom: 40px;
  }

  .form_sec .text{
    width: 80%;
    margin: 0 auto;
  }

  .form{
    width: 90%;
    margin: 0 auto;
  }

  textarea{
    margin-bottom: 50px;
  }

}

@media screen and (max-width:480px) {
  textarea{
    margin-bottom: 30px;
  }

/***送信ボタン****/
  .submit_btn input{
    padding: 10px 0;
  }
}
/*480px*/

@media screen and (max-width:440px) {
  .form_sec h3{
    font-size: 30px;
  }
}/*440px*/

@media screen and (max-width:400px) {
  .form_sec h3{
    font-size: 24px;
  }
}/*400px*/