main {
  padding-top: 0;
  background-color: #FDF1E4;
}

.pageTtl {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .pageTtl .inner {
    max-width: 1120px;
  }
}
@media screen and (min-width: 1024px) {
  .pageTtl {
    padding: 32px 0;
    margin-bottom: 90px;
  }
}

.contentBody {
  padding-bottom: 60px;
}
.contentBody__ttl {
  margin-bottom: 45px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .contentBody {
    padding-bottom: 120px;
  }
  .contentBody__ttl {
    margin-bottom: 90px;
    font-size: 28px;
  }
}

.term {
  margin-bottom: 30px;
  font-size: 14px;
  display: grid;
  grid-gap: 50px;
  counter-reset: term 0;
}
.term li {
  position: relative;
}
.term li p {
  margin-bottom: 20px;
  line-height: 1.75;
}
.term__li__ttl {
  padding: 0 0 8px 25px;
  margin-bottom: 15px;
  border-bottom: 1px solid #DBDBDB;
  font-size: 18px;
  font-weight: 500;
}
.term__li__ttl::before {
  counter-increment: term 1;
  content: counter(term) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.term__list {
  counter-reset: term_list 0;
}
.term__list > li {
  padding-left: 20px;
  line-height: 1.75;
  position: relative;
}
.term__list > li::before {
  counter-increment: term_list 1;
  content: "(" counter(term_list) ")";
  position: absolute;
  top: 0;
  left: 0;
}
.term__list__list {
  counter-reset: term_list_list 0;
}
.term__list__list > li {
  padding-left: 20px;
  line-height: 1.75;
  position: relative;
}
.term__list__list > li::before {
  counter-increment: term_list_list 1;
  content: counter(term_list_list);
  width: 14px;
  height: 14px;
  border: 1px solid #333;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .term {
    margin-bottom: 50px;
    font-size: 16px;
  }
  .term__li__ttl {
    padding: 0 0 10px 40px;
    margin-bottom: 20px;
    font-size: 24px;
  }
  .term__list > li {
    padding-left: 40px;
  }
  .term__list > li::before {
    left: 10px;
  }
  .term__list__list > li::before {
    width: 16px;
    height: 16px;
    top: 7px;
  }
}

.inquiry {
  line-height: 1.75;
}
.inquiry .ttl {
  margin-bottom: 10px;
  font-weight: 500;
}

.log {
  margin-top: 10px;
  line-height: 1.75;
}
.log ul {
  width: 100%;
  text-align: right;
}