@charset "utf-8";

/* 個人情報保護方針（PC）：style_protection_pc.css
 * **************************************************
 * Elements (List)
 * **************************************************
 */

/* Elements
------------------------------------------------------------------ */
/* List */
/* List：個人情報保護に関する基本方針 */
#subPage .main ol.decimalList {
	margin-left: 0;
	padding: 0 20px 20px 20px;
	list-style: none;
	counter-reset: section;  
}
#subPage .main ol.decimalList > li {
	margin: 0 0 1.0em 0;
	padding-left: 1.3em;
	padding-bottom: 15px;
	border-bottom: 1px dotted #c1c1c1;
}
#subPage .main ol.decimalList > li::before {
	margin-left: -1.3em;
	counter-increment: section;      /* section カウンタを増加 */
    content: counter(section) ". "; /* カウンタを表示 */
}
#subPage .main ul.parenList {
	margin: 0.5em 0 0 0;
	padding-left: 3em;
	text-indent: -3em;
}
#subPage .main ul.parenList li {
	font-size: 100%; /* =14px */
	margin: 0 0 0.5em 0;
}

