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



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

#headWrap div{
  text-align: center;
}

#headWrap div h2{
  color: #fff;
  font-weight: normal;
  font-size: 50px;
  margin-bottom: 10px;
}

#headWrap div p{
  color: #fff;
}

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

/*==============================
メイン
==============================*/

#messageWrap{
  background-color: #222;
}

#messageWrap > div:first-of-type{
  padding: 100px;
  display: flex;
  align-items: center;
}

#messageWrap > div:first-of-type h2{  
  color: #fff;
  font-size: 50px;
  margin-right: 20px;
  font-weight: normal;
}

#messageWrap > div:first-of-type p{
  color: #999;
}

.messageBox{
  display: flex;
}

.messageBox:nth-of-type(2n - 1){
  flex-flow: row-reverse;
}

.messageBox > div{
  width: 50%;
  background-color: #333;
}

.messageBox > div:first-of-type{
  background-image: url("../img/recruitImg01.jpg");
  background-size: cover;
  background-position: center center;
}

.messageBox:nth-of-type(3) > div:first-of-type{
  background-image: url("../img/recruitImg02.jpg");  
}

.messageBox:nth-of-type(4) > div:first-of-type{
  background-image: url("../img/recruitImg03.jpg");  
}

.messageBox > div:last-of-type{
  padding: 100px 50px;
}

.messageBox > div:last-of-type h3{
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

.messageBox > div:last-of-type hr{
  position: relative;
  left: -50px;
  border-bottom: none;
  width: 100%;
  height: 1px;
  background-color: #999;
  margin-bottom: 20px;
}

.messageBox > div:last-of-type p{
  color: #fff;
}

#recruitWrap{
  padding: 100px 20px;
  background-color: #222;
  text-align: center;
}

#recruitWrap > h2{  
  color: #fff;
  font-size: 50px;
  font-weight: normal;
}

#recruitWrap > p{
  color: #999;
  margin-bottom: 50px;
}

#recruitWrap > table{
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: left;
}

#recruitWrap > table td{
  color: #fff;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  padding: 25px;
}

#recruitWrap > form{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

#recruitWrap > form p{
  color: #999;
  padding-left: 10px;
  text-align: left;
}

#recruitWrap > form input[type="text"],
#recruitWrap > form select,
#recruitWrap > form textarea{
  width: 100%;
  padding: 10px;
  border: none;
  margin-bottom: 10px;
}

.seinenBox{
  display: flex;
  align-items: center;
}

.seinenBox p{
  margin-left: 5px;
  margin-right: 15px;
}

#recruitWrap > form .seinenBox input[type="text"]:first-of-type{
  width: 20%;
}

#recruitWrap > form .seinenBox input[type="text"]:nth-of-type(2),
#recruitWrap > form .seinenBox input[type="text"]:nth-of-type(3){
  width: 10%;
}

#recruitWrap > form > div:nth-of-type(2){
  display: flex;
  justify-content: space-between;
}

#recruitWrap > form > div:nth-of-type(2) div{
  width: 48%;
}

#recruitWrap > form input[type="submit"]{
  display: block;
  cursor: pointer;
  padding: 20px 100px;
  border: none;
  margin: 0 auto;
  letter-spacing: 2px;
  color: #fff;
  background-color: #333;
}

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

@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: 800px) { 
  #messageWrap > div:first-of-type{
    padding: 50px 20px;
    display: block;
  }
  
  .messageBox{
    display: block;
  }
  
  .messageBox > div{
    width: 100%;
  }
  
  .messageBox > div:first-of-type{
    height: 400px;
  }
  
  .messageBox > div:last-of-type{
    padding: 50px 20px;
  }
  
  .messageBox > div:last-of-type hr{
    left: -20px;
  }
}

@media screen and (max-width: 600px){
  
  .messageBox > div:first-of-type{
    height: 300px;
  }
  
  #recruitWrap > table td{
    padding: 15px;
  }
}

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