.table-contents .box-anchor{
  margin-top: 20px;
}
.table-contents .box-anchor ol li{
  list-style-type: none;
}
.table-contents .box-anchor {
  background: #f8f8f8;
  border-radius: 1.5rem;
  border: 1px solid #EFEFEF;
  padding: 2rem;
  position: relative;
}
.table-contents .box-anchor:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #fff, transparent);
}
.table-contents .box-anchor.is-active:after {
  display: none;
}
@media (min-width: 767px) {
  .table-contents .box-anchor {
    padding:20px;
  }
}
.table-contents .box-anchor__ttl {
  color: #0068FF;
  font-weight: 600;
  font-size: 18px;
  background: url(ic_list.svg) no-repeat left center;
  padding-left:40px;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
@media (min-width: 767px) {
  .table-contents .box-anchor__ttl {
    font-size: 20px;
  }
}
.table-contents .box-anchor__ttl:after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(ic_down.svg) no-repeat top center;
  background-size: contain;
  width:14px;
  height:14px;
  transition: all 0.3s;
}
.table-contents .box-anchor__ttl.is-active:after {
  transform: translateY(-50%) rotate(-180deg);
}
.table-contents .box-anchor__lst {
  margin-top: 15px;
  max-height: 150px;
  overflow: hidden;
  padding-left:35px;
}

.table-contents .box-anchor__lst.show {
  max-height: 100%;
}
.table-contents .box-anchor__lst li {
  margin-bottom: 0.5rem;
}
.table-contents .box-anchor__lst li a {
  font-size: 14px;
  line-height: 1.4444444444;
  font-weight: 600;
}
@media (min-width: 767px) {
  .table-contents .box-anchor__lst li a {
    font-size: 14px;
  }
}
.table-contents .box-anchor__lst li a:hover{
  color: #0068FF;
}
.table-contents .box-anchor__lst li ol {
  margin: 7px 12px;
}

.table-contents .box-anchor__lst li ol li a {
  display: block;
  font-weight: normal;
  line-height: 1.7777777778;
}
@media (max-width: 766px) {
  .table-contents .box-anchor__lst li ol li a {
    font-size: 15px;
  }
}
.table-contents .box-anchor .load-more {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.table-contents .box-anchor .load-more .btn-more {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #0068FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border-radius: 3.5rem;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.table-contents .box-anchor .load-more .btn-more:hover {
  background: #ff7200;
  color: #fff;
}
.table-contents .num-circle {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background-color: #0068FF;
    color: #FFF;
    font-weight: bold;
    margin-right: 8px;
}