@charset "UTF-8";
/* =====================
	お知らせ
 ======================= */
/** 共通 **/
.news {
  padding: 5.20833% 0 2.08333%;
}

.news_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 4em;
}

.news_container .news_main {
  width: 66%;
}

.news_container .news_sidenav {
  width: 23.5%;
}

.news_container .pager, .news_container .wp-pagenavi {
  width: 100%;
}

.news_sidenav_ttl {
  font-weight: 700;
  padding-bottom: 0.5em;
  border-bottom: 1px solid currentColor;
  margin-bottom: 0.5em;
  text-align: center;
}

.news_sidenav_list {
  margin-bottom: 1.5em;
}

.news_sidenav_list:last-child {
  margin-bottom: 0;
}

.news_sidenav_list a:hover {
  opacity: 0.7;
}

/** 一覧 **/
.archive_news .news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 2em;
}

.archive_news .news_list_item {
  width: 48.48485%;
}

.archive_news .news_list_item a .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
  font-size: 90%;
  margin-bottom: 1em;
}

.archive_news .news_list_item a .info .cat span {
  padding: 0.25em 0.5em;
}

.archive_news .news_list_item a .thumb {
  overflow: hidden;
  margin-bottom: 0.75em;
  width: 100%;
  padding-top: 63.4375%;
  position: relative;
}

.archive_news .news_list_item a .thumb img {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.archive_news .news_list_item a:hover .thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/** 詳細 **/
.single_news .news_head {
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5em 0.5em;
}

.single_news .news_head .cat span {
  font-size: 90%;
  padding: 0.25em 1em;
}

.single_news .news_head .date {
  font-size: 90%;
}

.single_news .news_head .ttl {
  width: 100%;
  font-size: 110%;
  font-weight: 700;
}

.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 6%;
     -moz-column-gap: 6%;
          column-gap: 6%;
}

.pager_item {
  width: 23.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: #cae2c6;
  color: #664f00;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.0;
  padding: 1em;
  position: relative;
  -webkit-box-shadow: 3px 3px 0px 0px #664f00;
          box-shadow: 3px 3px 0px 0px #664f00;
}

.pager_item:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 0.85em 0.85em;
  border-color: transparent transparent #664f00 transparent;
  position: absolute;
  right: 0;
  bottom: 0;
}

.pager span {
  opacity: 0.5;
}

.pager a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
}

/* タブレット
  ------------------------ */
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  /** 共通 **/
  .news {
    padding: 50px 0 30px;
  }
  .news_container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .news_container .news_main {
    width: 100%;
  }
  .news_container .news_sidenav {
    width: 60%;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .news_sidenav_list {
    text-align: center;
  }
  /** 一覧 **/
  /** 詳細 **/
  .single_news .news_head {
    row-gap: 1em;
  }
  .single_news .news_head .cat {
    font-size: 14px;
  }
  .single_news .news_head .date {
    font-size: 14px;
  }
  .single_news .news_head .ttl {
    font-size: 18px;
  }
  .pager {
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pager_item {
    width: calc((100% - 40px) / 2);
  }
  .pager_item.all {
    margin: 0 calc((50% - 20px) / 2);
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

/*# sourceMappingURL=map/news.css.map */
