#mokuji,
#mokuji-cat {
  line-height: 1.4;
  width: 100%;
  max-width: 600px;
  margin: 4rem auto 3rem;
  border-radius: 12px;
  overflow: hidden;
}

#mokuji .mokuji-box {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: space-between;
  padding: 10px;
  background: #6cafd0;
  cursor: pointer;
}

#mokuji .mokuji-ttl {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  color: #fff;
}

#mokuji .mokuji-toggle {
  top: 50%;
  right: 24px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #fff;
  border-width: 8px;
  margin-left: -8px;
  margin-top: -3px;
  transition: 0s;
  transform: translateY(-50%) rotate(180deg);
}

#mokuji.close .mokuji-toggle {
  transform: rotate(360deg);
}

#mokuji ol {
  padding: 14px 24px 20px;
  /* counter-reset: counter; */
  list-style-type: none;
  background: #F9F9F9;
  margin-bottom: 0;
}

@media (max-width: 767px) {

  #mokuji ol {
    padding: 14px 18px 20px;
  }
}


#mokuji .mokuji-ttl {
  font-size: 1.4em;
}

#mokuji ol li a,
#mokuji-cat ol li a {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  color: inherit;
}

#mokuji ol li a:hover,
#mokuji-cat ol li a:hover {
  opacity: 0.6;
}

#mokuji .mokuji-h2,
#mokuji .mokuji-h3 {
  position: relative;
  user-select: none;
  margin-top: .7em;
  padding-left: 1.4em;
}

#mokuji .mokuji-h2 {
  /* counter-reset: sub-counter; */
  text-indent: 0;
  position: relative;
}

#mokuji .mokuji-h3 {
  margin-left: 1.5em !important;
  text-indent: 0;
  position: relative;
}

#mokuji .mokuji-h2 a:before {
  position: absolute;
  content: "";
  display: block;
  width: .6em;
  aspect-ratio: 1 / 1;
  background: #6cafd0;
  border-radius: 50%;
  top: .4em;
  left: 0;


  /* counter-increment: counter;
  content: counter(counter) ". "; */
}

#mokuji .mokuji-h3 a:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background: #929292;

  /* counter-increment: sub-counter;
  content: counter(sub-counter) ". "; */

}