@charset "utf-8";
/*
* CSS for Introduction Case 54
*
* @version			0.0.0
* @lastmodified 2021/01/26
* @link					https://www.landcomp.co.jp/
* @copyright		Copyright 2021, LAND COMPUTER Co.,Ltd.All rights reserved.
*------------------------------------------------------------------------- */

/* CASE 54  ============================================================== */
dl.sDataList.introduction span.fbold {
	font-weight: bold;
}
dl.sDataList.introduction ol#index {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
	margin-left: 2rem;
}
ol#index li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
ol#index li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: coral;
  color: #FFF;
  display: block;
  float: left;
  line-height: 1.25em;
	font-size: 95%;
  margin-left: -30px;
  text-align: center;
  height: 1.25em;
  width: 1.25em;
  border-radius: 50%;
	border: 0px solid #333;

}
