@charset "utf-8";

.faq-list {
  border-top: 1px dashed #333;
}

.faq-list-item {
  border-bottom: 1px dashed #333;
}

.faq-list-a {
  display: none;
  line-height: calc(28 / 16);
}
@media screen and (max-width: 768px) {
  .faq-list-a {
    font-size: 1.4rem;
  }
}

.faq-list-a-inner {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0 20px;
  padding: 30px 30px 40px 20px;
}
@media screen and (max-width: 768px) {
  .faq-list-a-inner {
    grid-template-columns: 38px 1fr;
    padding: 15px 10px 20px;
  }
}

.faq-list-a-body {
  padding: 7px 0 0;
}

.faq-list-btn {
  display: grid;
  grid-template-columns: auto 1fr 28px;
  gap: 0 20px;
  width: 100%;
  font-size: 2.2rem;
  font-weight: bold;
  color: #ff8f1c;
  line-height: calc(36 / 22);
  background: #fbf8f0;
  padding: 25px 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .faq-list-btn {
    grid-template-columns: 38px 1fr 28px;
    font-size: 1.7rem;
    padding: 15px 10px;
  }
}
.--administration .faq-list-btn {
  grid-template-columns: 57px 1fr 28px;
  color: #485cc7;
  background-color: #d1d6ec;
}
@media screen and (max-width: 768px) {
  .faq-list-btn {
    grid-template-columns: 38px 1fr 28px;
  }
}

.faq-list-btn-q {
  display: grid;
  justify-items: center;
  height: 42px;
  font-size: 2.4rem;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  border-radius: 6px;
  background: #ff8f1c;
  padding: 6px 6px 0;
}
@media screen and (max-width: 768px) {
  .faq-list-btn-q {
    height: 38px;
    font-size: 1.9rem;
  }
}
.--administration .faq-list-btn-q {
  background-color: #485cc7;
}

.faq-list-btn-a {
  display: grid;
  justify-items: center;
  height: 42px;
  font-size: 2.4rem;
  color: #ff8f1c;
  line-height: 1;
  border-radius: 6px;
  border: 1px solid #ff8f1c;
  padding: 6px 0 0;
}
@media screen and (max-width: 768px) {
  .faq-list-btn-a {
    height: 38px;
    font-size: 1.9rem;
  }
}
.--administration .faq-list-btn-a {
  color: #485cc7;
  border-color: #485cc7;
}

.faq-list-a-note {
  display: block;
  font-size: 1.2rem;
  margin: 20px 0 0;
}

.faq-list-btn-icon {
  align-self: center;
  height: 28px;
  border-radius: 50%;
  background: #ff8f1c;
  position: relative;
}
.--administration .faq-list-btn-icon {
  background-color: #485cc7;
}
.faq-list-btn-icon::before,
.faq-list-btn-icon::after {
  content: "";
  background: #fff;
  position: absolute;
  inset: 0;
  margin: auto;
}
.faq-list-btn-icon::before {
  width: 14px;
  height: 2px;
}
.faq-list-btn-icon::after {
  width: 2px;
  height: 14px;
}
.is-open .faq-list-btn-icon::after {
  display: none;
}
