@charset "UTF-8";
/* 変数など
--------------------------------------------------------*/
/* Color*/
/*media queries*/
/*よくある質問*/
.faq-wrap {
  margin: 50px auto;
  padding: 0 20px;
}
@media print, screen and (min-width: 1170px) {
  .faq-wrap {
    padding: 0;
    max-width: 1170px;
    margin: 70px auto;
  }
}
.faq-wrap .faq-index {
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .faq-wrap .faq-index {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.faq-wrap .faq-index li {
  padding: 10px 0 10px 1.2em;
  line-height: 1.4;
  border-bottom: #ccc 1px dotted;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .faq-wrap .faq-index li {
    font-size: 1.6rem;
    flex-basis: 48%;
  }
}
.faq-wrap .faq-index li::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.25em;
  width: 0.5em;
  height: 0.5em;
  border-bottom: #8b693c 2px solid;
  border-right: #8b693c 2px solid;
  transform: rotate(45deg);
}
.faq-wrap .faq-inner {
  margin: 80px auto 60px;
}

/*よくある質問一覧*/
.faq-list {
  margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .faq-list {
    font-size: 1.6rem;
  }
}
.faq-list > li {
  border-bottom: #ccc 1px dotted;
  padding: 20px 0;
  line-height: 1.4;
}
.faq-list .js-faq-answer {
  display: none;
}
.faq-list .question {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.faq-list .question::before {
  background-color: #cc4444;
  content: 'Q';
  font-size: 2.0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  color: #fff;
  margin-right: 0.5em;
}
.faq-list .answer {
  background-color: #f5f2ef;
  position: relative;
  border-radius: 5px;
  padding: 60px 20px 20px 20px;
  margin: 20px 0;
}
@media print, screen and (min-width: 1000px) {
  .faq-list .answer {
    padding: 30px 20px 30px 60px;
  }
}
.faq-list .answer::before {
  background-color: #02A2D9;
  content: 'A';
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 2.0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  color: #fff;
}
@media print, screen and (min-width: 1000px) {
  .faq-list .answer::before {
    top: 25px;
  }
}
.faq-list .answer p {
  line-height: 1.6;
}
.faq-list .answer p + p {
  margin-top: 1em;
}
