@charset "utf-8";

/*
  File Name   : faq.css
  Description : FAQページ
*/

/* common
============================================================ */
.sec-anchor-nav li {
  width: 50%;
}
.sec-faq + .sec-faq {
  padding-top: 0;
}
p + .faq-list {
  margin: 50px 0 0;
}
.faq-list__item {
  position: relative;
  background: #f0e6e0;
  z-index: 0;
}
.faq-list__item + .faq-list__item {
  margin-top: 1px;
}
.faq-list__item dl {
  cursor: pointer;
  padding: 20px 30px;
}
.faq-list__item dt {
  line-height: 1.4;
  margin-left: 2em;
  padding-right: 2em;
  font-weight: bold;
  color: #5d1c0d;
  text-indent: -2em;
}
.faq-list__item dt:before {
  content: "Q";
  display: inline-block;
  width: 2em;
  font-family: "Arial", sans-serif;
  text-indent: 0;
  transform-origin: left center;
  transform: scale(1.3);
}
.faq-list__item dd {
  display: none;
  margin: 15px 0;
  padding: 25px 30px;
  background: #fff;
}
.faq-list__item .icon-arrow {
  position: absolute;
  top: 25px;
  right: 30px;
  width: 15px;
  height: 15px;
  z-index: -1;
}
.faq-list__item .icon-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/faq/icon-arrow-double.png) no-repeat center center / contain;
}
.js-accordion:not(.open) + .icon-arrow:before {
  transform: rotate(180deg);
}
.faq__btn-contact {
  margin-top: 80px;
  text-align: center;
}

.faq__btn-contact a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 30px;
  min-width: 560px;
  box-sizing: border-box;
  font-size: 2rem;
  font-weight: bold;
  color: #5d1c0d;
  text-align: center;
  text-decoration: none;
  background: #ffba16;
}
.faq__btn-contact a.btn span {
  position: relative;
  display: inline-block;
  padding-left: 1.6em;
  background: url(../img/common/icon-mail-01.png) no-repeat 0 47%;
  background-size: auto;
  background-size: 23px auto;
}

@media screen and (max-width: 900px) {
  .faq__btn-contact a.btn {
    display: flex;
    height: 40px;
    min-width: auto;
    padding: 0;
    font-size: 1.4rem;
    max-width: 87.5vw;
  }
  .faq__btn-contact a.btn span {
    padding-left: 2em;
    background-size: 18px auto;
  }

}


@media screen and (max-width: 900px) {
  .faq-list {
    margin: 40px 0 0;
  }
  .faq-list__item dl {
    padding: 1.5rem;
  }
  .faq-list__item dd {
    margin: 1rem 0;
    padding: 1.5rem;
  }
  .faq-list__item .icon-arrow {
    top: 2rem;
    right: 1.5rem;
    width: 1rem;
    height: 1rem;
  }
  .faq__btn-contact {
    margin-top: 40px;
  }
}