/* CSS Document */


/* ***********************************************************
 *
 * Since:     2018-04-25
 * Editor:    contents
 * Modified:  2018-04-25
 *
 * ***********************************************************
 */




/* ///////////////////////////////////////////////////////////////////
	link
/////////////////////////////////////////////////////////////////// */


#link{
	width: 730px;
	margin: 5px 0px;
	padding: 5px 0;
	border-bottom: 1px solid #000;
	border-top: 1px solid #000;
}

#link .item{
	border-bottom: 1px dotted #ccc;
}

#link .item:last-child{
	border: none;
}

#link .link{
	position: relative;
	display: block;
	padding: 12px 20px;
	width: auto;
	font-size: 14px;
	line-height: 1.6em;
	color: #333;
}

#link .link:hover{
	background-color: #FFF7F8;
	text-decoration: none;
}

#link .link::before{
	content: '';
	position: absolute;
	top: 19px;
	left: 0;
	width: 6px;
	height: 6px;
	border-top: 1px solid #C4577F;
	border-right: 1px solid #C4577F;
	transform: rotate(45deg);
}

