ol {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding: 0 0.5em 0em 0.5em ;
  background: #fff;
}
ol li {
  position: relative;
  padding-left: 30px;
  line-height: 1.0em;
  padding: 0em 0.5em 0.5em 30px;
}

ol li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display:inline-block;
  background: #e2cf6d;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.komidashi {
  font-size:1.1em;
  font-weight: bold;
  color: #666;
  line-height: 1.6em;
}

.oltitle {
 	font-weight: bold;
 	font-size: 1.1em;
  	color: #666;
  	
}