@charset "utf-8";
/* CSS Document */

#contents_wrap{
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
}

#contents_wrap ol{
	counter-reset:number; /*数字をリセット*/
	list-style-type: none!important; /*数字を一旦消す*/
	
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	text-align: justify;
	font-size: 18px;
}

#contents_wrap ol li{
	position: relative;
	width: 48%;
	padding-left: 70px;
	margin-bottom: 30px;
	border: 2px solid #000000;
	line-height: 50px;
	border-radius: 28px;
}

#contents_wrap ol li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
	
 /*以下数字のデザイン変える*/
  display:inline-block;
  background: #000000;
  color: white;
  font-family: "Darumadrop One", "Zen Maru Gothic","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック";
  font-weight:bold;
  font-size: 19px;
  border-radius: 25px;
	left: -1px;
  width: 50px;
  height: 50px;
  line-height: 45px;
  text-align: center;
}

#contents_wrap ol li a{
	text-decoration: none;
	font-weight: 900;
	display: block;
	width: 100%;
}
#contents_wrap ol li a:hover{opacity: 1;}
#contents_wrap ol li:hover{background: #ffef37;}

#contents_wrap .kokishin_banner {
	display: block;
	margin-top: 60px;
}
#contents_wrap .kokishin_banner img{width: 100%;}

@media screen and (max-width: 760px){
	#hed_box h2 img{width: 200px;}
	#contents_wrap ol{display: block; font-size: 16px;}
	#contents_wrap ol li{
		width: 100%; 
		margin-bottom: 15px; 
		line-height: 40px;
		padding-left: 50px;
	}
	#contents_wrap ol li:before{
		font-size: 16px;
		width: 40px;
		height: 40px;
		line-height: 36px;
	}
	#contents_wrap .kokishin_banner{margin-top: 30px;}
}









