.information {
    background-color: var(--white);
    padding: 32px 5%;
}

.information .recordList {
    width: 100%;
    padding: 32px 0;
    position: relative;
    border-bottom: 1px solid var(--background-color-grey);
}

.information .recordList::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 10px;
    height: 12px;
    background-image: url(../img/rounded-triangle-right-secondary-bland-color.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}

.information .recordList--date {
    color: var(--secondary-bland-color);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6;
}

.information .recordList--title {
    color: var(--font-color-black);
    font-size: 1.5rem;
    line-height: 1.6;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .information {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .information .recordList {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .information .recordList--date {
        color: var(--secondary-bland-color);
        font-size: 1.4rem;
        font-weight: bold;
        line-height: 1.6;
    }
    
    .information .recordList--title {
        color: var(--font-color-black);
        font-size: 1.4rem;
        line-height: 1.6;
    }
}