/*-------------------------
COMMENT
-------------------------*/
/* card */
.cardList {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

.cardList h2 {
    margin-bottom: 8px;
    text-align: left;
}

.cardList li {
    background-color: var(--color-white);
    width: calc(50% - 20px);
    margin-bottom: 20px;
    padding: 40px 32px;
}

.cardList li:first-child {
    margin-right: 20px;
}

.cardList picture {
    display: table-cell;
    width: 140px;
    height: auto;
    padding-right: 16px;
}

.cardList__text-area {
    text-align: left;
    display: table-cell;
    vertical-align: middle;
    width: calc(100% - 140px);
}

.cardList__text-area p {
    line-height: 1.6;
    text-align: left;
}

@media screen and (max-width: 769px) {
    .cardList {
        display: block;
    }

    .cardList li {
        width: 100%;
        padding: 32px 24px;
    }
}

/* commentBox */
.commentBox li {
    margin-bottom: 24px;
    background-color: var(--color-background-secondary);
    padding: 56px 48px;
}

.commentBox li:nth-child(odd) {
    background-color: var(--color-background-tertiary);
}

.commentBox p {
    text-align: left;
}

@media screen and (max-width: 769px) {
    .commentBox li {
        padding: 32px 24px;
    }
}