@charset "UTF-8";
/* ============================================ */
/* faq
/* ============================================ */
#main {
  background: var(--color-blue);
}

/* ===== section共通 ===== */
.section + .section {
  margin: 100px 0 0;
}
.section .wrap {
  padding: 0 0 0 300px;
}
.section .section-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 10em;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .section .wrap {
    padding: 0;
  }
  .section .section-title {
    position: relative;
    inset: 0;
  }
}
@media screen and (max-width: 768px) {
  .section + .section {
    margin: 60px 0 0;
  }
}
/* ===== accordion ===== */
.accordion {
  width: 100%;
}
.accordion dl {
  background: #fff;
  border-radius: 15px;
  border: solid 1px var(--color-red);
}
.accordion dl + dl {
  margin: 20px 0 0;
}
.accordion dl.open dt .more::before {
  opacity: 0;
}
.accordion dl.open dt .more::after {
  opacity: 1;
}
.accordion dt {
  position: relative;
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 20px 140px 20px 30px;
  font-weight: 500;
  color: var(--color-blue);
  line-height: 1.5;
}
.accordion dt .read-more {
  position: absolute;
  right: 30px;
  top: calc(50% + 2px);
  transform: translate(0, -50%);
}
.accordion dd {
  position: relative;
  display: none;
  padding: 25px 30px 50px;
  line-height: 2.2;
}
.accordion dd::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: calc(100% - 60px);
  height: 1px;
  background: var(--color-black);
  transform: translate(-50%, 0);
}
.accordion .open dt .read-more::before {
  -webkit-mask-image: url(../img/common/close.svg);
          mask-image: url(../img/common/close.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  -webkit-mask-size: 50% auto;
          mask-size: 50% auto;
}
.accordion .open dt .read-more::after {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .accordion dt {
    padding: 20px 130px 20px 30px;
    font-size: 16px;
    font-size: 1rem;
  }
  .accordion dt .read-more {
    right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .accordion dt {
    padding: 20px 80px 20px 30px;
  }
  .accordion dt .read-more {
    width: 50px;
  }
  .accordion dt .read-more::before {
    aspect-ratio: 1/1;
    -webkit-mask-image: url(../img/common/read-more_2line.svg);
            mask-image: url(../img/common/read-more_2line.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: 65% auto;
            mask-size: 65% auto;
  }
  .accordion dt .read-more::after {
    width: 100%;
    height: 100%;
    background: transparent;
    border: solid 1px var(--color-black);
    border-radius: 50%;
  }
  .accordion .open dt .read-more::before {
    -webkit-mask-image: url(../img/common/close.svg);
            mask-image: url(../img/common/close.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: 70% auto;
            mask-size: 70% auto;
  }
  .accordion .open dt .read-more::after {
    opacity: 1;
  }
}

/*# sourceMappingURL=faq.css.map */