@charset "UTF-8";



/* works
----------------------------------------------------------------*/

.tax.works .h_00 {
    background-image: url(../img/works/keyvisual.jpg);
}

.tax.works .edit_area.detail {
	padding-bottom: 100px;
}

.tax.works .t_center {
	margin-bottom: 40px;
}

.tax.works .post-list {
	width: 960px;
	margin: 0 auto;
	border-top: dotted 1px #CCC;
}

.tax.works .post-list li {
	/* border-top: dotted 1px #CCC; */
	border-bottom: dotted 1px #CCC;
}

.tax.works .post-list li a {
	position: relative;
	display: block;
	padding: 20px;
	color: #0D70B9;
	text-decoration: none;

	transition: all 0.3s;
}
.tax.works .post-list li:hover a {
	background-color: #f9f9f9;
	padding-left: 25px;
}

.tax.works .post-list li a:before {
	content: "";
	display: block;
	width: 0px;
	height: 2px;
	background-color: #0D70B9;

	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);

	transition: width 0.1s;
}
.tax.works .post-list li:hover a:before {
	width: 10px;
}