@charset "UTF-8";

/* Hero */
.page-hero {
  position: relative;
  isolation: isolate;
  padding: 88px 0 92px;
  border-bottom: 1px solid var(--color-line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.72), rgba(255,255,255,.9)),
    linear-gradient(90deg, rgba(17,17,17,.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17,17,17,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17,17,17,.04) 1px, transparent 1px),
    linear-gradient(105deg, transparent 0 62%, rgba(17,17,17,.065) 62.15%, transparent 62.3%),
    #fff;
  background-size: auto, 28px 28px, 28px 28px, 7px 7px, 7px 7px, auto, auto;
  background-position: center;
  pointer-events: none;
}

.faq-hero-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 64px;
  align-items: stretch;
}

.faq-hero-card {
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-subtle);
  background: #fff;
}

.faq-hero-card .section-label {
  margin-bottom: 0;
}

.faq-hero-card .hero-card-title {
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.35;
  letter-spacing: .055em;
  font-weight: 500;
}

.faq-hero-copy {
  align-self: center;
  max-width: 680px;
  text-shadow: var(--text-glow);
}

.faq-hero-copy h1 {
  margin-bottom: 28px;
  white-space: nowrap;
}

.faq-hero-copy p {
  max-width: 680px;
  line-height: 1.95;
}

/* FAQ */
.faq-section {
  padding: 72px 0;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--color-line);
}

.faq-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--color-line);
}

.faq-question,
.faq-answer {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
}

.faq-answer {
  margin-top: 16px;
}

.faq-question span,
.faq-answer span {
  color: #aaa;
  font-family: var(--font-en);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .16em;
  font-weight: 500;
}

.faq-question h2 {
  color: #111;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .07em;
  font-weight: 500;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.faq-answer p {
  color: #555;
  font-size: 12.5px;
  line-height: 2;
}

@media (min-width: 901px) and (max-width: 1120px) {
  .faq-hero-grid {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 52px;
  }

  .faq-hero-card {
    min-height: 204px;
    padding: 24px;
  }

  .faq-hero-copy h1 {
    font-size: clamp(29px, 3.5vw, 42px);
    letter-spacing: .04em;
  }

  .faq-hero-copy p,
  .faq-answer p {
    font-size: 11.8px;
    line-height: 1.95;
  }
}

@media (max-width: 900px) {
  .page-hero {
    padding: 64px 0 60px;
  }

  .faq-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-hero-card {
    min-height: 160px;
    padding: 26px;
  }

  .faq-hero-copy h1 {
    font-size: clamp(27px, 5.4vw, 42px);
    letter-spacing: .04em;
    white-space: normal;
  }

  .faq-section {
    padding: 56px 0;
  }

  .faq-item {
    padding: 26px 0;
  }

  .faq-question,
  .faq-answer {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .page-hero {
    padding: 56px 0 52px;
  }

  .faq-hero-card {
    min-height: 140px;
    padding: 24px;
  }

  .faq-question,
  .faq-answer {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq-answer {
    margin-top: 18px;
  }

  .faq-question h2 {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: .04em;
    word-break: normal;
  }

  .faq-answer p {
    font-size: 11.8px;
    line-height: 1.9;
  }
}
