@charset "UTF-8";
.b-faq__list {
  width: 98%;
  margin-inline: auto;
  margin-bottom: 35px;
}
.b-faq__item {
  margin-bottom: 15px;
}
.b-faq__q,
.b-faq__a {
  position: relative;
  border-radius: 5px;
}
.b-faq__q {
  padding: 18px 50px 18px 45px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  background-color: #f5f5e8;
  margin-bottom: 5px;
  cursor: pointer;
  list-style: none;
}
.b-faq__q::marker {
  content: "";
}
.b-faq__q::-webkit-details-marker {
  display: none;
}
.b-faq__q::before {
  position: absolute;
  top: 50%;
  display: inline-block;
  font-size: 1.5rem;
  color: #E7513C;
  text-indent: -1.9rem;
  content: "Q";
  transform: translateY(-50%);
}
.b-faq__q::after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 24px;
  font-weight: normal;
  line-height: 1;
  color: #9f9f74;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s ease;
}
.b-faq__item details[open] .b-faq__q::after {
  content: "－";
  transform: translateY(-50%) rotate(-180deg);
}
.b-faq__a {
  padding: 20px 20px 20px 45px;
  font-size: 15px;
  line-height: 1.8;
  border: solid 1px #d6d6d6;
}
.b-faq__a::before {
  position: absolute;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2F2D2C;
  text-indent: -1.9rem;
  content: "A";
}
@media screen and (min-width: 769px) {
  .b-faq__a::before {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .b-faq__item {
    margin-bottom: 13px;
  }
  .b-faq__q {
    padding-right: 40px;
    font-size: 15px;
  }
  .b-faq__q::after {
    right: 13px;
  }
  .b-faq__a {
    padding: 15px 15px 15px 45px;
  }
}
