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



/*==============================
共通
==============================*/
header{
  position: relative;
  height: 380px;
  background-image: url("../img/headBack.png");
  background-size: cover;
  background-position: center center;
  text-align: center;
  padding: 0 20px;
}

header > h1{
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  bottom: -50px;
  margin: auto;
  width: calc(100% - 40px);
  max-width: 498px;
}

header > h1 img{
  width: 100%;
  vertical-align: bottom;
}

.headTitle{
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  bottom: -50px;
  margin: auto;
  width: calc(100% - 60px);
  max-width: 500px;
  padding: 30px 0;
}

.headTitle::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skew(-15deg);
  -o-transform: skew(-15deg);
  -moz-transform: skew(-15deg);
  -webkit-transform: skew(-15deg);
  background-color: #152e4e;
  z-index: 0;
}

.headTitle > *{
  position: relative;
  z-index: 2;
}

.headTitle > h1{
  font-size: 26px;
  line-height: 26px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 10px;
}

.headTitle > p{
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 1px;
  color: #cbd4da;
}

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

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

#postsWrap{
  padding: 100px 20px 50px;
}

.voiceBox{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.voiceBox > div{
  width: 49%;
  text-align: right;
}

.voiceBox > div ul{
  width: 100%;
  margin-bottom: 10px;
}

.voiceBox > div ul li{
  display: flex;
  align-items: center;
  border-top: 1px solid #ccc;
  padding: 15px 20px;
}

.voiceBox > div ul li:last-of-type{
  border-bottom: 1px solid #ccc;
}

.voiceBox > div ul li p{
  margin-right: 20px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1px;
  color: #870000;
}

.voiceBox > div ul li a{
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1px;
  color: #000;
}

.voiceBox > div > a{
  display: inline-block;
  margin-right: 0;
  color: #000;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1px;
}

.voiceBox > div > a i{
  margin-left: 5px;
  color: #870000;
}
/*==============================
レスポンシブ
==============================*/

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

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

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

@media screen and (max-width: 1000px) {
  .voiceBox{
    display: block;
  }
  
  .voiceBox > div{
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 800px) {
  header{
    height: 700px;
  }
  
  header > img{
    margin-top: 90px;
  }
  header > div h1{
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 26px;
  }
  .topBtn{
    display: block;
  }
  
  
  
  .topBtn > a{
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width: 400px;
    padding: 20px 30px;
  }
  
  .topBtn > a:first-of-type{
    margin-bottom: 20px;
  }
  
  .topBtn > a > h4{
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0;
  }
  
  #reasonsWrap > ul li{
    width: 48%;
  }
}

@media screen and (max-width: 600px){
  header{
    height: 600px;
  }
  
  header > div h1{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 24px;
  }
  
  #newsWrap > ul li{
    flex-wrap: wrap;
    position: relative;
    text-align: center;
  }
  
  #newsWrap > ul li p{
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  #newsWrap > ul li a{
    width: 100%;
  }
  
  #newsWrap > ul li i{
    display: none;
  }
  
  #reasonsWrap > ul{
    max-width: 300px;
  }
  
  #reasonsWrap > ul li{
    width: 100%;
  }
  
  .voiceBox > div ul li{
    flex-wrap: wrap;
    text-align: center;
  }
  
  .voiceBox > div ul li p{
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .voiceBox > div ul li a{
    width: 100%;
  }
}

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