@charset "UTF-8";

/*--------------------------------------------------------------------
link.html
link.css
--------------------------------------------------------------------*/

/*------------link01---------------------------------------------------------------*/
#link01 section:not(:first-of-type) { margin-top: 20px; }
#link01 ul li {
	padding-left: 1.3em;
	text-indent: -1.3em;
}
#link01 ul li::before {
	padding-right: 0.3em;
	content: "※";
}

/*------------link02---------------------------------------------------------------*/
#link02 ul li:not(:first-of-type) { margin-top: 1em; }
#link02 ul li a {
	position: relative;
	display: inline-block;
	padding-left: 0.8em;
	color: var(--co-black);
	transition: 0.5s;
}
#link02 ul li a::before {
	position: absolute;
	content: "";
	display: block;
	width: 8px;
	height: 9px;
	background-color: var(--co-orange);
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	top: 50%;
	left: 0;
	transform: var(--transformY);
	transition: 0.5s;
}
#link02 ul li a:hover { color: var(--co-orange); }