@charset "utf-8";
/* CSS Document */
.blog-content__wrapper {
	border: 1px solid #B28247;
	padding: 15px;
	max-width: 970px;
	background: #fff;
}
.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 {
	margin-right: 15px;
}
.blog-contents-inner {
	margin-bottom: 15px;
}
.blog-post {
	padding: 8px;
}

@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-posts {
	padding: 15px;
	/* border-left: 10px solid #efefef;
	border-right: 10px solid #efefef;
	border-bottom: 10px solid #efefef; */
}
.information-posts dl {
  margin-bottom: 60px;
}
.information-posts dt {
  font-size: 130%;
  color:#F1617D;
	font-weight: bold;
  padding: 0 8px;
	margin-bottom: 20px;
}
.information-posts dd {
	margin: 0 0 20px 0;
  padding: 0 8px;
}
/* PREV NEXT */
.prev-next-post__wrapper {
	margin: 90px 0;
}
.no-post {
	display: none;
}
.prev-next-post {
  display: table;
  width:100%;
}
.prev-post {
  display: table-cell;
  width: 49%;
}
.prev-post a {
  background: url('../img/common/btn-prev') no-repeat left center;
  padding:15px 15px 15px 50px;
  display: block;
}
.prev-post a:hover {
	background: url('../img/common/btn-prev') no-repeat left center;
  padding:15px 15px 15px 50px;
	text-decoration: underline;
}
.next-post {
  display: table-cell;
  width: 49%;
	border-left: 2px dotted #666;
	text-align: right;
}
.next-post a {
  background: url('../img/common/btn-next') no-repeat right center;
  padding:15px 50px 15px 15px;
  display: block;
}
.next-post a:hover {
	background: url('../img/common/btn-next') no-repeat right center;
  padding:15px 50px 15px 15px;
	text-decoration: underline;
}
@media screen and (max-width:750px) {
	.prev-next-post__wrapper {
		margin-top: 90px;
		margin-bottom:60px;
	}
  .prev-next-post {
    display: block;
    width:100%;
  }
  .prev-post {
    display: block;
    width:100%;
  }
  .next-post {
    display: block;
    width:100%;
		border-left: none;
  }
}
