/* ================================
   転職支援サービス利用規約ページ
================================ */

.cf-terms-of-service-main {
  padding-bottom: var(--spacing-1xl);
}
.cf-terms-of-service-main h2 {
  font-size: var(--font-size-5);
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-bottom: 16px;              /* 罫線と文字の間に余白をつける */
  margin-bottom: 16px;
  border-bottom: 1px solid #ccc;    /* 下線 */
}

.cf-terms-of-service-main h3 {
  margin-bottom: 16px;
  margin-top: var(--spacing-xl);
}

.cf-terms-of-service-main p,
.cf-terms-of-service-main dd,
.cf-terms-of-service-main li {
  text-align: justify;
  line-height: 1.8;
}

.cf-terms-of-service-main ol,
.cf-terms-of-service-main ul,
.cf-terms-of-service-main dl {
  margin-top: 16px;
  margin-bottom: 24px;
}
.cf-terms-of-service-main ol,
.cf-terms-of-service-main ul {
  padding-left: 1.5em;
}
.cf-terms-of-service-main dt {
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 8px;
}

.cf-terms-of-service-main li {
  position: relative;
}
.cf-terms-of-service-main li:before {
  content: "";
  height: 4px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  left: -0.75em;
  top: calc(0.5lh - 2px);
  width: 4px;
}


/* 各項目番号（例: 1. (定義)）を強調 */
.cf-terms-of-service-main p:nth-child(n) {
  text-indent: 0;
}

@media screen and (max-width: 960px) {
  .cf-terms-of-service-main {
    font-size: var(--font-size-9);
  }
  .cf-terms-of-service-main h2 {
    font-size: var(--font-size-7);
  }
  
}


.alpha-list {
  counter-reset: section;
}
.alpha-list li {
  counter-increment: section;
}
.alpha-list li:before {
  content: counter(section, lower-alpha) ".";
  counter-increment: item;
  left: -1em;
  top: 0;
  background: none;
} 
