@charset "utf-8";

ul{
    margin: 0;
    padding: 0;
}

/* リストマーカー */
.list-marker-dark {
    list-style: none;
    counter-reset: list-counter;
}

.list-marker-dark li {
    counter-increment: list-counter;
}

.list-marker-dark li::marker {
    content: "・ "; /* 好きな記号を指定 */
    font-size: 1em;
    color: #333;
}

  