.elementor-13 .elementor-element.elementor-element-c927be9{--display:flex;}/* Start custom CSS for html, class: .elementor-element-cc380c5 *//* 全体のフォント設定（推奨） */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1f2937; /* ダークグレー */
}

/* Q&Aセクション全体のコンテナ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* タイトル */
.faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #111;
}

/* 各Q&Aのカードスタイル */
.faq-item {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid #e5e7eb; /* 薄いグレーの境界線 */
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden; /* 角丸を保つため */
}

/* ホバー時の浮き上がりエフェクト */
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 展開時のカード */
details[open].faq-item {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
}

/* 質問部分（アコーディオンのヘッダー） */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #1e40af; /* アクセントブルー */
  cursor: pointer;
  list-style: none; /* デフォルトの三角形を消す */
  transition: background-color 0.3s ease;
}

/* 質問テキストのQを太く */
.faq-question span {
  font-weight: bold;
}

/* Safari用 デフォルトの三角形を消す */
.faq-question::-webkit-details-marker {
  display: none;
}

/* ホバー時の背景色 */
.faq-question:hover {
  background-color: #f9fafb;
}

/* 開閉アイコン（矢印） */
.faq-question::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #1e40af; /* 矢印の色 */
  border-bottom: 2px solid #1e40af; /* 矢印の色 */
  transform: rotate(45deg); /* 下向きの矢印 */
  margin-left: 20px;
  transition: transform 0.3s ease;
}

/* 開いた時のアイコン回転 */
details[open] .faq-question::after {
  transform: rotate(225deg); /* 上向きに回転 */
}

/* 回答部分 */
.faq-answer {
  padding: 0 30px 24px; /* 上パディングをなくし、質問部分との間隔を調整 */
  background-color: #fff;
  border-top: 1px solid #f3f4f6; /* 薄いグレーの境界線 */
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563; /* 少し和らげたダークグレー */
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
}

/* 展開時の回答部分のアニメーション */
details[open] .faq-answer {
  opacity: 1;
  transform: translateY(0);
  padding: 24px 30px; /* 展開時に上パディングを追加 */
}

.faq-answer p {
  margin: 0;
}

/* 回答テキストのAを太く */
.faq-answer p span.faq-a {
  font-weight: bold;
  color: #1f2937;
}

/* スマートフォン向けの調整 */
@media screen and (max-width: 600px) {
  .faq-container {
    padding: 30px 15px;
  }
  .faq-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .faq-question {
    font-size: 16px;
    padding: 20px;
  }
  .faq-answer {
    font-size: 14px;
    padding: 0 20px 20px;
  }
  details[open] .faq-answer {
    padding: 20px;
  }
}/* End custom CSS */