@charset "UTF-8";
.faq .anc_link {
  gap: 0 3%;
  margin-bottom: 5rem;
}
.faq .anc_link li {
  flex: 1;
}
.faq .anc_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 0.9em 1em;
  border: none;
  background-color: #fff;
  color: var(--primary-color);
  font-size: 1em;
}
.faq .anc_link a::before {
  position: absolute;
  transform: skewX(-25deg);
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color);
  content: "";
}

.faq_list {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #d6dde3;
}
.faq_list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 1em 1em 2em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}
.faq_list summary::before,
.faq_list summary .faq_list p::before {
  position: absolute;
  left: 0;
  font-weight: 600;
  font-size: 1.6em;
}
.faq_list summary::before {
  color: var(--primary-color);
  content: "Q";
}
.faq_list summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.5s;
}
.faq_list p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 1em 1em 2em;
  color: #333;
  transition: transform 0.5s, opacity 0.5s;
}
.faq_list p::before {
  color: #722b2b;
  line-height: 1.2;
  content: "A：";
  transition: 0.5s;
}

.faq_list[open] summary::after {
  transform: rotate(225deg);
}

.faq_list[open] p {
  transform: none;
  opacity: 1;
}

.faq__block {
  margin-bottom: 3.5rem;
}

@media (max-width: 568px) {
  .faq .anc_link {
    flex-direction: column;
    gap: 2rem 0;
  }
  .faq_list summary::after {
    width: 9px;
    height: 7px;
  }
}/*# sourceMappingURL=faq.css.map */