@charset "utf-8";

.accordion-container {
  margin: 0 auto 0;
  max-width: 300px;
  width: 100%;
}

.accordion-list:not(:first-child) {
  margin-top: 10px;
}

.accordion-title-top {
  background: #eaeaea;				/* メニュー背景色 */
  cursor: pointer;
  font-size: 16px;
  padding: 5px 10px;				/* 上下はメニューの高さ */
  position: relative;
}

.accordion-title {
  background: #eaeaea;				/* メニュー背景色 */
  cursor: pointer;
  font-size: 16px;
  padding: 5px 10px;				/* 上下はメニューの高さ */
  position: relative;
  margin-bottom:0px;				/* メニューと子メニューの間隔 */
  color: #333;
}
.accordion-title:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #333;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.accordion-title:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #333;
  transition: all .3s ease-in-out;
}

.accordion-title.open:before {
  transform: rotate(180deg);
}
.accordion-title.open:after {
  opacity: 0;
}

.accordion-text {
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  display: none;
  padding: 0 20px;
  line-height: 150%;
}
