@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
/* レイアウト */
.help-container {
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
}

/* トップ */
.help-top {
  padding: 2rem 0 1rem;
  background: #f7f8fa;
}
.help-top__title {
  margin: 0 0 0.25rem;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.25;
}
.help-top__lead {
  margin: 0;
  color: #667085;
}

.c-section {
  padding: 1.25rem 0 1.5rem;
}
.c-section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(18px, 2.4vw, 22px);
}

/* アコーディオン（details/summary） */
.c-accordion {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.c-accordion__summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1rem 3rem 1rem 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-accordion__summary::-webkit-details-marker {
  display: none;
}
.c-accordion__summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: #667085;
}
.c-accordion[open] .c-accordion__summary::after {
  content: "–";
}
.c-accordion__panel {
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid #e5e7eb;
  color: #1b1f24;
}

/* お問い合わせCTA（モバイル sticky） */
.c-cta {
  border-top: 1px solid #e5e7eb;
}
.c-cta__inner {
  padding: 1.5rem 0 2rem;
  display: grid;
  gap: 0.5rem;
}
.c-cta__title {
  margin: 0;
}
.c-cta__text {
  margin: 0 0 0.5rem;
  color: #667085;
}
.c-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  background: #1b1f24;
  color: #fff;
}

@media (max-width: 750px) {
  .c-cta__inner {
    background: #fff;
    padding: 0.75rem 0 1rem;
  }
}/*# sourceMappingURL=help.css.map */