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



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

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

.titleBox h3{
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: #ffe824;
}

.titleBox hr{
  display: block;
  width: 50px;
  margin: 15px auto;
  height: 2px;
  border: none;
  background-color: #fff;
}

.titleBox h2{
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 600px){
  .titleBox h3{
    font-size: 18px;
    letter-spacing: 2px;
  }
  
  .titleBox hr{
    margin: 10px auto;
  }
  
  .titleBox h2{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 26px;
  }
}

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

#headWrap{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  z-index: 1;
  background-image: url("../img/headBack.jpg");
  background-position: center center;
  background-size: cover;
}

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

#headWrap > .titleBox h3{
  color: #fff;
}

#policyWrap{
  padding: 50px 20px 0;
  background-color: #efefef;
  text-align: center;
}

#policyWrap > .titleBox h3{
  color: #29abe2;
}

#policyWrap > .titleBox hr{
  background-color: #29abe2;
}

#policyWrap > .titleBox h2{
  color: #333;
}

#policyWrap > img{
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  top: 50px;
}

#secernmentWrap{
  padding: 100px 20px 50px;
  text-align: center;
}


#secernmentWrap > .titleBox h3{
  color: #29abe2;
}

#secernmentWrap > .titleBox hr{
  background-color: #29abe2;
}

#secernmentWrap > .titleBox h2{
  color: #333;
}

#secernmentWrap > p{
  margin-bottom: 40px;
}

#secernmentWrap > ul{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

#secernmentWrap > ul li{
  width: 32%;
}

#secernmentWrap > ul li img{
  width: 100%;
}

#facilityWrap{
  padding: 50px 20px;
  background-color: #2e718d;
  text-align: center;
}

#facilityWrap > ul{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#facilityWrap > ul li{
  width: 32%;
  margin-bottom: 15px;
}

#facilityWrap > ul li img{
  width: 100%;
}

#facilityWrap > ul li p{
  color: #fff;
  font-weight: bold;
}

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

@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) {
}

@media screen and (max-width: 600px){
  #headWrap{
    height: 200px;
  }
  
  #secernmentWrap > ul{
    max-width: 320px;
    display: block;
  }
  
  #secernmentWrap > ul li{
    width: 100%;
    margin-bottom: 15px;
  }
  
  #facilityWrap > ul{
    max-width: 320px;
    display: block;
  }
  
  #facilityWrap > ul li{
    width: 100%;
    margin-bottom: 15px;
  }
}

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