@charset "utf-8";

/* 掲載記事
   ========================================================================== */
.publish-anchor {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-top: 1px solid #d9d9d9;
	border-right: 1px solid #d9d9d9;
}
.publish-anchor a {
	display: block;
	position: relative;
	padding: 10px;
	border-bottom: 1px solid #d9d9d9;
	border-left: 1px solid #d9d9d9;
}
.publish-anchor a::after {
	position: absolute;
	display: block;
	top: 50%;
	right: 10px;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -4px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.publish-anchor a:last-of-type {
	border-right: none;
}
@media (min-width:768px) {
	.publish-anchor {
		flex-direction: row;
		justify-content: center;
		border: none;
	}
	.publish-anchor a {
		text-decoration: underline;
		padding: 0 30px;
		border: none;
		border-right: 1px solid #d9d9d9;
	}
	.publish-anchor a::after {
		display: none;
	}
	.publish-anchor a:hover {
		text-decoration: none;
	}
}
