#mokuji,
#mokuji-cat {
  line-height: 1.4;
  width: 100%;
  margin: 2rem auto 3rem;
}

@media (max-width: 768px) {

  #mokuji,
  #mokuji-cat {
    width: 100%;
    margin: 1.5rem 0 3rem 0;
  }
}

#mokuji .mokuji-box {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: space-between;
  padding: 10px;
  background: var(--pinkdark);
  cursor: pointer;
  border-radius: 0.375rem;
}

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

#mokuji .mokuji-plus {
  display: block !important;
  height: 20px;
  width: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#mokuji .mokuji-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  text-align: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

#mokuji .mokuji-plus-hidden {
  display: none;
}

#mokuji .mokuji-minus {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


#mokuji ol {
  padding: 26px;
  counter-reset: counter;
  list-style-type: none;
  background: #f6f6f6;
  margin-bottom: 0;
}

#mokuji li+li {
  margin-top: 0.8em;
}


@media (max-width: 768px) {
  #mokuji ol {
    padding: 26px 14px;
  }
}

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

#mokuji ol li a,
#mokuji-cat ol li a {
  padding-left: 4px;
  transition: 0.3s;
  color: #292929;
}

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

#mokuji .mokuji-h2,
#mokuji .mokuji-h3 {
  user-select: none;
  list-style-type: none;
}

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

#mokuji .mokuji-h2:before {
  display: inline-block;
  counter-increment: counter;
  content: counter(counter) ". ";
}

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

#mokuji .mokuji-h3:before {
  position: absolute;
  left: 0;
  top: 0.4em;
  display: inline-block;
  /* counter-increment: sub-counter;
  content: counter(sub-counter) ". "; */
  content: "";
  width: .5em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--black);
  text-align: right;
}

#mokuji .mokuji-h3 a {
  padding-left: 1em;
}