#mokuji,
#mokuji-cat {
  line-height: 1.25;
  width: 100%;
  max-width: 700px;
  margin: 2rem auto 3rem;
}

@media (max-width: 540px) {

  #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 20px 10px 10px;
  background: #1e73be;
  cursor: pointer;
}

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

#mokuji .mokuji-plus {
  display: block !important;
  height: 100%;
  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: 20px;
  aspect-ratio: 1 / 1;
}

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

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


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

#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;
  text-decoration: none;
}

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

#mokuji .mokuji-h2,
#mokuji .mokuji-h3 {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  position: relative;
  user-select: none;
  margin-top: .7em;
}

#mokuji .mokuji-h3 {
  gap: 8px;
}

#mokuji .mokuji-h2 {
  text-indent: 0;
}

#mokuji .mokuji-h3 {
  margin-left: 20px;
  text-indent: 0;
}

#mokuji .mokuji-h2:before {
  counter-increment: counter;
  content: counter(counter) ". ";
  margin-right: .2em;
}

#mokuji .mokuji-h3:before {
  content: "";
  width: 5px;
  margin-top: 11px;
  aspect-ratio: 1 / 1;
  background: #000;
  border-radius: 50%;
}

@media screen and (max-width: 750px) {

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


  #mokuji .mokuji-h3:before {
    margin-top: 8px;
  }
}