/*/////////////////////////////////////////////////
//連番リスト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;
}

h2 {
  font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'Hiragino Mincho ProN', 'HGS明朝E', 'ＭＳ Ｐ明朝', serif;
  position: relative;
  padding: 1.5rem 2rem;
  -webkit-box-shadow: 0 2px 14px rgba(0, 0, 0, .1);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .1);
}

h2:before,
h2:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-image: -webkit-linear-gradient(315deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
  background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
}

h2:before {
  top: 0;
}

h2:after {
  bottom: 0;
}
