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


/*==============================
共通
==============================*/
#headWrap{
  background-image: url("../img/headBack.jpg");
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 400px;
}

.titleBox{
  text-align: center;
  margin-bottom: 50px;
}

.titleBox > h2{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  margin-bottom: 20px;
  font-family: 'Sawarabi Mincho', serif;
  letter-spacing: 10px;
  font-weight: normal;
}

.titleBox > hr{
  width: 50px;
  height: 5px;
  border: none;
  background-color: #9ec6ce;
  margin: 0 auto;
}

@media screen and (max-width: 600px){
  #headWrap{
    height: 250px;
  }
}



/*==============================
recruitWrap
==============================*/

#recruitWrap{
  padding: 100px 20px;
}

.recruitBox{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.recruitBox > h3{
  margin-bottom: 10px;
}

.recruitBox > table{
  width: 100%;
  margin-bottom: 30px;
  border-collapse:collapse;
}

.recruitBox > table th,
.recruitBox > table td{
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 30px;
}

.recruitBox > table td{
  text-align: left;
}



.recruitBox .linkBtn{
  display: inline-block;
}

@media screen and (max-width: 600px){
  #recruitWrap{
    padding: 50px 20px;
  }
  
  .recruitBox > table th,
  .recruitBox > table td{
    padding: 20px 10px;
  }
}











