/* ── BREADCRUMBS ── */
.breadcrumbs {
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 40px 0;
}

.breadcrumbs__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  font-family: var(--font, 'Barlow Condensed', sans-serif);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted, #666);
}

.breadcrumbs__item + .breadcrumbs__item::before {
  content: '/';
  margin-right: 8px;
}

.breadcrumbs__link {
  color: var(--fg-muted, #666);
  text-decoration: none;
}

.breadcrumbs__link:hover {
  color: var(--fg, #1a1a1a);
}

.breadcrumbs__current {
  color: var(--fg-muted, #666);
  opacity: 0.6;
}

/* ── FAQ PAGE ── */

.faq-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 120px;
}

.page-header {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: var(--font, 'Barlow Condensed', sans-serif);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 12px;
}

.page-desc {
  font-family: var(--font-jp, 'M PLUS 1p', sans-serif);
  font-size: 15px;
  color: var(--fg-muted, #666);
  line-height: 1.75;
}

.faq-content {
  padding-top: 40px;
}

.faq-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.faq-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-section h2 {
  font-family: var(--font, 'Barlow Condensed', sans-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.4;
}

.faq-section p {
  font-size: 15px;
  color: var(--fg-muted, #666);
  line-height: 1.8;
  margin-bottom: 12px;
}

.faq-section ol,
.faq-section ul {
  margin: 12px 0 12px 20px;
  font-size: 15px;
  color: var(--fg-muted, #666);
  line-height: 1.8;
}

.faq-section li {
  margin-bottom: 8px;
}

.faq-summary {
  background: rgba(232, 255, 71, 0.08);
  padding: 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-bottom: 0;
  overflow: visible;
}

.faq-summary h2 {
  margin-bottom: 16px;
}

.faq-summary p {
  margin-bottom: 12px;
}

.faq-summary p:last-of-type {
  margin-bottom: 0;
}

.faq-summary ul {
  margin: 12px 0 12px 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 10px 20px 0;
  }

  .faq-main {
    padding: 0 20px 80px;
  }

  .page-header {
    padding: 40px 0 32px;
  }

  .faq-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .faq-summary {
    padding: 20px;
  }
}

@media (max-width: 375px) {
  .faq-main {
    padding: 0 16px 64px;
  }

  .page-title {
    font-size: 28px;
  }

  .faq-section h2 {
    font-size: 18px;
  }

  .faq-section p,
  .faq-section ol,
  .faq-section ul {
    font-size: 14px;
  }
}
