/* =============================================================
   交通事故治療に関するよくある質問 (一般FAQ)
   Figma: 202606_個ページ 9458:10412
   個ページ (入力済み: clinic-detail-new / 未入力: clinic-detail) 共通 (tmp/general-faq.php)
   ============================================================= */
.c-gfaq,
.c-gfaq * {
  box-sizing: border-box;
}
.c-gfaq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 12px;
  background: #fdfff7;
  border: 1px dashed #c6a33b;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
.c-gfaq__head {
  margin: 0;
  padding: 12px 0 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #ff7a00;
  text-align: center;
}

/* --- 横スクロールのカード列 --- */
.c-gfaq__track {
  display: flex;
  gap: 12px;
  align-items: stretch;
  width: 100%;
  padding: 4px 4px 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #ff9d70 #ececec;
}
.c-gfaq__track::-webkit-scrollbar {
  height: 6px;
}
.c-gfaq__track::-webkit-scrollbar-track {
  background: #ececec;
  border-radius: 999px;
}
.c-gfaq__track::-webkit-scrollbar-thumb {
  background: #ff9d70;
  border-radius: 999px;
}

/* --- カード --- */
.c-gfaq__card {
  display: flex;
  flex: 0 0 180px;
  flex-direction: column;
  align-items: flex-end;
  width: 180px;
  padding: 12px 12px 4px;
  background: #fffcf9;
  border: 2px solid #ff9d70;
  border-radius: 5px;
  box-shadow: 4px 4px 0 0 #7d3800;
  text-decoration: none;
}
.c-gfaq__card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  min-height: 82px;
}
.c-gfaq__card-ico {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.c-gfaq__card-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #5a5a5a;
  text-align: center;
  text-decoration: underline;
}
.c-gfaq__card-desc {
  width: 100%;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #636363;
}
.c-gfaq__card-arrow {
  width: 25px;
  height: 25px;
  margin-top: auto;
  transform: rotate(90deg);
}

/* --- すべて見る --- */
.c-gfaq__more {
  padding: 4px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #424242;
  text-align: center;
  text-decoration: underline;
}
