/* フロントFAQ: CTA直下の余白 */
.front-home-faq {
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--brand-white);
}

.front-home-faq__inner {
  width: min(668px, 100%);
  margin: 0 auto;
}

.front-home-faq__title {
  font-family: var(--font-title);
  font-weight: var(--weight-mincho-regular);
  margin-bottom: 28px;
}

.front-home-faq .faq-list {
  width: 100%;
}

.front-home-faq__actions {
  margin-top: 32px;
  text-align: center;
}

.front-home-faq__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 166px;
  min-height: 44px;
  padding: 10px 24px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--brand-white);
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.5;
  transition: background 0.2s ease;
}

.front-home-faq__more::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.front-home-faq__more:hover {
  background: #fffaf2;
}

@media (min-width: 768px) {
  .front-home-faq {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .front-home-faq__title {
    font-size: 30px;
    margin-bottom: 34px;
  }

  .front-home-faq__actions {
    margin-top: 36px;
  }
}
