• テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。

HTML

  • テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。

CSS

.list_style01{
  padding: 0;
  list-style: none;
}
.list_style01 li{
  position: relative;
  padding: 10px 15px 10px 35px;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px solid rgba(21,66,144, 0.5);
}

.list_style01 li:after,
.list_style01 li:before{
  content: "";
  position: absolute;
  border-radius: 50%;
}
.list_style01 li:before{
  top: 15px;
  left: 2px;
  width: 17px;
  height: 17px;
  background: rgba(21,66,144,0.5);

  transform: translateY(-50%);
}
.list_style01 li:after{
  top: 15px;
  left: 10px;
  width: 14px;
  height: 14px;
  background: rgba(21,66,144,0.3);
}
一覧に戻る