@charset "UTF-8";
/*==============
    asct
===============*/
#asct h5 {
    font-family: var(--ja);
    color: var(--black);
    font-size: 1.6rem;
    padding: 14px;
    margin-bottom: 19px;
    line-height: 1.8;
    font-weight: bold;
    background: #eee;
    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: 1.6rem;
}
#asct .container dl dd {
    width: 75%;
    line-height: 1.8;
    font-size: 1.4rem;
}
#asct .container dl dd a {
    text-decoration: underline;
    transition: 0.4s all;
}
#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%;
    }
    #asct h5 {
        font-size: 1.4rem;
        padding: 8px;
        margin-top: 40px;
    }
}