/* ベース設定 */
.classical-faq-wrapper {
  font-family: 'Yu Mincho', 'HiraMinProN-W3', 'Noto Serif JP', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #4a3b32; 
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  letter-spacing: 0.05em;
}

/* メインタイトル */
.faq-main-title {
  text-align: center;
  font-size: 28px;
  color: #722f37; /* ボルドー */
  margin-bottom: 50px;
  border-bottom: 1px solid #722f37;
  padding-bottom: 10px;
  font-weight: normal;
}
.faq-main-title span {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  letter-spacing: 0.1em;
}

/* アコーディオン全体 */
.accordion-container {
  border-top: 1px solid #d4c4b7;
}
.accordion-item {
  border-bottom: 1px solid #d4c4b7;
}

/* 質問ボタン (Q) */
.accordion-question {
  width: 100%;
  text-align: left;
  background-color: transparent;
  border: none;
  padding: 25px 20px;
  font-family: inherit;
  font-size: 16px;
  color: #5c473e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}
.accordion-question:hover {
  background-color: rgba(212, 196, 183, 0.15); /* ホバー時にうっすら色づけ */
}
.q-mark {
  color: #722f37;
  font-weight: bold;
  font-size: 18px;
  margin-right: 15px;
  font-family: 'Times New Roman', Times, serif; /* マークだけよりクラシカルに */
}
.q-text {
  flex: 1;
  font-weight: bold;
  padding-right: 20px;
}

/* 開閉アイコン (+ / -) */
.accordion-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: #722f37;
  transition: transform 0.3s ease;
}
/* 縦線 */
.accordion-icon::before {
  top: 0; left: 6px; width: 2px; height: 14px;
}
/* 横線 */
.accordion-icon::after {
  top: 6px; left: 0; width: 14px; height: 2px;
}
/* 開いた時のアイコン変化 (マイナスになる) */
.accordion-question.active .accordion-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}

/* 回答エリア (A) */
.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
margin-top: 15px;
  background-color: #fff;
}
.answer-content {
  padding: 0 20px 30px 20px;
  display: flex;
  align-items: flex-start;
}
.a-mark {
  color: #b33939; /* Qより少し控えめな赤 */
  font-weight: bold;
  font-size: 18px;
  margin-right: 15px;
  margin-top: 2px;
  font-family: 'Times New Roman', Times, serif;
}
.answer-content p {
  margin: 0;
  flex: 1;
}

/* テキストリンク装飾 */
.classical-link {
  color: #722f37;
  text-decoration: none;
  border-bottom: 1px solid #722f37;
  padding-bottom: 1px;
  transition: opacity 0.3s ease;
}
.classical-link:hover {
  opacity: 0.6;
}

/* レスポンシブ対応 (1023px以下) */
@media screen and (max-width: 1023px) {
  .classical-faq-wrapper {
    padding: 40px 15px;
  }
  .accordion-question {
    padding: 20px 15px;
  }
  .answer-content {
    padding: 0 15px 25px 15px;
  }
  .q-mark, .a-mark {
    margin-right: 10px;
  }
}