@charset "utf-8";

/* あしあと機能 */

#footstep_wrap {
	width: 1080px;
	margin: 0 auto;
	position: relative
}

#footstep_detail {
	display: inline-block;
	margin: 10px 0;
	padding: 0 40px 0 100px;
	position: relative;
}
#clear_footstep {
	display: block;
	width: 1em;
	height: 1em;
	margin-left: 1em;
	padding: 0.2em;
	background: url(/img/icon_clear_footstep.png) no-repeat center center #262E53;
	border: 1px solid #002080;
	border-radius: 3px;
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
#footstep_detail:empty + #clear_footstep{
	display: none;
}



#footstep_detail:before {
	content: '';
	background: url(/img/icon_footstep.png) no-repeat center center #262E53;
	display: block;
	width: 90px;
	height: 30px;
	border-radius: 3px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#footstep_detail:empty:before {
	display: none
}
.fs_rireki{
	display: inline;
	line-height: 1.6em;
}
.fs_rireki:before {
	content: '>';
	padding: 0 0.5em;
}

.fs_rireki:first-child:before {
	/*content: '';*/
	display: none;
}
.fs_rireki:last-child a{
	text-decoration: none;
	cursor: default;
	color: inherit;
}
/* あしあとここまで */