/* ===============================================================
 accodion parts
===============================================================*/
.acc-list {
  padding: 4rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
}
@media screen and (max-width: 1100px) {
  .acc-list {
    padding: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .acc-list {
    padding: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .acc-list {
    padding: 1.5rem;
  }
}
.acc-list.open .acc-cont {
  height: auto;
  opacity: 1;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #ddd;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1100px) {
  .acc-list.open .acc-cont {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .acc-list.open .acc-cont {
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
.acc-list.open .acc-ico::after {
  transform: rotate(180deg);
}

.acc-btn {
  position: relative;
  padding-right: 3rem;
}

.acc-ico {
  position: absolute;
  width: 1.3rem;
  aspect-ratio: 1;
  top: calc(50% - 0.65rem);
  right: 1.4rem;
}
.acc-ico::before, .acc-ico::after {
  position: absolute;
  content: "";
  width: 1.3rem;
  height: 0.2rem;
  top: calc(50% - 0.1rem);
  left: calc(50% - 0.65rem);
  z-index: 1;
  background-color: #45b035;
}
.acc-ico::after {
  transform: rotate(90deg);
  transition: all 0.5s ease;
}

.acc-cont {
  height: 0;
  opacity: 0;
  transition: opacity 0s ease, height 0.5s ease;
}/*# sourceMappingURL=accodion.css.map */