@charset "UTF-8";
/*-------------------------------------------------- .rules共通 --*/
.rules__wrap {
  margin-bottom: 5rem;
  /*-------------------------------------------------- introduction --*/
  /*-------------------------------------------------- rules --*/
  /*-------------------------------------------------- item_title --*/
  /*-------------------------------------------------- item_content --*/
}
@media (max-width: 768px) {
  .rules__wrap {
    margin-bottom: 3.75rem;
  }
}
.rules__wrap .rules__introduction {
  margin: 0 0 2.5rem;
  line-height: 1.6;
}
.rules__wrap .rules__title {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0 0 0 0.75rem;
  margin: 2.5rem 0 1.25rem;
  border-left: 4px solid #34353a;
}
.rules__wrap .rules__content p {
  margin-top: 1rem;
  line-height: 1.6;
}
.rules__wrap .rules__content ul {
  padding-left: 1.25rem;
}
.rules__wrap .rules__content ul li {
  line-height: 1.6;
  list-style: disc;
  margin-top: 0.5rem;
}
.rules__wrap .rules__content > ol {
  counter-reset: counter;
  margin-top: 1rem;
}
.rules__wrap .rules__content > ol li {
  line-height: 1.6;
}
.rules__wrap .rules__content > ol li ol {
  margin-top: 0.5rem;
}
.rules__wrap .rules__content > ol > li {
  margin-top: 0.5rem;
  margin-left: 2rem;
  position: relative;
}
.rules__wrap .rules__content > ol > li::before {
  position: absolute;
  display: inline-block;
  counter-increment: counter;
  content: "(" counter(counter) ")";
  left: -2rem;
}
.rules__wrap .rules__content > ol > li:not(:last-of-type) p:last-of-type {
  padding-bottom: 0.5rem;
}