@charset "UTF-8";

/**
 * terms.css
 *
 * # terms hero
 * # terms body
 *
*/

/* ==========================================================================
   # terms hero
   ========================================================================== */
.terms-head {
  padding: 60px 15px 64px;
  text-align: center;
  background-color: #10151D;
}
.terms-head-sub {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.2em;
}
.terms-head-ttl {
  font-size: 40px;
  line-height: 1.2;
}

/* ==========================================================================
   # terms body
   ========================================================================== */
.terms-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 15px 100px;
  color: #D5DBE1;
}

.terms-article + .terms-article {
  margin-top: 56px;
}

.terms-article-ttl {
  position: relative;
  margin-bottom: 24px;
  padding-left: 18px;
  color: #fff;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.terms-article-ttl:before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 4px;
  height: 1.1em;
  background: linear-gradient(to bottom, #189DEF, #C2207E);
  border-radius: 2px;
}

.terms-text {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.terms-text + .terms-text {
  margin-top: 20px;
}

/* # 条文番号付きリスト
   ------------------------------------- */
.terms-list {
  counter-reset: terms-item;
}
.terms-list > li {
  position: relative;
  padding-left: 2.2em;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.terms-list > li + li {
  margin-top: 14px;
}
.terms-list > li:before {
  counter-increment: terms-item;
  content: counter(terms-item) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #189DEF;
  font-weight: 600;
}
.terms-text + .terms-list {
  margin-top: 16px;
}
.terms-list strong {
  color: #fff;
  font-weight: 600;
}

/* # 号（サブリスト）
   ------------------------------------- */
.terms-sublist {
  margin-top: 12px;
}
.terms-sublist li {
  padding-left: 1.9em;
  text-indent: -1.9em;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.terms-sublist li + li {
  margin-top: 8px;
}

/* # 制定日
   ------------------------------------- */
.terms-date {
  margin-top: 64px;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.terms-body a {
  color: #189DEF;
}

@media screen and (max-width:500px) {

  .terms-head {
    padding: 40px 15px 44px;
  }
  .terms-head-sub {
    font-size: 13px;
  }
  .terms-head-ttl {
    font-size: 30px;
  }

  .terms-body {
    padding: 48px 15px 64px;
  }
  .terms-article + .terms-article {
    margin-top: 44px;
  }
  .terms-article-ttl {
    font-size: 19px;
  }

}
