/* ==========================================================================
   11  ご相談の前に、気になること。（よくある質問）   (参考画像 11)
   ========================================================================== */

.faq {
  background: var(--g-100);
}
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.faq__mark {
  display: block;
  width: 56px;
  height: 2px;
  margin-bottom: clamp(14px, 1.6vw, 22px);
  background: var(--g-900);
}
.faq__title {
  font-size: clamp(1.75rem, 0.7rem + 2.8vw, 3.5rem);
  line-height: 1.36;
  letter-spacing: 0.02em;
}
.faq__lead {
  margin-top: clamp(10px, 1.2vw, 16px);
  font-size: clamp(0.9375rem, 0.88rem + 0.3vw, 1.125rem);
  line-height: 1.85;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.faq-list {
  margin-top: clamp(16px, 2vw, 26px);
}
.faq-item {
  padding-block: clamp(14px, 1.7vw, 22px);
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  padding-top: 0;
}
.faq-q,
.faq-a {
  display: grid;
  grid-template-columns: clamp(38px, 3.6vw, 48px) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(12px, 1.4vw, 18px);
}
.faq-badge {
  display: grid;
  place-items: center;
  width: clamp(38px, 3.6vw, 48px);
  height: clamp(38px, 3.6vw, 48px);
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
  line-height: 1;
}
.faq-q .faq-badge {
  background: var(--g-900);
  color: #fff;
}
.faq-a .faq-badge {
  background: var(--g-200);
  color: var(--g-900);
}
.faq-q__text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.0625rem, 0.9rem + 0.75vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--g-950);
}
.faq-a {
  margin-top: clamp(8px, 1vw, 12px);
  align-items: start;
}
.faq-a .faq-badge {
  margin-top: 2px;
}
.faq-a__text {
  font-size: clamp(0.9375rem, 0.88rem + 0.25vw, 1.0625rem);
  line-height: 1.85;
  letter-spacing: 0.03em;
  color: var(--ink);
  padding-top: 4px;
}
.faq__foot {
  margin-top: clamp(14px, 1.8vw, 22px);
  font-size: clamp(0.9375rem, 0.88rem + 0.25vw, 1.0625rem);
  letter-spacing: 0.03em;
  color: var(--g-950);
}

/* photo */
.faq__photo {
  min-height: 460px;
  height: 100%;
}
.faq__photo .ph__body .ic {
  width: clamp(44px, 5vw, 64px);
  height: clamp(44px, 5vw, 64px);
}
.faq__hand {
  position: absolute;
  top: clamp(12px, 2.5%, 28px);
  right: clamp(12px, 3%, 24px);
  z-index: 1;
  width: 8.2em;
  font-family: var(--font-hand);
  font-size: clamp(1.25rem, 0.95rem + 0.9vw, 1.75rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--g-950);
  rotate: -7deg;
  text-align: left;
}

@media (max-width: 899px) {
  .faq__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .faq__photo {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 11;
  }
}
