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

/*==============================
ヘッダ
==============================*/

header{
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url("../img/headBack.jpg");
  background-size: cover;
  background-position: center center;
}

header > h2{
  position: relative;
  font-family: "Noto Sans JP";
  top: 140px;
  left: 100px;
  font-size: 40px;
  letter-spacing: 8px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,.9);
}

header > h2 span{
  font-family: 'Hannari';
  font-size: 26px;
  text-shadow: 0 0 5px rgba(0,0,0,.9);
  margin-left: 5px;
}

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

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

@media screen and (max-width: 1000px) {
  header{
    height: 250px;
  }

  header > h2{
    top: 100px;
    left: 50px;
  }
}

@media screen and (max-width: 800px) {
  header{
    height: 200px;
  }

  header > h2{
    top: 70px;
    left: 20px;
  }
}

@media screen and (max-width: 600px) {
  header{
    height: 150px;
  }

  header > h2{
    top: 50px;
    font-size: 32px;
    letter-spacing: 3px;
  }
  
  header > h2 span{
    font-size: 18px;
    letter-spacing: 0;
  }
}

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

#voiceWrap{
  padding: 50px 20px;
}

.voiceBox{
  padding: 30px 50px;
  border: 4px solid #333;
  border-radius: 10px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
}

.voiceBox > div:first-of-type{
  text-align: center;
  margin-bottom: 15px;
}

.voiceBox > div:first-of-type i{
  font-size: 40px;
  color: #006549;
}

.voiceBox > div:first-of-type h2{
  font-weight: bold;
  font-size: 20px;
  color: #006549;
}

.voiceBox > h3{
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 5px;
}

.voiceBox > p{
  margin-bottom: 15px;
}

.btnBox{
  text-align: center;
}

.btnBox > a{
  display: inline-block;
  padding: 10px 30px;
  background-color: #006549;
  color: #fff;
}

.btnBox > a:first-of-type{
  margin-right: 10px;
}

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

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

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

  .voiceBox{
    max-width: 600px;
    padding: 30px 20px;
  }
}

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

  .btnBox > a{
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 10px 30px;
    background-color: #006549;
    color: #fff;
  }

  .btnBox > a:first-of-type{
    margin-right: 0px;
    margin-bottom: 10px;
  }
}

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