.banner_faq {
  padding: 3rem 0;
  padding-bottom: 0rem;
  background-color: var(--section-color);
}
.banner_faq_text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-bottom: 5rem;
}
.banner_faq_text h2 {
  font-family: "Poetsen One", display;
  font-size: clamp(2.2rem, 5vw, 4rem);
  display: block;
  text-align: center;
  width: 100%;
  color: var(--red-color);
  margin: 0 0 1rem 0;
}
.banner_faq_text h2 a {
  color: var(--red-color);
  text-decoration: none;
}
.banner_faq_text ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1024px;
  gap: 1rem 2rem;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.banner_faq_text ul li {
  list-style-type: none;
}
.banner_faq_text ul li details {
  border-radius: 10px;
  border: 1px dashed var(--border-color);
  background-color: var(--text-color-invert);
  padding: 1.5rem;
  width: calc(100% - 3rem);
}
.banner_faq_text ul li details summary {
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}
.banner_faq_text ul li details summary svg {
  transition: transform 0.2s ease-in-out;
}
.banner_faq_text ul li details[open] summary svg {
  transform: rotate(180deg);
  transition: transform 0.2s ease-in-out;
}
.banner_faq_text ul li details p {
  font-weight: normal;
  font-size: 1rem;
}
@media only screen and (max-width: 900px) {
  .banner_faq_text ul {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 640px) {
  .banner_faq {
    background-size: 100% auto;
  }
  .banner_faq_item img {
    max-width: 100%;
  }
}
