@charset "UTF-8";
/** ************************************* **

	TABLE CONTENTS
	---------------------------
		01. Globals
		02. 丸数字カウンターリスト

	---------------------------

 ** ************************************* **/
/** 01. Globals
 **************************************************************** **/




/** 02. 丸数字カウンターリスト
**************************************************************** **/
ol.calender_list {
		counter-reset: my-counter;
		list-style: none;
		padding: 0;
}
#content ol.calender_list li {
		margin-bottom: 10px;
		padding-left: 30px;
		position: relative;
		line-height: 1.5;
}
ol.calender_list li:before {
		content: counter(my-counter);
		counter-increment: my-counter;
		background-color: #52A7E0;
		color: #fff;
		display: block;
		float: left;
		line-height: 22px;
		margin-left: -30px;
		text-align: center;
		height: 22px;
		width: 22px;
		border-radius: 50%;
		vertical-align: middle;
}
ol.calender_list.back_orange li::before {
		background-color: #e67e22;
}
ol.calender_list.back_green li::before {
		background-color: #1abc9c;
}
ol.calender_list.back_pink li::before {
		background-color: #FF457B;
}