.blog h1,
.blog h2,
.blog h3,
.blog h4,
.blog h5,
.blog h6 {
  /*font-size: revert;*/
  /*font-weight: revert;*/
  /*margin: revert;*/
  all: revert-layer;
}
.blog p,
.blog table,
.blog blockquote,
.blog address,
.blog pre,
.blog iframe,
.blog form,
/*.blog figure,*/
.blog dl {
    /*margin: revert;*/
    all: revert-layer;
}
.blog,
.blog_single_content {
  overflow: hidden;
}
.blog_list_link {
  text-align: center;
  width: fit-content;
  margin: 2vw auto;
}
.blog_list_link a {
    display: block;
    background-color: #FFF;
    border: 2px solid;
    padding: 10px 20px;
}
.blog table {
  border-collapse: collapse;
}
.blog_thumbnail img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.blog_list_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
.blog article {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 0 20px;
  width: calc(100% / 3);
  padding: 10px;
}
.blog article .blog_thumbnail {
  max-width: 100%;
  height: 254px;
  transition: 0.5s;
}
.blog article a{
    display: block;
background-color: #FFF;
transition: 0.5s;
height: 100%;
}
.blog article a:hover {
  filter: brightness(1.1);
}
.blog_list_text {
  padding: 0 2em 2em;
}
.blog .page-category-title,
.blog .page-tag-title {
  text-align: center;
}
.pagination {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 2em;
}
.pagination .page-numbers {
  background: #FFF;
  padding: 5px 10px;
  border: 1px solid #623B1D;
  border-radius: 3px;
}
.pagination .page-numbers.current {
  background: #DDD;
}
.blog .inline_block {
  display: inline-block;
  padding-right: 2em;
  margin-top: 0;
}
@media screen and (max-width: 950px) {
.blog article {
  width: calc(100% / 2);
}
}
@media screen and (max-width: 900px) {
.blog_list_wrap {
  padding-bottom: 20vw;
}
}
@media screen and (max-width: 700px) {
.blog article .blog_thumbnail {
    height: 150px;
}
}
@media screen and (max-width: 500px) {
.blog article {
  width: calc(100% / 1);
}
.blog article .blog_thumbnail {
    height: auto;
}
}


/* 次の記事、前の記事のナビゲーションのスタイル */
/*.blog .nav-links {
  font-size: 16px;
  display: flex;
}
.blog .nav-links div[class^="nav-"] {
  width: 50%;
}
.blog .nav-links .nav-next {
  margin-left: auto;
}
.blog .nav-links .nav-previous + .nav-next {
  margin-left: -1px;
}
.blog .nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.5em;
  border: 1px solid #ddd;
}
@media (max-width: 767px) {
  .blog .nav-links {
    font-size: 14px;
  }
}*/