@charset "UTF-8";

.pr_list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}
.pr_list li:last-child {
    margin-bottom: 0;
}
.pr_list li span {
    font-weight: bold;
}
.pr_list li::before{
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 7px;
    background: #009e41;
    position: absolute;
    left: 0;
    top: 7px;
}
@media screen and (max-width: 499px) {

.pr_list li::before{
    width: 12px;
    height: 12px;
    border-radius: 6px;
    top: 6px;
}
.pr_list li {
    padding-left: 16px;
}
}

@media screen and (min-width: 500px) {

}