@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;
  }
}

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

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

#aboutWrap > img:nth-of-type(1){
  margin-bottom: 30px;
}

#aboutWrap > img:nth-of-type(2){
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#aboutWrap > img:nth-of-type(3){
  display: none;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#staffWrap{
  padding: 0 20px 100px;
}

.staffBox{
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.staffBox > div{
  display: flex;
}

.staffBox > div:nth-of-type(2){
  flex-flow: row-reverse;
}

.staffBox > div img{
  width: 50%;
}

.staffBox > div > div{
  width: 50%;
  padding: 30px;
  border: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.staffBox > div > div h3{
  width: 100%;
  text-align: left;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
}

.staffBox > div > div h4{
  font-size: 22px;
  letter-spacing: 0;
  color: #84b9e1;
  margin-bottom: 20px;
}


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

@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) {
  .staffBox{
    max-width: 600px;
  }
  
  .staffBox > div{
    display: block;
  }
  
  .staffBox > div img,
  .staffBox > div > div{
    width: 100%;
  }
}

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

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

  #aboutWrap > img:nth-of-type(2){
    display: none;
  }

  #aboutWrap > img:nth-of-type(3){
    display: block;
  }
}

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