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

.blog-column {
	display: table;
	width:100%;
}
.blog-left-column {
	display: table-cell;
	vertical-align: top;
	width:70%;
}
.blog-right-column {
	display: table-cell;
	vertical-align: top;
	width:30%;
}
.blog-contents {
}
.blog-contents-inner {
	margin-bottom: 15px;
}

@media(max-width:640px) {
	.blog-column {
		display: block;
	}
	.blog-left-column {
		display: block;
		width:100%;
	}
	.blog-right-column {
		display: block;
		width:100%;
	}
	.blog-contents {
		margin-right: 0px;
	}
}

/* information */
.information-content {

}
.information-content  h2 {

}
.information-content dl {
  margin-bottom: 30px;
}
.information-content dt {
  font-size: 130%;
	font-weight: bold;
  color: #C6a544;;
  padding: 0 8px;
}
.information-content dd {
  margin: 0 0 20px 0;
  padding: 0 8px;
}

/* read more */
.blog-read-more {
	text-align: center;
  transition: opacity 0.3s;
}
.blog-read-more:hover {
	opacity: 0.7;
}
.blog-read-more a {
	position: relative;
  display: block;
  padding: 2px;
  color: #fff;
  font-size: 70%;
  background: #333;
  border-radius: 4px;
  box-sizing: border-box;
  backface-visibility: hidden;
	max-width: 110px;
}
.blog-read-more a:before,
.blog-read-more a:after {
	position: absolute;
  top: 50%;
  content: "";
  margin: -7px 0 0;
}
.blog-read-more a:before {
  right: 10px;
  border-top: 7px solid transparent;
  border-left: 7px solid #fff;
  border-bottom: 7px solid transparent;
}
.blog-read-more a:after {
  right: 13px;
  border-top: 7px solid transparent;
  border-left: 7px solid #333;
  border-bottom: 7px solid transparent;
}
