@charset "UTF-8";
/* ============================================ */
/* requirements-flow-faq
/* ============================================ */
/* ===== requirements ===== */
#requirements {
  padding: 80px 0 150px;
}
#requirements .table {
  margin: 100px 0 0;
}

@media screen and (max-width: 768px) {
  #requirements {
    padding: 60px 0 80px;
  }
  #requirements .table {
    margin: 30px 0 0;
  }
}
/* ===== flow ===== */
#flow {
  padding: 100px 0 140px;
}
#flow .flow-list .item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  background: var(--color-white);
  padding: 1em 1.5em;
  border-radius: 10px;
}
#flow .flow-list .item + .item {
  margin: 5px 0 0;
}
#flow .flow-list .item.red {
  background: var(--color-red);
  color: var(--color-white);
}
#flow .flow-list .item.beige {
  background: var(--color-beige);
}
#flow .flow-list .item .number {
  width: 110px;
  margin: 0 20px 15px 0;
}
#flow .flow-list .item .name {
  width: 12em;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
#flow .entry {
  display: flex;
  position: absolute;
  right: 1.5em;
}
#flow .entry .text {
  max-width: 55px;
  margin: 0 10px 0;
}
#flow .entry .icon-arrow {
  stroke: var(--color-white);
}

@media screen and (max-width: 768px) {
  #flow {
    padding: 60px 0 80px;
  }
  #flow .flow-list .item {
    padding: 1em 1.2em;
  }
  #flow .flow-list .item .number {
    width: 80px;
    margin: 0 15px 15px 0;
  }
  #flow .flow-list .item .name {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  #flow .flow-list .item .number {
    width: 100%;
    margin: 0 15px 10px 0;
  }
  #flow .flow-list .item .number img {
    width: 80px;
  }
  #flow .flow-list .item .name {
    font-size: 16px;
    font-size: 1rem;
    width: 100%;
  }
}
/* ===== faq ===== */
#faq {
  padding: 120px 0 140px;
}

@media screen and (max-width: 768px) {
  #faq {
    padding: 70px 0 50px;
  }
}
/* アコーディオン */
.accordion dl {
  background-color: var(--color-white);
  border-radius: 10px;
  border: solid 1px var(--color-red);
}
.accordion dl + dl {
  margin: 10px 0 0;
}
.accordion dl.open dt .more::before {
  background: url(../img/information/requirements-flow-faq/close.svg) no-repeat;
  background-position: right;
}
.accordion dl.open dt .more::after {
  transform: translateY(-50%) rotate(180deg);
}
.accordion dt p,
.accordion dd p {
  position: relative;
}
.accordion dt p::before,
.accordion dd p::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -50px;
  display: inline-block;
  margin-right: 0.6em;
  background: url(../img/information/requirements-flow-faq/faq_q.svg) no-repeat;
  background-size: contain;
  width: 31px;
  height: 24px;
}
.accordion dt {
  position: relative;
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 20px 170px 20px 90px;
  font-weight: 500;
  line-height: 1.5;
}
.accordion dt p::before {
  background: url(../img/information/requirements-flow-faq/faq_q.svg) no-repeat;
  background-size: contain;
}
.accordion dt .more {
  position: absolute;
  top: 32px;
  right: 45px;
  display: block;
}
.accordion dt .more::before, .accordion dt .more::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.accordion dt .more::before {
  background: url(../img/information/requirements-flow-faq/vewmore.svg) no-repeat;
  background-size: contain;
  background-position: right;
  width: 94px;
  height: 11px;
  right: 25px;
}
.accordion dt .more::after {
  background: url(../img/information/requirements-flow-faq/arrow_down.svg) no-repeat;
  width: 15px;
  height: 13px;
  right: 0;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.5s;
}
.accordion dd {
  position: relative;
  display: none;
  padding: 20px 170px 40px 90px;
  line-height: 2;
}
.accordion dd p::before {
  background: url(../img/information/requirements-flow-faq/faq_a.svg) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .accordion dd,
.accordion dt {
    padding: 15px 45px 15px 50px;
  }
  .accordion dd p::before,
.accordion dt p::before {
    left: -35px;
    width: 25px;
    height: 19px;
  }
  .accordion dt {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .accordion dt .more {
    top: 20px;
    right: 18px;
    width: 10px;
    height: 12px;
  }
  .accordion dt .more::before {
    display: none;
  }
}

/*# sourceMappingURL=requirements-flow-faq.css.map */