@charset "UTF-8";
/* =========================================================
   faq.css  よくあるご質問ページ専用スタイル
   ========================================================= */

.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--cream);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  font-family: var(--font-rounded);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.6;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  flex: 0 0 auto;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: .95rem;
}
.faq-item summary::after {
  content: "";
  margin-left: auto;
  flex: 0 0 auto;
  width: 12px; height: 12px;
  border-right: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item__body {
  padding: 0 24px 22px 70px;
  animation: faq-open .3s ease;
}
.faq-item__body p { font-size: .95rem; line-height: 1.9; }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

.faq-contact {
  margin-top: clamp(36px, 6vw, 56px);
  text-align: center;
  background: var(--cream-deep);
  border-radius: var(--radius-l);
  padding: clamp(28px, 5vw, 44px);
}
.faq-contact p {
  font-family: var(--font-rounded);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.06rem;
  margin-bottom: 22px;
}
.faq-contact__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 520px) {
  .faq-item summary { padding: 16px 18px; font-size: .96rem; }
  .faq-item__body { padding: 0 18px 18px 56px; }
  .faq-contact__btns .btn { width: 100%; }
}
