@charset "UTF-8";

/* page navi */
.wp-pagenavi {
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
}
.wp-pagenavi > .page-numbers {
  text-align: center;
  font-size: 14px;
  line-height: 14px;
  border: solid 1px #e8e8e8;
  border-radius: 80px;
  margin-right: 16px;
  background: #fff;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 48px;
  height: 48px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.wp-pagenavi > .page-numbers.prev {
  width: 120px;
  padding-right: 32px;
  text-align: right;
  position: relative;
}
.wp-pagenavi > .page-numbers.next {
  width: 120px;
  padding-left: 32px;
  text-align: left;
  position: relative;
}
.wp-pagenavi > span > a {
  width: 120px;
  height: 48px;
  margin: 0;
  position: relative;
  cursor: pointer;
}
.wp-pagenavi > span:first-child > a {
  text-align: right;
  padding-right: 32px;
}
.wp-pagenavi > span:last-child > a {
  text-align: left;
  padding-left: 32px;
}
.wp-pagenavi .icon_navi_left {
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 2px solid #3c3a3a;
  border-right: 2px solid #3c3a3a;
  transform: rotate(-135deg);
  top: 1px;
  bottom: 0;
  left: 24px;
  margin: auto;
}
.wp-pagenavi .icon_navi_right {
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #3c3a3a;
  border-right: 2px solid #3c3a3a;
  transform: translateY(-50%) rotate(45deg);
  margin: auto;
}
.wp-pagenavi > a {
  cursor: pointer;
}

/* wp-page navi - checked */
.wp-pagenavi > .page-numbers.current {
  background: #27314a !important;
  color: #fff !important;
  border: none !important;
}

/* banner */
.banner_related > a {
  display: block;
  width: 100%;
  height: 100%;
}

/* posts */
.wrapper_title_all_posts {
  margin: 40px 0 0;
}
.title_all_posts {
  font-size: 26px;
}
.wrapper_contents_all_posts {
  margin: 24px 0 0;
}
.each_post {
  position: relative;
  overflow: hidden;
  margin: 0 0 24px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.each_post:hover {
  box-shadow: none;
}
.each_post > a {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.thumbnail_post {
  overflow: hidden;
  display: block;
  width: 100%;
}
.thumbnail_post img {
  object-fit: cover;
  -moz-transition: -moz-transform 0.16s linear;
  -webkit-transition: -webkit-transform 0.16s linear;
  -o-transition: -o-transform 0.16s linear;
  -ms-transition: -ms-transform 0.16s linear;
  transition: transform 0.16s linear;
}
.each_post:hover .thumbnail_post img,
.each_slide:hover .thumbnail_post img {
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -o-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
}
.wrapper_info_post {
  padding: 16px;
}
.date_posted {
  font-size: 10px;
}
.title_each_post {
  font-size: 15px;
  text-align: left;
  line-height: 23px;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner_status {
  display: -webkit-flex;
  -webkit-align-items: baseline;
  display: flex;
  align-items: baseline;
}
.fa-clock {
  font-size: 10px;
  margin-right: 3px;
}
.test_layer {
  display: -webkit-flex;
  -webkit-align-items: baseline;
  display: flex;
  align-items: baseline;
  margin-top: 12px;
}
.category_status {
  padding: 4px 6px;
  border-radius: 64px;
  display: inline-block;
  z-index: 20;
}

/*---------------------------------------------------------------*\
$1500px
\*---------------------------------------------------------------*/
@media screen and (min-width: 1500px) {
}

/*---------------------------------------------------------------*\
$1200px
\*---------------------------------------------------------------*/
@media screen and (max-width: 1200px) {
}

/*---------------------------------------------------------------*\
$1080px
\*---------------------------------------------------------------*/
@media screen and (max-width: 1080px) {

  /* posts */
  .each_post {
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
  }
}

/*---------------------------------------------------------------*\
$860px
\*---------------------------------------------------------------*/
@media screen and (max-width: 860px) {

  /* posts */
  .title_all_posts {
    font-size: 16px;
    border-left: none;
    padding: 0 0 12px;
  }
  .wrapper_contents_all_posts {
    width: 100%;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-top: 24px;
  }
  .each_post:first-child .wrapper_info_post {
    width: 100%;
  }
  .each_post:first-child .inner_each_post {
    display: block;
  }
  .each_post .inner_each_post {
    display: -webkit-flex;
    display: flex;
  }
  .each_post:first-child .thumbnail_post {
    width: 100%;
    pointer-events: none;
  }
  .each_post:hover .thumbnail_post img {
    -webkit-transform: inherit;
    -moz-transform: inherit;
    -o-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
  }
  .thumbnail_post {
    width: 42%;
  }
  .wrapper_info_post {
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-justify-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px;
    width: 58%;
  }
  .title_each_post {
    pointer-events: none;
  }
  .date_posted {
    font-size: 10px;
    line-height: 10px;
  }
  .category_status {
    font-size: 10px;
    line-height: 10px;
  }
}

/*--------------------------------------------------------------*\
$600px
\*---------------------------------------------------------------*/
@media screen and (max-width: 600px) {

  /* * {
    font-size: 15px;
  } */

  /* page navi */
  .wp-pagenavi {
    margin-top: 40px;
  }
  .wp-pagenavi a {
    font-size: 11px;
    line-height: 11px;
  }
  .wp-pagenavi > span > a {
    height: 36px;
    width: 56px;
    font-size: 11px;
    line-height: 11px;
  }
  .wp-pagenavi > a {
    width: 36px;
    height: 36px;
    margin-right: 6px;
  }
  .wp-pagenavi > a:nth-of-type(1) {
    margin-left: 6px;
  }
  .wp-pagenavi > a:nth-last-child(2) {
    margin-left: 6px;
  }
  .wp-pagenavi > span:first-child > a {
    padding-right: 10px;
  }
  .wp-pagenavi > span:last-child > a {
    padding-left: 10px;
  }
  .wp-pagenavi .icon_navi_right {
    right: 10px;
    width: 4px;
    height: 4px;
    border-top: 1px solid #3c3a3a;
    border-right: 1px solid #3c3a3a;
  }
  .wp-pagenavi .icon_navi_left {
    left: 10px;
    width: 4px;
    height: 4px;
    border-top: 1px solid #3c3a3a;
    border-right: 1px solid #3c3a3a;
  }

	/* posts */
  .description_post {
    height: 100px;
  }
  .title_each_post {
    font-size: 12px;
    line-height: 16px;
    -webkit-line-clamp: 2;
  }
}

/*---------------------------------------------------------------*\
$360px
\*---------------------------------------------------------------*/
@media screen and (max-width: 360px) {

  /* posts */
  .thumbnail_post {
    width: 40%;
  }
  .wrapper_info_post {
    width: 60%;
  }
}
