@charset "UTF-8";
.bulletList {
  list-style: none;
  padding-left: 1em;
}
.bulletList li::before {
  content: "•";
  color: #262626;
  display: inline-block;
  text-indent: -1em;
}
.bulletList li > ul {
  list-style: none;
  counter-reset: isCounter;
  padding-left: 1em;
}
.bulletList li > ul > li {
  counter-increment: isCounter;
}
.bulletList li > ul > li::before {
  content: "(" counter(isCounter) ")";
}
.bulletList li > ul ul {
  list-style-type: lower-alpha;
}
.bulletList li > ul ul li::before {
  display: none;
}

.greenBulletList {
  list-style: none;
  padding-left: 1em;
}
.greenBulletList li::before {
  content: "•";
  color: #00a19b;
  display: inline-block;
  text-indent: -1em;
}
.greenBulletList li > ul {
  list-style: none;
  counter-reset: isCounter;
  padding-left: 1em;
}
.greenBulletList li > ul > li {
  counter-increment: isCounter;
}
.greenBulletList li > ul > li::before {
  content: "(" counter(isCounter) ")";
  color: #262626;
}
.greenBulletList li > ul ul {
  list-style-type: lower-alpha;
}
.greenBulletList li > ul ul li::before {
  display: none;
}

.numList {
  list-style: decimal;
  padding-left: 1em;
}
.numList li > ul {
  list-style: none;
  counter-reset: isCounter;
  text-indent: -1em;
  padding-left: 1em;
}
.numList li > ul > li {
  counter-increment: isCounter;
}
.numList li > ul > li::before {
  content: "(" counter(isCounter) ")";
}
.numList li > ul ul {
  padding-left: 1em;
  list-style-type: lower-alpha;
  text-indent: 0px;
}
.numList li > ul ul li::before {
  display: none;
}

.markList {
  list-style: none;
  padding-left: 1em;
}
.markList li::before {
  content: "※";
  color: #1c1c1c;
  list-style-position: outside;
  text-indent: -20px;
  display: inline-block;
}
.markList li ul {
  list-style: none;
  counter-reset: isCounter;
  padding-left: 1em;
}
.markList li ul li {
  counter-increment: isCounter;
}
.markList li ul li::before {
  content: "(" counter(isCounter) ")";
}
.markList li ul ul {
  list-style-type: lower-alpha;
}
.markList li ul ul li::before {
  display: none;
}

.termsList > ul > li::before {
  content: "";
}
.termsList > ul > li ul {
  list-style-type: cjk-ideographic;
  font-size: 18px;
  line-height: 2;
  padding-left: 2rem;
}
.termsList > ul > li ul > li {
  color: #00a19b;
}
.termsList > ul > li ul > li ul {
  list-style: none;
  padding-left: 0;
}
.termsList > ul > li ul > li ul li {
  counter-increment: isCounter;
  color: inherit;
  position: relative;
}
.termsList > ul > li ul > li ul li::before {
  content: "(" counter(isCounter, cjk-ideographic) ")";
  display: inline-block;
  position: absolute;
  left: -2.25rem;
}