#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;
  background: var(--gold);
  cursor: pointer;
}

#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: 14px 14px 20px;
  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%;
  padding: 0.5rem 1.2em;
  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 {
  position: relative;
  user-select: none;
  margin-top: .7em;
}

#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;
  top: 0;
  left: 0;
  counter-increment: counter;
  content: counter(counter) ". ";
  margin-right: .2em;
}

#mokuji .mokuji-h3 a:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: sub-counter;
  content: counter(sub-counter) ". ";
  margin-right: .2em;
}