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



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

#headWrap{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  border: 100px solid #fff;
  background-image: url("../img/headWrap.jpg");
  background-position: center center;
  background-size: cover;
}

#headWrap .titleBox{
  margin-bottom: 0;
}

#headWrap .titleBox h2,
#headWrap .titleBox h3{
  color: #fff;
}

.titleBox{
  margin-bottom: 50px;
  text-align: center;
}
.titleBox h2{
  font-size: 40px;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.titleBox hr{
  border: none;
  margin: 0 auto;
  width: 50px;
  height: 5px;
  background-color: #84b9e1;
  margin-bottom: 20px;
}
.titleBox h3{
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 0;
}

@media screen and (max-width: 1000px){
  
  #headWrap{
    border: none;
    height: 300px;
    margin-top: 60px;
  }
}

/*==============================
メイン
==============================*/
#contactWrap{
  width: 100%;
  text-align: center;
  padding: 100px 20px 100px;
  background-color: #f1f1f1;
}

#contactWrap > p{
  margin-bottom: 50px;
}

.reserveBox{
  width: 100%;
}

.reserveBox > div{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
}

.reserveBox > div > a{
  position: relative;
  width: 49%;
  display: flex;
  background-color: rgba(255,255,255,.7);
  padding: 40px 40px;
}

.reserveBox > div > a h4{
  color: #fff;
  font-size: 26px;
  line-height: 26px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0;
  margin-right: 10px;
}

.reserveBox > div > a p{
  color: #fff;
  line-height: 26px;
  letter-spacing: 0;
  color: #84b9e1;
}

.reserveBox > div > a::before{
  content: "";
  position: absolute;
  top: 54px;
  right: 40px;
  width: 20px;
  height: 1px;
  background-color: #84b9e1;
  transition: all .3s;
}

.reserveBox > div > a::after{
  content: "";
  position: absolute;
  top: 50px;
  right: 40px;
  width: 10px;
  height: 1px;
  background-color: #84b9e1;
  transform: rotate(45deg);
  transition: all .3s;
}

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

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

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

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

@media screen and (max-width: 1000px) {
  
  .reserveBox > div{
    display: block;
    width: 100%;
    max-width: 600px;
  }
  
  .reserveBox > div > a{
    width: 100%;
    margin-bottom: 10px;
  }
}

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

@media screen and (max-width: 600px){
  
  .reserveBox > div > a{
    display: block;
    text-align: left;
    padding: 30px;
  }

  .reserveBox > div > a::before{
    right: 30px;
  }

  .reserveBox > div > a::after{
    right: 30px;
  }
  
  .telBox,.formBox{
    padding: 50px 20px;
  }
  
  .telBox > a{
    font-size: 30px;
  }
}

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