.faq-intro {
  margin: 0 0 44px;
  padding: 25px 28px;
  color: #40504a;
  background: linear-gradient(110deg,#effbf6 0%,#fff 58%,#fff5f9 100%);
  border: 1px solid var(--line);
  border-left: 7px solid var(--pink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.85;
}

.faq-intro > span {
  display: block;
  margin-bottom: 5px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.faq-list {
  margin: 0;
}

.faq-accordion {
  margin: 0;
}

.faq-list > .subtitle2 {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  column-gap: 16px;
  align-items: center;
  margin: 54px 0 17px;
  padding: 0 0 14px;
  color: var(--black);
  background: transparent;
  border: 0;
  border-bottom: 3px solid var(--green);
  border-radius: 0;
  box-shadow: none;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.5;
}

.faq-list > .subtitle2:first-child { margin-top: 0; }

.faq-list > .subtitle2::before {
  padding: 8px 10px;
  color: #fff;
  background: #fb2738;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.2;
  content: "FAQ CATEGORY";
}

.faq-accordion dt {
  position: relative;
  margin: 0 0 9px;
  padding: 17px 57px 17px 64px;
  cursor: pointer;
  color: var(--black);
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(17,19,24,.04);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.7;
  transition: background-color .2s ease,border-color .2s ease;
}

.faq-accordion dt:hover,
.faq-accordion dt:focus-visible {
  background: #f8fcfa;
  border-color: rgba(17,159,48,.46);
  outline: none;
}

.faq-accordion dt::before {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding-bottom: 2px;
  color: #fff;
  background: var(--pink);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  content: "Q";
  transform: translateY(-50%);
}

.faq-accordion dt::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 25px;
  height: 25px;
  background-color: var(--green);
  background-image: linear-gradient(#fff,#fff),linear-gradient(#fff,#fff);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 2px,2px 11px;
  content: "";
  transform: translateY(-50%);
  transition: background-color .2s ease,box-shadow .2s ease;
}

.faq-accordion dt.is-open {
  margin-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.faq-accordion dt.is-open::after {
  background-color: var(--green-dark);
  background-image: linear-gradient(#fff,#fff);
  background-size: 11px 2px;
  box-shadow: 0 3px 8px rgba(17,159,48,.16);
}

.faq-accordion dd {
  display: grid;
  grid-template-rows: 0fr;
  margin: 0 0 9px;
  overflow: hidden;
  opacity: 0;
  color: #425049;
  background: #f2f8f5;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  border-radius: 0 0 10px 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.95;
  transition: grid-template-rows .38s cubic-bezier(.22,.8,.24,1),opacity .24s ease,border-color .24s ease;
}

.faq-accordion dt.is-open + dd {
  grid-template-rows: 1fr;
  opacity: 1;
  border-color: var(--line);
}

.faq-detail-clip { min-height: 0; overflow: hidden; }

.faq-detail-inner {
  position: relative;
  padding: 21px 23px 24px 64px;
}

.faq-detail-inner::before {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding-bottom: 2px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  content: "A";
}

.faq-content .faq-detail-inner a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 680px) {
  .faq-intro {
    margin-bottom: 31px;
    padding: 21px 18px;
    border-left-width: 6px;
    font-size: 14px;
  }

  .faq-list > .subtitle2 {
    grid-template-columns: 1fr;
    row-gap: 8px;
    margin-top: 39px;
    padding: 0 0 11px;
    font-size: 19px;
  }

  .faq-list > .subtitle2::before { width: fit-content; padding: 6px 8px; }

  .faq-accordion dt {
    padding: 15px 47px 15px 52px;
    font-size: 14px;
  }

  .faq-accordion dt::before {
    left: 13px;
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .faq-accordion dt::after { right: 12px; }
  .faq-accordion dd { font-size: 14px; }
  .faq-detail-inner { padding: 18px 15px 21px 52px; }

  .faq-detail-inner::before {
    top: 17px;
    left: 13px;
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-accordion dt,.faq-accordion dt::after,.faq-accordion dd { transition: none; }
}
