@charset "UTF-8";
.p-faq {
  padding: 60px 16px;
}
@media screen and (min-width: 821px) {
  .p-faq {
    padding: 100px 10px;
  }
}

@media screen and (min-width: 821px) {
  .faq-container {
    display: flex;
    justify-content: space-between;
  }
}

.faq-links {
  margin-bottom: 30px;
}
@media screen and (min-width: 821px) {
  .faq-links {
    width: 380px;
    flex-shrink: 0;
    margin-right: 80px;
  }
}
.faq-links ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.faq-links ul li {
  width: 48%;
  border-bottom: 1px dashed #e6e6e6;
  margin-bottom: 1em;
  padding-bottom: 1em;
}
@media screen and (min-width: 821px) {
  .faq-links ul li {
    width: 100%;
  }
}
.faq-links ul li a {
  display: block;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 821px) {
  .faq-links ul li a {
    font-size: 22px;
    transition: color 0.3s ease;
  }
  .faq-links ul li a:hover {
    color: #ce4170;
  }
}
.faq-links ul li a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: relative;
  border-bottom: 1px solid #ce4170;
  border-right: 1px solid #ce4170;
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translate(0, -50%) rotate(45deg);
}
@media screen and (min-width: 821px) {
  .faq-links ul li a::before {
    transform: translate(0, -50%) rotate(-45deg);
    top: 50%;
  }
}

@media screen and (min-width: 821px) {
  .faq-contents {
    width: calc(100% - 320px - 60px);
  }
}
@media screen and (min-width: 821px) {
  .faq-contents .c-ttl02 span {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

/* アコーディオンスタイル */
.faq-accordion {
  margin-top: 20px;
}

.faq-accordion__item {
  margin-bottom: 16px;
}
@media screen and (min-width: 821px) {
  .faq-accordion__item {
    margin-bottom: 20px;
  }
}
.faq-accordion__item.active .faq-accordion__question .faq-accordion__toggle {
  transform: rotate(225deg) translate(0, -50%);
  top: 20%;
}

.faq-accordion__question {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  padding-bottom: 1em;
  margin-bottom: 0.3em;
  border-bottom: 1px solid #e6e6e6;
  padding-right: 26px;
  line-height: 1.3;
}

.faq-accordion__question h3 {
  margin: 0 0 0 10px;
  flex-grow: 1;
  color: #d99ca2;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (min-width: 821px) {
  .faq-accordion__question h3 {
    font-size: 22px;
  }
}

.faq-icon {
  font-weight: bold;
  color: #ce4170;
  font-size: 18px;
  font-family: "Lexend", sans-serif;
  margin-top: 0px;
}
@media screen and (min-width: 821px) {
  .faq-icon {
    font-size: 22px;
  }
}

.faq-accordion__toggle {
  width: 8px;
  height: 8px;
  position: relative;
  border-bottom: 1px solid #ce4170;
  border-right: 1px solid #ce4170;
  position: absolute;
  top: 30%;
  transform: translate(0, -50%) rotate(45deg);
  right: 10px;
}
@media screen and (min-width: 821px) {
  .faq-accordion__toggle {
    width: 10px;
    height: 10px;
  }
}

.faq-accordion__answer {
  display: flex;
  display: none;
}
/*# sourceMappingURL=faq.css.map */