@charset "UTF-8";
#asct{
    width: 100%;
    margin: 0;
    padding: 200px 0 100px;
    background: var(--base);
}
@media screen and (max-width: 1000px) {
    #asct {
        padding: 100px 0 40px;
    }
}
/*==============
    asct
===============*/
#asct h5 {
    font-family: var(--ja);
    color: #fff;
    font-size: var(--font-size-lg);
    padding: 14px;
    margin-bottom: 19px;
    line-height: 1.8;
    font-weight: bold;
    background: var(--main);
    margin-top: 80px;
}
#asct .container {
    width: 100%;
}
#asct .container dl {
    display: flex;
    padding: 24px 15px;
    border-bottom: 1px solid #e0e0e0;
}
#asct .container dl:last-child {
    border-bottom: none;
}
#asct .container dl dt {
    width: 25%;
    font-weight: bold;
    font-size: var(--font-size-lg);
}
#asct .container dl dd {
    width: 75%;
    line-height: 1.8;
    font-size: var(--font-size-md);
}
#asct .container dl dd a {
    text-decoration: underline;
    transition: 0.4s all;
    color: var(--accent);
}
#asct .container dl dd a:hover {
    opacity: 0.5;
}
@media screen and (max-width: 768px) {
    #asct .container dl {
        display: block;
    }
    #asct .container dl dt {
        width: 100%;
        margin-bottom: 5px;
    }
    #asct .container dl dd {
        width: 100%;
        margin: 0;
    }
    #asct h5 {
        padding: 8px;
        margin-top: 40px;
    }
}