@charset "utf-8";
/* CSS Document */


/*==============================
共通
==============================*/

.titleBox{
  margin-bottom: 30px;
}

.titleBox h2{
  font-family: 'GFS Didot', serif;
  font-size: 50px;
  line-height: 50px;
  font-weight: bold;
  margin-bottom: 0px;
  color: #fa7f29;
}

.titleBox h3{
  font-size: 18px;
  color: #9c9c9c;
}

.btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  margin: 0 auto;
  background-color: #fa7f29;
  border-radius: 5px;
}

.btn p{
  color: #fff;
  font-weight: bold;
  margin-right: 10px;
}

@media screen and (max-width: 600px){   
  .titleBox h2{
    font-size: 40px;
    line-height: 40px;
  }
}

/*==============================
ヘッダ
==============================*/
header{
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  padding: 0 20px;
  background-image: url("../img/pageBack.jpg");
  background-size: cover;
  background-position: center center;
}

header > div{
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

header > div > h1{
  font-weight: bold;
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 8px;
  margin-bottom: 15px;
}

header > div > p{
  text-align: center;
  color: #fff;
  font-weight: bold;
    margin-bottom: 10px;
}

@media screen and (max-width: 800px) {
  header{
    height: 300px;
  }
}

@media screen and (max-width: 600px){  
  header{
    height: 300px;
  }

  header > div > h1{
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 4px;
    margin-bottom: 15px;
  }
  
  header > div > p{
    margin-bottom: 10px;
  }
}

/*==============================
メインコンテンツ
==============================*/

#contactWrap{
  padding: 50px 20px;
}

#contactWrap > div{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  border: 6px solid rgba(250,127,41,.3);
  padding: 50px;
}

.contactTable{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.contactTable tr th{
  width: 20%;
  color: #fa7f29;
  font-weight: bold;
  text-align: right;
  vertical-align: top;
  padding-top: 4px;
}

.contactTable tr td{
  padding-left: 30px;
  width: 80%;
  padding-bottom: 15px;
  text-align: left;
}

.contactTable input[type="text"],
.contactTable textarea,
.contactTable select{
  width: 100%;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid rgba(250,127,41,.4);
  background-color: rgba(230,230,230,.2);
}
.contactTable select{
  width: auto;
}

.contactTable tr:first-of-type th,
.contactTable tr:first-of-type td{
  border-bottom: 4px solid rgba(250,127,41,.3);
}

.contactTable tr:nth-of-type(2) th{
  padding-top: 20px;
}

.contactTable tr:nth-of-type(2) td{
  padding-top: 15px;
}

input[type="submit"]{
  display: inline-block;
  padding: 15px 100px;
  border: none;
  background-color: #fa7f29;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  transition: .3s;
  cursor: pointer;
}

input[type="submit"]:hover{
  opacity: .8;
  transition: .3s;
}

/*==============================
レスポンシブ
==============================*/

@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1300px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1000px) {
}

@media screen and (max-width: 900px) {
}

@media screen and (max-width: 800px) { 
}

@media screen and (max-width: 600px){ 

  #contactWrap > div{
    padding: 30px 20px;
  }

  .contactTable tr{
    display: flex;
    flex-wrap: wrap;
  }

  .contactTable tr th,
  .contactTable tr td{
    width: 100%;
    padding-left: 0;
    padding-bottom: 10px;
    padding-top: 0;
  }

  .contactTable tr:nth-of-type(2) td{
    padding-top: 0;
  }
  
  .contactTable tr th{
    text-align: left;
  }
  
  .contactTable tr:first-of-type th{
    border-bottom: none;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 500px){
}

@media screen and (max-width: 414px){
}


/*==============================
ローディングアニメーション
==============================*/
