@charset "UTF-8";
.accordion-title {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin: 5px 0;
  background-color: #00b191;
  color: #ffffff;
  font-weight: 900;
}

.accordion-title .title {
  width: 100%;
}

.accordion-title .arrow {
  transition: transform 0.4s ease;
}

.accshow {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  margin-bottom: 5px;
  padding: 0 0px;
}

/* タイトルに open クラスが付くと矢印が回転 */
.accshow.open {
  margin-bottom: 30px;
}

.accordion-title.open .arrow {
  transform: rotate(90deg);
}

.list2 h3 {
  margin-bottom: 10px;
  border-bottom: none !important;
  background: none;
  padding: 0 0;
}/*# sourceMappingURL=style.css.map */