@charset "utf-8";
ul {
  padding: 0;
  position: relative;
}
ul li {
  line-height: 1.5;
  padding: 0.5em 0.5em 0.5em 1.7em;
  list-style-type: none!important;
  background: -webkit-linear-gradient(top, gold 0%, orangered 100%);/*グラデーション*/
  background: linear-gradient(to bottom, gold 0%, orangered 100%);/*グラデーション*/
  color: #fff;
}

ul li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  position: absolute;
  left : 0.5em;
  color: white;
}