@charset "UTF-8";
/*----------------------------------------------------
	LAYOUT
----------------------------------------------------*/
.column_blog {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .column_blog {
    padding: 10px 0;
  }
}
.column_blog .lower_inner {
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .column_blog .lower_inner {
    margin: 0 auto;
  }
}

/*------ページング------------------------------*/
.paging {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .paging {
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 5px;
  }
}
.paging div {
  min-width: 160px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .paging div {
    width: calc(50% - 10px);
  }
  .paging div.prev {
    order: 2;
    margin-left: auto;
  }
  .paging div.listback {
    order: 3;
    width: 100%;
  }
}
.paging div a {
  display: block;
  padding: 10px 20px;
  background: #77191f;
  color: #fff;
  border: 1px solid #77191f;
}
.paging div.listback a {
  position: relative;
  background: #fff;
  color: #77191f;
}
@media screen and (max-width: 767px) {
  .paging div.listback a {
    width: 100%;
  }
}
.paging a {
  color: #5a3118;
  font-weight: 500;
}

/*------ページネーション------------------------------*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .pagination {
    gap: 14px;
    margin-top: 48px;
  }
}
.pagination .page_numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  color: #5a3118;
  background: #f0e8e4;
  border-radius: 50%;
  font-size: 1.5rem;
  font-family: "Outfit", "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.pagination .page_numbers:hover {
  background: #77191f;
  color: #fff;
}
.pagination .current {
  color: #fff;
  background: #77191f;
}
.pagination .dots {
  color: #5a3118;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.pagination {
  /* 前へ */
}
.pagination a.page_numbers:first-child:has(+ .current), .pagination a.page_numbers:first-child:has(+ .dots) {
  background: transparent;
  border-radius: 0;
  font-size: 0;
  min-width: 24px;
}
.pagination a.page_numbers:first-child:has(+ .current)::before, .pagination a.page_numbers:first-child:has(+ .dots)::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #5a3118;
  border-right: 2px solid #5a3118;
  transform: rotate(-135deg);
}
.pagination a.page_numbers:first-child:has(+ .current):hover, .pagination a.page_numbers:first-child:has(+ .dots):hover {
  background: transparent;
}
.pagination {
  /* 次へ */
}
.pagination a.page_numbers:last-child {
  background: transparent;
  border-radius: 0;
  font-size: 0;
  min-width: 24px;
}
.pagination a.page_numbers:last-child::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #5a3118;
  border-right: 2px solid #5a3118;
  transform: rotate(45deg);
}
.pagination a.page_numbers:last-child:hover {
  background: transparent;
}

.news_single_box .news_single_tag {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news_single_box .news_single_tag .news-item__badge {
  background: #77191f;
  color: #fff;
  padding: 3px 15px;
}
.news_single_box .news_single_tag .date {
  padding-bottom: 0;
}
.news_single_box .single_tit {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 15px 0;
}
.news_single_box h2 {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: solid 3px #ccc;
  position: relative;
  margin-bottom: 17px;
}
.news_single_box h2::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #5a3118;
  bottom: -3px;
  width: 15%;
}
.news_single_box h3 {
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}
.news_single_box h3::before {
  content: "";
  width: 5px;
  height: 42px;
  background: #5a3118;
  border-radius: 5px;
  display: block;
  margin-right: 15px;
}
.news_single_box h4 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 17px;
  color: #5a3118;
}
.news_single_box p {
  padding-bottom: 30px;
}/*# sourceMappingURL=style-blog.css.map */