.report-dl {
    display: grid;
    grid-template-columns: 150px 1fr;
    border: 1px solid;
    border-radius: 8px;
}

.report-dl dt {
    font-weight: bold;
    color: var(--primary-color);
    background-color: var(--bg-light);
    margin: 0;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid;
}

.report-dl dd {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0.8rem;
    border-bottom: 1px solid;
}

.report-dl dd:last-child {
    border-bottom: none;
}

.report-dl dd p {
    margin: 0;
}

.report-dl dd ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.report-dl dd ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.3rem;
}

.report-dl dd ul li:last-child {
    margin-bottom: 0;
}

.report-dl dd ul li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
}

@media (max-width: 768px) {
    .report-dl {
        grid-template-columns: 1fr;
    }

    .report-dl dt,
    .report-dl dd {
        border-bottom: none;
    }

    .report-dl> :nth-last-child(-n+2) {
        border-bottom: 1px solid;
    }
}