@charset "utf-8";
.detail_box {
	width: 100%;
}
.detail_item {
	display: block;
	width: 100%;
	margin: 0 auto 30px;
	padding: 20px;
	background-color: #fff;
	border: 1px solid #CCC;
	border-radius: 15px;
	box-sizing: border-box;
}
.detail_item:hover {
	background-color: aliceblue;
}
.detail_ttl {
	width: 100%;
	margin: 0 0 10px 0;
	padding: 0 0 0.1em 0;
	font-size: 1.2em;
	font-weight: bold;
}
.detail_ttl:after {
	content: "";
	display: block;
	height: 4px;
	width: 100%;
	background: -webkit-gradient(linear, left top, right bottom, from(#00f), to(#05abe0));
	background: -moz-linear-gradient(left, #00f, #05abe0);
	background: linear-gradient(left, #00f, #05abe0);
}
.detail_tag_box {
	width: 100%;
	margin: 0 0 20px 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.detail_cate {
	margin: 0 10px 0;
}
.detail_date {
	text-align: right;
}
.detail_date img {
    vertical-align: text-top;
}
.detail_txt {
	margin: 0 0 50px;
	line-height: 1.4em;
}
.detail_txt a {
	text-decoration: underline;
	color: #04c;
}
.detail_txt img {
	max-width: 100%;
}