@charset "utf-8";


/*箇条書きリストのCSS*/
h2{
    text-align: center;
}
ul{
    margin: 0 auto 5em;
    border: 5px solid aquamarine;
    /* padding: 10px; */
    padding: 10px 10px 0;
    width: 50%;
    min-width: 300px;
    list-style: none;
}
ul li{
    border-bottom:4px dotted aquamarine ;
    margin-bottom: 10px;
    /* list-style: none; */
}
ul li::before{
    content: "✓";
    color: tomato;
    margin-right: 0.5em;
    font-weight: bold;
    text-shadow: 2px 2px 1px #aaa;
}
/* li:last-of-type{
    margin-bottom: 0;
} */