/*==================================================
sp pc
==================================================*/
@media all and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media all and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/*--------------------------------------
faq
----------------------------------------*/
.faqs {
  display: grid;
  gap: 4rem;
  margin: 6rem auto 0;
  max-width: 90rem;
}

.faq__head {
  display: flex;
  gap: 1.6rem;
  position: relative;
  padding-left: 4rem;
}
@media (hover: hover) and (pointer: fine) {
  .faq__head {
    transition: opacity 0.3s;
  }
  .faq__head:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
.faq__head::before {
  content: "Q";
  font-size: 3.2rem;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 1.5rem;
}
@media all and (max-width: 768px) {
  .faq__head::before {
    font-size: 2.8rem;
    top: 0;
  }
}
.faq__head.is-open .faq__toggle::before {
  opacity: 0;
}
.faq__head.is-open .faq__toggle::after {
  transform: rotate(0deg);
}
.faq__ttl {
  flex: 1;
  font-size: 2.4rem;
  font-weight: var(--font-weight-base);
  letter-spacing: 0.05em;
  line-height: 1.45;
  margin-top: 1.5rem;
}
@media all and (max-width: 768px) {
  .faq__ttl {
    font-size: 2rem;
    margin-top: 0;
  }
}
.faq__toggle {
  background-color: var(--gray-lt);
  border-radius: 50%;
  display: block;
  height: 6rem;
  position: relative;
  width: 6rem;
}
@media all and (max-width: 768px) {
  .faq__toggle {
    height: 4rem;
    width: 4rem;
  }
}
.faq__toggle::before, .faq__toggle::after {
  background-color: var(--main-color);
  border-radius: 10rem;
  bottom: 0;
  content: "";
  display: block;
  height: 0.2rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 2.4rem;
}
@media all and (max-width: 768px) {
  .faq__toggle::before, .faq__toggle::after {
    width: 1.2rem;
  }
}
.faq__toggle::before {
  transition: opacity 0.3s;
}
.faq__toggle::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.faq__body {
  display: none;
}
.faq__txt {
  border-left: 0.2rem solid var(--gray-lt);
  color: var(--red);
  display: flex;
  gap: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.94;
  margin-top: 2rem;
  padding: 1.5rem 0 1.5rem 2.4rem;
}
@media all and (max-width: 768px) {
  .faq__txt {
    padding-left: 2rem;
  }
}
.faq__txt::before {
  content: "A";
  flex-shrink: 0;
  font-size: 3.2rem;
  line-height: 1;
}
@media all and (max-width: 768px) {
  .faq__txt::before {
    font-size: 2.8rem;
  }
}