@charset "utf-8";
/* CSS Document */
#line { background-color: #C6C; width: 910px; float: left; background-image: url(../img/box_bg.gif); border: 2px solid #FF5B9D; position: relative; text-align: left; }
#line h2{ background: linear-gradient(transparent 70%, #FDA2CB 70%);font-size: 20px}
#line ol li a:link,#line ol li a:hover,#line ol li a:visited{font-weight: bold; color: rgba(255,84,174,1.00)}
#line ol {font-size:16px;
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0.5em;
}
#line ol li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 1em 0.5em 0.5em 30px;
}

#line ol li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display:inline-block;
  background: #FB3790;
  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%);*/
}
