@charset "UTF-8";

/* ******************
Title: faq.css
to use：faq
******************* */

ul.qaArea{
  width:100%;
  height: auto;
  margin: 0 auto 65px;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
}

p.question{
  width:100%;
  height: auto;
  min-height: 40px;
  margin: 0 auto 15px;
  padding: 0 0 0 50px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
  position: relative;
}

p.question:after {
  content: "";
  width: 40px;
  height: 40px;
  padding: 0;
  margin: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  background: url(../img/icon_question.png)50% 50% no-repeat #22B573;
  background-size: 30px 30px;
  position: absolute;
  top:0;
  left: 0;
  border-radius: 5px;
}

p.answer{
  width:100%;
  height: auto;
  margin: 0 auto 15px;
  padding: 0 0 0 50px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
  position: relative;
}

p.answer:after {
  content: "";
  width: 40px;
  height: 40px;
  padding: 0;
  margin: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  background: url(../img/icon_answer.png)50% 50% no-repeat ;
  background-size: 30px 30px;
  position: absolute;
  top:0;
  left: 0;
  border-radius: 5px;
}

/*===============================
タブレット（768px～）
===============================*/

@media screen and (min-width:768px) {
  p.question{
    margin: 0 auto 30px;
  }

  p.answer{
    margin: 0 auto 30px;
  }
}

/*===============================
PC（980px～）
===============================*/
@media screen and (min-width:980px) {

}