html, body {
    scroll-behavior: smooth;
}
.table-contents{
    background: #F9F9F9;
    border-radius: 8px;
    padding: 30px 32px 30px 30px;
    margin-top: 72px;
}
.table-contents--title a::before{
    content: "\e00d";
    font-family: "Iconly";
    font-size: 16px;
    margin-right: 6px;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    vertical-align: text-bottom;
}
.table-contents--title a.collapsed::before{
    transform: rotate(-90deg);
}
.table-contents--title > a{
    text-decoration: none;
    color: var(--color-body);
    font-weight: 700;
    display: inline-flex;
}
.table-contents--title{
    margin-bottom: 0;
    font-size: 18px;
    line-height: 26px;
}
.table-contents--list{
    padding-left: 24px;
    margin-top: 12px;
}
.table-contents--list ul{
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}
.table-contents--list li{
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}
.table-contents--list li a{
    text-decoration: none;
}
.table-contents--list li a:hover{
    text-decoration: underline;
}
.table-contents--list ul li:not(:last-child){
    margin-bottom: 6px;
}

@media (max-width: 767px) {
    .table-contents{
        padding: 15px 15px 15px 17px;
    }
    .table-contents--list{
        margin-top: 16px;
    }
    .table-contents--list ul{
        margin-bottom: 0;
    }
}