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

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

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

.faqBox{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.faqBox > h2{
  color: #84b9e1;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.faqBox > ul li{
  margin-bottom: 1px;
}

.qustionLabel{
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  background-color: #b6b2a6;
}

.qustionLabel span{
  font-size: 36px;
  color: #fff;
  margin-right: 10px;
}

.qustionLabel h3{
  text-align: left;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight:bold;
  color: #fff;
  padding-right: 20px;
}

.qustionLabel i{
  font-size: 35px;
  color: #fff;
  position: absolute;
  right: 20px;
  margin: auto;
  transition: .3s;
}

.faqcheck{
  display: none;
}

.anserBox{
  display: none;
  padding: 20px;
  background-color: #f1f1f1;
}

.anserBox span{
  font-size: 36px;
  margin-right: 18px;  
}

.anserBox p{
  text-align: justify;
}

.faqcheck:checked ~ .qustionLabel i{
  transition: .3s;
  transform: rotate(90deg);
}

.faqcheck:checked ~ .anserBox{
  display: flex;
}

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

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

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

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