/* カテゴリタイトル */
.qa-category-title {
  cursor: pointer;
/*  padding: 12px;*/
  padding: 5px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  background: #e8f2ff;
  border-left: 4px solid #007acc;
  border-radius: 4px;
  position: relative;
}

/* カテゴリの＋/− */
.qa-category-title::after {
  content: '＋';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #007acc;
}
.qa-category-title.active::after {
  content: '−';
}

/* カテゴリ内の質問（最初は非表示） */
.qa-item {
  margin: 10px 0 15px 0;
  display: none;
}

/* 質問部分 */
.qa-question {
  cursor: pointer;
/*  padding: 10px 12px;*/
  font-weight: bold;
  position: relative;
  background: #f9f9f9;
  border-radius: 4px;
}
.qa-question:hover {
  background: #eef7ff;
}

/* 質問の＋/− */
.qa-question::after {
  content: '＋';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #007acc;
}
.qa-question.active::after {
  content: '−';
}

/* 回答（最初は非表示） */
.qa-answer {
  display: none;
/*  padding: 10px 12px;*/
  margin-top: 6px;
  background: #f5faff;
  border-left: 3px solid #007acc;
  border-radius: 4px;
  /* ▼ ここが重要 ▼ */
  text-indent: -1em;     /* 1行目だけ左に戻す（マイナス） */
  padding-left: 2em;     /* 全体を右に寄せる */  
}
