@charset "UTF-8";
/*-------------------------------------------------------------------
  terms
-------------------------------------------------------------------*/
.terms {
  counter-reset: article;
}
.terms p {
  margin-bottom: 0.75em;
  line-height: 1.6;
}
.terms li {
  margin-bottom: 0.5em;
  line-height: 1.6;
  word-break: break-all;
}
.terms li > ol {
  margin-top: 0.75em;
}
.terms dl {
  margin-top: 0.5em;
}
.terms dd {
  margin-left: 1em;
}

/* 第n条 */
.article {
  counter-increment: article;
  margin-bottom: 2rem;
}
.article-title {
  font-weight: 700;
  margin-bottom: .6rem;
}
.article-title::before {
  content: "第" counter(article) "条 ";
}

/* n．（条内の箇条書き） */
.items {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  margin: .6rem 0 0 1.25rem;
}
.items > li {
  counter-increment: item;
  margin: .4rem 0 .4rem 0;
  position: relative;
  padding-left: 2.4em;
}
.items > li::before {
  content: counter(item) "．";
  position: absolute;
  left: 0;
  width: 2em;
  text-align: right;
}

/* （n）（小項目） */
.subitems {
  counter-reset: sub;
  list-style: none;
  padding-left: 0;
  margin: .3rem 0 0 0.5rem;
}
.subitems > li {
  counter-increment: sub;
  margin: .2rem 0 .2rem 0;
  position: relative;
  padding-left: 2.75em;
}
.subitems > li::before {
  content: "（" counter(sub) "）";
  position: absolute;
  left: 0;
  width: 2.4em;
  text-align: right;
}
/* disc-list */
.disc-list > li {
  list-style-type: disc;
  margin-left: 1em;
}

/* 体裁 */
.defterm {
  font-weight: 600;
}
.indent {
  text-indent: 1em;
}
.note { font-size: .9em; color: #555; }
.src { margin-top: 3rem; font-size: .85em; color: #666; }
.footnote-tag span {
  font-size: calc(var(--responsive-p-font-size)*0.9);
  margin-right: 2px;
}
/*-------------------------------------------------------------------
  pricing
-------------------------------------------------------------------*/
.registration-form {
  width: auto;
  max-width: 920px;
}
.registration-form.pricing {
  max-width: 1020px;
}
.registration-form.pricing table td .note {
  font-size: .75em;
}
.registration-form.pricing table th.note {
  font-size: .9em;
  color: var(--color-gray-50);
}
