/* ============================================================
   faq.css — よくある質問（アコーディオン）
   ============================================================ */

.faq-list{max-width:760px; margin:0 auto;}

.faq-item{
  background:var(--sky-bg);
  border-radius:var(--radius-md);
  margin-bottom:16px;
  overflow:hidden;
}
.faq-question{
  display:flex; align-items:center; gap:18px;
  padding:24px 28px;
  cursor:pointer;
  font-weight:700; font-size:19px;
  user-select:none;
}
.faq-question .q-mark{
  width:28px; height:28px; border-radius:50%;
  background:var(--blue); color:#fff;
  flex:0 0 auto;
  display:flex; align-items:center; justify-content:center;
  font-size:16px; font-weight:800;
}
.faq-arrow{margin-left:auto; transition:transform 0.3s ease; color:var(--blue); font-size:18px;}
.faq-item.open .faq-arrow{transform:rotate(180deg);}

.faq-answer{
  max-height:0; overflow:hidden; transition:max-height 0.35s ease;
  padding:0 24px;
}
.faq-answer p{
  font-size:18px; color:var(--text-sub); padding-bottom:26px; padding-left:40px;
}
