/* Q&A共通 */
.qa-label {
  color: #e63282;
  font-family: Calibri, "Segoe UI", "Helvetica Neue", sans-serif;
  margin-right: 0.5em;
  font-size: 2rem;
  font-weight: bold;
  flex-shrink: 0;
  width: 1em; /* ラベル幅を固定 */
}

.qa-block {
  margin-bottom: 8px; /* ← 元の12pxから8px程度に短縮 */
}
f2{
font-size:2em!important;
}

/* Q共通 */
.question {
  padding: 20px 60px 7px 20px !important;
  background-color: #f2f2f2;
  position: relative;
  cursor: pointer;
  color: #333;
  padding-left: 24px !important; /
}

.question-inner {
  display: flex;
  align-items: flex-start;
}

.question-text {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Qの＋/−マーク */
.question::after {
  content: "＋";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: normal;
  font-size: 25px;
  color: #e63282;
}

.question.open::after {
  content: "−";
}

/* A共通 */
.answer {
  display: none;
  margin: 0;
  padding: 12px 60px 20px 25px;
  background-color: #f2f2f2;
  border-top: none;
  color: #444;
  font-size: 1.2rem;
  line-height: 1.6;
}

.answer::before {
  content: "";
  display: block;
  width: 90%;
  height: 1px;
  background-color: #fff;
  margin: 0 auto 20px;
  border-radius: 1px;
}

.answer-inner {
  display: flex;
  align-items: flex-start;
}

.answer-text {
  margin: 0;
}
