@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%;
}
.detail_tbl {
	width: 100%;
	border: 1px solid #cccccc;
}
.detail_tbl th, .detail_tbl td {
	padding: 10px 0;
	border: 1px solid #cccccc;
	line-height: 1.4em;
}
.detail_tbl th {
	background: #0a95c2;
	color: #ffffff;
	text-align: center;
}
.detail_tbl th:first-child {
	width: 5%;
}
.detail_tbl th:nth-child(2) {
	width: 15%;
}
.detail_tbl th:nth-child(3) {
	width: 50%;
}
.detail_tbl th:nth-child(4) {
	width: 15%;
}
.detail_tbl th:last-child {
	width: 10%;
}
.detail_tbl td {
	text-align: center;
}
.detail_tbl td:nth-child(3) {
	padding-right: 10px;
	padding-left: 10px;
	text-align: left;
}
.detail_tbl td a:link, .detail_tbl a:hover, .detail_tbl a:visited {
	color: #0a95c2;
	text-decoration: underline;
}

@media screen and (max-width: 480px) {
	.detail_tbl th {
		display: none;
	}
	.detail_tbl td {
		display: block;
	}
	.detail_tbl td::before {
		content: attr(data-label);
		margin-bottom: 10px;
		font-size: 0.8em;
		color: #666;
		display: block;
	}
	.detail_tbl td:first-child, .detail_tbl td:nth-child(2) {
		background-color: aliceblue;
	}
	.detail_tbl td:nth-child(3) {
		text-align: center;
	}
}