@charset "utf-8";
/* CSS Document */
h3{
	color: #ce4186;
	line-height: 1.5;
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
}

h4{
	color: #ce4186;
	font-size: 16px;
	margin-bottom: 10px;
	text-align: center;
}

#contents{
	padding: 0 25px 60px;
	text-align: left;
}
#contents img{width: 100%;}


/*=====================================================================================
***************************************************************************************

　　一覧
		
***************************************************************************************
=====================================================================================*/

#contents ul{
	counter-reset: listnum; /* カウンターをリセット */
	list-style: none; /* 標準のスタイルは消す */
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #dfdfdf;
}
#contents li::before{
	counter-increment: listnum; /* counter-resetと同じ文字列 */
	content: counter(listnum); /* カウントした数に応じて番号を表示 */
	background: #ce4186;
	border-radius: 50%;
	color: #FFFFFF;
	line-height: 1;
	font-size: 12px;
	font-weight: bold;
	width: 23px;
	height: 23px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	top: 1px;
	left: 0;
}

#contents li{
	font-size: 15px; 
	line-height: 1.4; 
	position: relative;
	margin-bottom: 40px;
}
#contents li p{
	font-weight: 900;
	color: #ce4186;
	font-size: 18px;
	margin-bottom: 7px;
	padding-left: 30px;
}
#contents li span{color: #ce4186; font-weight: bold; display: block;}

#contents li img{
	display: block;
	width: 100%;
	margin: 10px auto 0;
}

@media screen and (max-width: 700px){

}







