h2.sect_ttl.maro {
  color: #5D352B;
  text-align: center;
  font-size: 2.2rem;
  margin: 3em auto 1em;
  font-family:"Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  white-space: pre-wrap;
  word-break: keep-all;
  line-height: 1.4;
}

/* FAQ全体のコンテナ */
.faq-section {
  text-align: left;
  padding: 32px 0;
  background-color: #fff;
}
@media only screen and (min-width: 641px) {
.faq-section {
  padding: 60px 0;
 }
}
.faq-container {
  max-width: 900px; /* アコーディオンの開閉部分が見やすいスッキリした横幅 */
  margin: 0 auto 8em;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 【修正】H2 タイトル（フォントや横幅は既存の .sect_ttl の指定を100%自動継承） */
.faq-title {
  font-family: inherit !important; /* 既存サイトのフォントを強制同期 */
  margin-bottom: 40px !important;  /* 下のアコーディオンとの余白のみ独自に確保 */
}

/* 各FAQアイテム */
.faq-item {
  margin-bottom: 16px;
  border: 1px solid #e1e6eb;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

/* H3 Q文スタイル */
.faq-question {
  font-size: 16px;
  color: #112942; /* ダークブルー */
  background-color: #f7f9fa; /* 薄いグレー */
  padding: 20px 60px 20px 45px;
  position: relative;
  cursor: pointer;
  margin: 0;
  font-weight: bold;
  line-height: 1.5;
  transition: background-color 0.3s ease;
  user-select: none;
  font-family: inherit;
}
.faq-question:hover {
  background-color: #f0f3f5;
}

/* 「Q.」の頭文字 */
.faq-question::before {
  content: "Q.";
  position: absolute;
  left: 20px;
  top: 20px;
  color: #5D352B;
  font-family: "Times New Roman", serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}

/* ＋・－ アイコンのベース */
.faq-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.faq-icon::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: #c2a26b; /* ゴールド */
}
.faq-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
  background-color: #c2a26b; /* ゴールド */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 開いた時（is-active）の挙動 */
.faq-item.is-active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-item.is-active .faq-question {
  background-color: #f0f3f5;
}

/* A文（アコーディオンの開閉制御） */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background-color: #fff;
}
.faq-answer-inner {
  padding: 25px 25px 25px 45px;
  color: #333;
  line-height: 1.8;
  font-size: 15px;
  position: relative;
  border-top: 1px solid #e1e6eb;
  font-family: inherit;
}
.faq-answer-inner::before {
  content: "A.";
  position: absolute;
  left: 20px;
  top: 25px;
  color: #c2a26b; /* 【変更】飯嶋歯科医院様のトンマナに合わせ、赤からゴールド系へ統一 */
  font-family: "Times New Roman", serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}
.faq-answer-inner p {
  margin: 0;
}

/* レスポンシブ調整（スマホ対応） */
@media screen and (max-width: 768px) {
  .faq-question { font-size: 15px; padding: 18px 50px 18px 40px; }
  .faq-question::before { left: 15px; top: 18px; }
  .faq-answer-inner { padding: 20px 20px 20px 40px; font-size: 14px; }
  .faq-answer-inner::before { left: 15px; top: 20px; }
  .faq-icon { right: 18px; }
}