@charset "utf-8";

.faqArea {
  display: flex;
  flex-flow: column;
  gap: 40px 0;
}
.faqArea__section {
  display: flex;
  gap: 10px 40px;
}
.faqArea__title {
  width: 260px;
  margin-top: 16px;
  flex-shrink: 0;
}
.faqArea__list {
  flex: 1;
  border-bottom: 1px solid #ccc;
}
.faqArea__item {
  border-top: 1px solid #ccc;
  padding: 14px 20px;
}
.faqArea__question {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0 20px;
}
.faqArea__question::-webkit-details-marker {
  display: none;
}
.faqArea__q {
  font-family: 'Roboto', sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 400;
  color: #1DA4B4;
  flex-shrink: 0;
}
.faqArea__qtext {
  font-size: 1.6rem;
  font-weight: 700;
  flex: 1;
}
.faqArea__question::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(/assets/images/icon_ac01_open.svg) no-repeat center center;
  background-size: 20px 20px;
  margin-left: auto;
  flex-shrink: 0;
}
.faqArea__item[open] .faqArea__question::after {
  background: url(/assets/images/icon_ac01_close.svg) no-repeat center center;
  background-size: 20px 20px;
}
.faqArea__answer {
  display: flex;
  gap: 0 20px;
  border-top: 1px dashed #ccc;
  margin-top: 14px;
  padding-top: 20px;
}
.faqArea__a {
  font-family: 'Roboto', sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 400;
  color: #6795D6;
  flex-shrink: 0;
}
.faqArea__atext {
  flex: 1;
}
@media screen and (max-width: 1023px) {
  .faqArea__section {
    flex-flow: column;
  }
  .faqArea__title {
    margin-top: 0;
  }
}
