@charset "utf-8";

/* trouble01_sp.css：SP
 * ======================================
 * 
 * ======================================
 */
 
/* #trouble01
------------------------------------------------------------------ */
.discNumList {
	counter-reset: my-counter;
	list-style: none;
	padding: 0;
}
.discNumList li {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}
.discNumList li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	display: block;
	float: left;
	font-size: 0.8em;
	line-height: 1.5em;
	margin: 3px 0 0 -20px;
	text-align: center;
	height: 1.5em;
	width: 1.5em;
	border-radius: 50%;
	background: #d6809a;
	color: #fff;
}
.discNumList li span {
	display: block;
	color: #d6809a;
}
/* cat03 */
#trouble01_cat03 ol {
	margin: 1em 0;
	background: #f9f9f9;
	padding: 1em 2em 2em 3em;
	border-radius: 10px;
}
#trouble01_cat03 ol li {
	padding: 0.5em 0;
}
#trouble01_cat03 ol li + li {
	border-top: 1px dotted #ddd;
}
/* cat04 , cat05 */
#trouble01_cat04 .inner > div,
#trouble01_cat05 .inner > div {
	margin-bottom: 30px;
}
#trouble01_cat04 dl {
	width: 85%;
	margin: auto;
/* 	float: left; */
}
#trouble01_cat04 dl + dl{
	margin-top: 20px;
}
#trouble01_cat05 dl {
	width: 85%;
	margin: 0 auto;
}
#trouble01_cat04 dl img,
#trouble01_cat05 dl img {
	width: 100%;
}

#trouble01_cat05 dl + dl {
	float: right;
}
#trouble01_cat04 dt,
#trouble01_cat05 dt {
	text-align: center;
	font-size: 1.1em;
	margin-bottom: 1em;
	background: #d6809a;
	color: #fff;
	padding: 5px;
	border-radius: 5px;
}
#trouble01_cat04 dl:first-child dt {
	background: #4ab7dd;
}
/* flow */
.flow dd span {
	display: block;
	font-weight: bold;
	text-align: center;
	color: #d6809a;
}
#trouble01_cat09.case dl dd.detail{
clear: both;
float: none;
width: 100%;
text-align: left;
padding: 15px 0 0;
}
#trouble01_cat09.case dl dd.detail:before{
content:none;
}

.att_list{
list-style-type: none;
margin-top: 2em;
}
.att_list li{
text-align: left;
padding-left: 1em;
text-indent: -1em;
margin-bottom: 10px;
}