/* LIST */
/* TODO:共通化できそう */
/*
.sub_header {
  height: 20px;
  width: 100%;
  border-bottom: 3px solid #e61e1e;
  text-align: center;
  padding: 65px 0;
  font-size: 1.3rem;
  font-weight: bold;
  background-color: #000000;
  background: url(../images/news_header.png) no-repeat 0 0;
}a*/
.default_layout {
  max-width: 1080px;
  margin: 60px auto 20px auto;
  /*padding: 0 30px;*/
}
.default_layout > * {
  float: left;
}
.default_layout .posts {
  width : 64%;
  margin: 0 6% 0 3%;
}
.entry .info {
  word-break: break-all;
  overflow: hidden;
}
.entry:hover {
  opacity: 0.7;
}
.default_layout::after {
  content: '';
  display: block;
  clear: both;
}
.posts .entry {
  margin: 0 auto;
  margin-bottom: 5%;
  width: 100%;
  display: block;
  padding: 0;
  background-color: #e61e1e;
  overflow: hidden;
  max-width: 680px;
  position: relative;
}
.posts .entry:nth-child(odd) {
  background-color: #888;
}
.page .posts .entry:nth-child(odd) {
  background-color: #e61e1e;
}
.page .posts .entry:nth-child(even) {
  background-color: #888;
}
.posts .entry a {
  display: flex;
  flex-flow: row nowrap;
  text-decoration: none;
}
.posts .entry:nth-child(odd) a {
  flex-flow: row-reverse;
}
.page .posts .entry:nth-child(odd) a {
  flex-flow: row;
}
.page .posts .entry:nth-child(even) a {
  flex-flow: row-reverse;
}
.posts .entry img,
  .posts .entry .info{
/*  display: inline-block;*/
  width: 50%;
  height: auto;
}
.posts .entry img {
/*  float: left;*/
align-self: flex-start;
}
.posts .entry .info {
  display: flex;
  flex-flow: column;
  padding: 2% 3%;
  box-sizing: border-box;
  color: #000000;
/*  float: right;*/
}
.entry .info .info__head {
  margin-bottom: 3%;
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .05em;
/*
  padding: 2% 7%;
  margin-top: 3%;
*/
}
.entry .info .info__title {
  font-family: 'Noto Serif JP';
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.3;
/*  padding: 2% 7%;*/
}
.entry .info .info__foot {
  margin-top: auto;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.3;
/*
  position: absolute;
  bottom: 0;
*/
}
.shironuki {
  color: #ffffff;
}
.posts .entry:nth-child(odd) img {
  float: right;
}
.posts .entry:nth-child(odd) .info {
  float: left;
}

.read_more {
  cursor: pointer;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  padding: 20px 0;
  height: 16px;
  color: #000000;
  text-decoration: underline;
  text-align: center;
  background-color: #ffffff;
  border-top: 4px solid #000000;
  border-left: 4px solid #000000;
  margin-bottom: 20px;
}
.read_more:hover {
  background: #999;
}

.pagination {
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
   align-items: center;
   justify-content: center;
   font-size: 1.6rem;
   margin-bottom: 30px;
}
.pagination li {
  margin: 5px 12px;
}
.pagination li.page {
  color: #000000;
}
.pthumbagination li 
  ,.pagination li a {
  color: #e61e1e;
  text-decoration: none;
}

/* detal*/
.detail_layout {
  max-width: 1200px;
  margin: 60px auto 20px auto;
  padding: 0 30px;
}
.detail_layout .post {
  width : 60%;
  margin: 0 5%;
  /*background-color: #ffffff;*/
  word-break: break-all;
}
.detail_layout > * {
  float: left;
}
.detail_layout::after {
  content: '';
  display: block;
  clear: both;
}


@keyframes flipInY {
  0% {
    /* 90 */
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 70deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 70deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 70deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0
  }
  40% {
    /* -20 */
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -10deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -10deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in
  }
  60% {
    /* 10 */
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1
  }
  80% {
    /* -5 */
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 0deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 0deg)
  }
  100% {
    /* 400 */
    -webkit-transform: perspective(300px);
    -ms-transform: perspective(300px);
    transform: perspective(300px)
  }
}

@media screen and (max-width: 960px) {
  .default_layout {
    padding: 0 5%;
  }
  .default_layout .posts {
    width: 100%;
    padding: 0;
    margin: 0 0 0 0;
    margin-bottom: 5%;
  }
  .posts .entry {
    width: 95%;
  }
  .entry .info .info__title {
    font-size: 1.7rem;
  }
  .read_more {
    font-size: 1.6rem;
    margin: 0 auto;
    width: 95%;
  }
  /* detail  */
  .detail_layout {
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
  }
  .detail_layout .post {
    width : 90%;
    margin: auto;
    float: none;
  }
}
@media screen and (max-width: 600px) {
  .post .article_header {
    height: 36px;
  }
  .default_layout {
    padding: 0;
    margin: 30px auto 20px auto;
  }
  .posts .entry {
    width: 100%;
  }
  .entry .info .info__head {
    font-size: .7rem;
  }
  .entry .info .info__title {
    font-size: 1.1rem;
  }
  .entry .info .info__foot {
    font-size: .7rem;
  }
  .read_more {
    width: 90%;
    margin: 0 5%;
    font-size: 1.6rem;
    text-align: center;
  }
  .pagination {
    font-size: 1.6rem;
  }
  .pagination li {
    margin: 5px 16px;
  }
  /* detail */
  .detail_layout .post {
    width : 100%;
  }
}
@media screen and (max-width: 500px) {
}
