@charset "utf-8";
/* ====================================================

	PC教室 poppo the catサイト(5.1)　course.css

==================================================== */

/* *********** main *********** */
h3 {
  margin: 25px 0px 25px 30px;
  font-size: 130%;
  line-height: 150%;
}

ul.case {
  list-style-type: none;
  list-style-position: outside;
  margin-left: 30px;
}
ul.case li {
  padding-left: 2.3em;
  margin-bottom: 20px;
  background: url(../images/icon_case-list_poppo.png) no-repeat;
  background-size: 2em;
}

ol.l-naiyo {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0.5em;
  margin: 0px 0px 0px 30px;
//  border: dashed 1px gray;
}

ol.l-naiyo li {
  position: relative;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
  font-size: 112%;
}

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

.oekaki01 img {
	width: 49%;
}


/* ########## 640px 以下 ########## */
@media (max-width: 640px){
.oekaki01 img {
	width: 96%;
}
ol.l-naiyo li:before{
  top: 25%;
}
}

