﻿.card-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    align-self: center;
}

.card-list li {
    flex-wrap: wrap;
    word-wrap: break-word;
}

.card-list h3 {
    font-size: 40px;
    font-weight: normal;
    margin-top: 2rem;
    margin-bottom: 3rem
}

.card-list p {
    font-size: 20px;
    font-weight: normal;
}

.list-item {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.04em;
    text-align: left;
    margin-bottom: 2rem;
    color: #030E11;
    position: relative;
    padding-left: 2rem;
}

.list-item::before {
    content: "";
    position: absolute;
    left: 0;
    font-size: 20px;
    width: 20px;
    height: 20px;

    background-size: contain;
    background-repeat: no-repeat;
}

.list-item[data-mark="check_circle"]::before {
    background-image: url('check_circle.png');
}

.list-item[data-mark="cancel"]::before {
    background-image: url('cancel.png');
}

.list-item-special-1::after,
.list-item-special-2::after {
    content: attr(data-extra);
    display: block;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.04em;
    color: #9EA2A4;
    margin-top: 0.5rem;
    text-align: left;
    margin-left: 0;
}