/* 
■■■■ faq ■■■■
*/

#faq_body{
  width: 850px;
  margin: auto;
}

/* ================
    FAQ menu
   ================ */

#faq_menu ul{
  border-bottom: solid 1.5px black;
  border-top:  solid 1.5px black;
  display: inline-flex;
  height: 70px;
  list-style: none;
  width: 100%;
  justify-content: space-evenly;
  margin-top: 50px;
}
#faq_menu ul .menuline{
  border-left: solid 1px grey;
  border-right: solid 1px grey;
  padding: 0 45px;
}

#faq_menu ul li a{
  text-decoration:none;
  color: black;
}
#faq_menu ul li{
  margin: auto;
}
#faq_menu ul li ::after{
  content: url(../images/faq/gt_pc.png);
  margin: 0.8em;
  vertical-align: sub;
}


/* ================
    contents
   ================ */

.title_frame .title {
  display: flex;
  align-items: center;
  margin: 30px 0;
font-size: 24px;
	line-height: 1;
}
.title_frame .title:before {
  content: url(../img/faq/title_line.png);
  margin: 0 0.4em 0 0;
    height: 32px;
}
.qa_contents{
  margin: 10px 0 50px 80px;
}
.question{
  margin: 60px 0 25px;
  display: flex;
  font-weight: bold;
}
.answer{
  margin: 25px 0;
  /*display: flex;*/
  font-size: 0.9rem;
  padding-left: 3em;
  text-indent: -3em;
}
.question::before{
  content: url(../img/faq/faq_q.png);
  margin: 0 0.8em;
}
.answer::before{
  content: url(../img/faq/faq_a.png);
  margin: 0 0.8em;
}


@media screen and (max-width: 740px) {
  /*表示領域が0～740pxに適用*/
  .title_frame .title{
    font-size: 1.2rem;    
  }
  .title_frame .title::before{
    margin: 0 10px 0 0;
  }

  #faq_body {
    width: 100%;
    margin: auto;
  }
  #faq_menu ul{
    border-bottom: solid 1.5px grey;
    border-top: solid 1.5px grey;
    display: block;
    list-style: none;
    width: 100%;
    height: auto;
  }
  #faq_menu ul li {
    font-size: 1rem;
    padding: 1em;
  }
  #faq_menu ul li ::after {
    content: '';
    margin: unset;
    background-image: url(../img/faq/gt_pc.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 25px;
    float: right;
  }
  #faq_menu ul li a{

  }
  #faq_menu ul .sp_li{
    border-bottom: solid 1px #CCC;
    border-top: solid 1px #CCC;
  }
  #faq_menu ul .menuline {
    border-left: none;
    border-right: none;
    padding: 0;
  }
  .qa_contents{
    margin: 0 8px;
  }
  .question{
    margin: 5px 0 0px;
    display: inline-flex;
    font-size: 1rem;
    line-height: 20px;
    }
  .question::before {
    margin: -2px 0.8em 0 0;
  }
  .answer{
    margin: 25px 0;
    /*display: inline-flex;*/
    font-size: 0.9rem;
    line-height: 22px;
    padding-left: 2.3em;
    text-indent: -2.3em;
  }
  .answer::before {
    margin: 0 0.8em 0 0;
  }
  .a_br br{
    display: none;
  }
}