@charset "utf-8";
/* CSS Document */

table {
  border-collapse: collapse;
  font-family: sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
	width:100%;
}

caption {
  caption-side: bottom;
  padding: 10px;
  font-weight: bold;
}

thead,
tfoot {
  background-color: rgb(228 240 245);
}

th,
td {
  border: 1px solid rgb(160 160 160);
}

td:last-of-type {
  text-align: center;
}

tbody > tr.news:nth-of-type(even) {
  background-color:#DFDFE0;
}

tbody > tr.blogs:nth-of-type(odd) {
  background-color:#DFDFE0;
}

tfoot th {
  text-align: right;
}

tfoot td {
  font-weight: bold;
}

.type a{
	display: inline-block;
	width: 100%;
	height: 100%;
	line-height: 1.4; 
	padding: 15px 5px;
}


.type :hover{
	background-color: #00175a;
	transition: background-color 1s;
	color:#fff;
	border-radius: 5px;
}

.detail{
	padding: 15px 5px;
}

.date{
	text-align:center;
	padding: 15px 5px;

}
@media screen and (min-width: 960px) {
.date{
	width:15%;
}

.detail{
	width:70%;
}

.type{
	width:15%;
}
}

@media screen and (max-width: 959px) {
.date{
	width:20%;
}

.detail{
	width:65%;
}

.type{
	width:15%;
}
}

