@charset "utf-8";
/* CSS Document */
.groupPage-qa {
  width: 100%;
  max-width: 700px;
  margin: 40px auto;
  box-sizing: border-box;
  color: #333;
}
.groupPage-qa__heading {
  margin: 0 0 28px;
}
.groupPage-qa__heading-en {
  margin: 0;
  color: #555;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
}
.groupPage-qa__heading-ja {
  margin: 2px 0 0;
  color: #111;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}
.groupPage-qa__list {
  display: grid;
  gap: 12px;
}
.groupPage-qa__item {
  border: 1px solid #e5e1dc;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.groupPage-qa__question {
  position: relative;
  width: 100%;
  padding: 18px 48px 18px 52px;
  border: 0;
  background: #faf8f5;
  color: #333;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  cursor: pointer;
  box-sizing: border-box;
}
.groupPage-qa__question::before {
  content: "Q";
  position: absolute;
  top: 18px;
  left: 20px;
  color: #9a7b5f;
  font-size: 16px;
  font-weight: 700;
}
.groupPage-qa__question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #9a7b5f;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}
.groupPage-qa__item.is-open .groupPage-qa__question::after {
  content: "－";
}
.groupPage-qa__answer {
  display: none;
  position: relative;
  padding: 18px 22px 20px 52px;
  border-top: 1px solid #e5e1dc;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  box-sizing: border-box;
}
.groupPage-qa__item.is-open .groupPage-qa__answer {
  display: block;
}
.groupPage-qa__answer::before {
  content: "A";
  position: absolute;
  top: 18px;
  left: 20px;
  color: #b56f5f;
  font-size: 16px;
  font-weight: 700;
}
.groupPage-qa__answer p {
  margin: 0;
}
.groupPage-qa__answer a {
  color: #8a6748;
  text-decoration: underline;
}
.groupPage-qa__answer .bold {
  color: #e58709;
}
@media screen and (max-width: 767px) {
  .groupPage-qa {
    margin: 32px auto;
    padding: 0 14px;
  }
  .groupPage-qa__heading {
    margin-bottom: 22px;
    text-align: center;
  }
  .groupPage-qa__heading-en {
    font-size: 26px;
  }
  .groupPage-qa__heading-ja {
    font-size: 13px;
  }
  .groupPage-qa__question {
    padding: 16px 44px 16px 48px;
    font-size: 13px;
  }
  .groupPage-qa__answer {
    padding: 16px 18px 18px 48px;
    font-size: 14px;
  }
  .groupPage-qa__answer p {
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
  }
}