@charset "UTF-8";

/* 20250725 [add] dl-list */
.system-list {
  text-align: left;
  margin: 4rem auto 5rem;
  width: 90%;
  max-width: 700px;
  display: none;
}

.system-list dt {
  font-weight: 600;
}

.system-list dd {
  margin-top: 1rem;
}

.system-box.last-box {
  @media (max-width: 640px) {
    padding-bottom: 40px;
    /* text-align: center; */
  }
}

.slide-btn-wrap {
  margin-top: 5rem;
}

.slide-btn {
  background-color: #ffac5a;
  color: #fff;
  padding: 5px 30px 5px 15px;
  position: relative;
}

.slide-btn::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 15px;
  transform: rotate(135deg);
  transition: all 0.3s ease-in-out;
}

.slide-btn.active::before {
  transform: rotate(315deg);
  transition: all 0.3s ease-in-out;
}

.system-box.last-box {
  /* padding-bottom: 0; */
}