@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
==============================*/

#requirementsWrap{
  padding: 100px 20px;
}

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

.requirementsBox > h3{
  margin-bottom: 30px;
}

.requirementsBox > h4{
  margin-bottom: 10px;
}

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

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


.requirementsBox > p{
  text-align: justify;
  margin-bottom: 30px;
}

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



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

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











