/*/////////////////////////////////////////////////
//連番リスト7
/////////////////////////////////////////////////*/

.count_7{
  counter-reset: chapter;
}

.count_7 li {
  margin-bottom: 20px;
  border-radius: 10px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #cde2e8;
}

.count_7 li:before {
  content: "人気 "counter(chapter) " 位";
  counter-increment: chapter;
  margin: 0 5px 0 0;
  padding:10px;
  border-radius: 50px;
  background: #30b0d8;
  color: #fff;
  text-align: center;
}

.count_7 li:nth-child(2n):before {
  background: #85aa5b;
}

.count_7 li:nth-child(3n):before {
  background: #ffbab5;
}


/*/////////////////////////////////////////////////
//連番リスト2
/////////////////////////////////////////////////*/

.count_2{
  counter-reset: chapter;
}

.count_2 li:before {
  content: counter(chapter) "";
  counter-increment: chapter;
  width: 50px;
  height: 50px;
  margin: 0 5px 0 0;
  padding:5px 10px;
  border-radius: 3px;
  background: #ffffff;
  color: #fff;
  text-align: center;
  z-index: 1;
}
.count_2 li {
  padding: 10px;
  background: #30b0d8;
}

.count_2 li:nth-child(even) {
  background: #eee;
}


/*/////////////////////////////////////////////////
//連番リスト3
/////////////////////////////////////////////////*/

.count_3{
  counter-reset: chapter;
}

.count_3 li:before {
  content: "POINT "counter(chapter) ;
  counter-increment: chapter;
  width: 50px;
  height: 50px;
  margin: 0 5px 0 0;
  padding:5px 10px;
  border-radius: 20px;
  background:  #ffbf95;
  color: #ffffff;
  text-align: center;
  z-index: 1;
}
.count_3 li {
  padding: 10px;
  background: #fffcf2;
}

.count_3 li:nth-child(even) {
  background: #ffffff;
}