/*===============================
archive-news
================================*/
.archive-news .reform-section {
 background: #f0ece8;
 padding: 60px 0;
}

.archive-news .wrap-l {
 background: #fff;
 margin: 0 auto;
 box-sizing: border-box;
}

.archive-news .news-inner-articles {
 display: flex;
 flex-wrap: wrap;
 gap: 40px;
 justify-content: space-between;
}

.archive-news .news-article {
 width: calc(32.333% - 20px);
}

.archive-news .news-article img {
 width: 100%;
 height: auto;
 display: block;
}

.archive-news .news-date {
 font-weight: bold;
 font-size: 14px;
 color: #fff;
 margin-top: 10px;
}

.archive-news .news-title {
 font-size: 16px;
 font-weight: bold;
 color: #fff;
 margin-top: 5px;
 line-height: 1.6;
}

/* ページネーション */
.archive-news .pagination {
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 gap: 10px;
 margin-top: 60px;
}

.archive-news .pagination .page-num,
.archive-news .pagination .prev,
.archive-news .pagination .next {
 display: inline-block;
 padding: 8px 16px;
 border-radius: 4px;
 background-color: #eee;
 color: #51443b;
 font-weight: bold;
 text-decoration: none;
 transition: background-color 0.3s ease, color 0.3s ease;
 font-size: 14px;
}

.archive-news .pagination .page-num:hover,
.archive-news .pagination .prev:hover,
.archive-news .pagination .next:hover {
 background-color: #c7b39e;
 color: #fff;
}

.archive-news .pagination .current {
 background-color: #51443b;
 color: #fff;
 pointer-events: none;
 cursor: default;
}

@media screen and (max-width: 768px) {
 .archive-news .news-article {
  width: 100%;
 }
}
/*===============================
single-news
================================*/
.single-news .news-featured img {
 width: 80%;
 height: auto;
 margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
 .single-news .news-featured img {
  width: 60%;
  height: auto;
  margin-bottom: 30px;
 }
}
.single-news .news-featured {
 text-align: center;
}
.single-news .news-date {
 font-size: 14px;
 color: #51443b;
 font-weight: bold;
 margin-bottom: 10px;
}

.single-news .news-title {
 font-size: 18px;
 font-weight: bold;
 line-height: 1.6;
 margin-bottom: 30px;
 color: #51443b;
}
@media screen and (min-width: 768px) {
 .single-news .news-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #51443b;
 }
}
.single-news .news-content {
 font-size: 16px;
 color: #51443b;
 line-height: 1.8;
}

.single-news .news-content h2 {
 font-size: 18px;
 margin-top: 30px;
 margin-bottom: 10px;
 border-left: 4px solid #96c362;
 padding-left: 10px;
}

.single-news .news-content ul {
 margin: 0 0 20px 1.2em;
 padding: 0;
 list-style-type: disc;
}

.single-news .news-content a {
 color: #4b84c4;
 text-decoration: underline;
}

.single-news .post-navigation {
 display: flex;
 justify-content: space-between;
 margin-top: 80px;
 padding-top: 40px;
 border-top: 1px solid #ccc;
 gap: 20px;
}

.single-news .post-navigation a {
 display: inline-block;
 padding: 10px 20px;
 background-color: #eee;
 color: #51443b;
 font-weight: bold;
 border-radius: 4px;
 font-size: 14px;
 text-decoration: none;
 transition: background-color 0.3s ease, color 0.3s ease;
}

.single-news .post-navigation a:hover {
 background-color: #c7b39e;
 color: #fff;
}
/*===============================
archive-blog
================================*/
.archive-blog .reform-section {
 padding: 60px 0;
}
.archive-blog .blog-card-container {
 background: #f0ece8;
 padding: 30px;
 border-radius: 6px;
}
.archive-blog .wrap-l {
 background: #fff;
 margin: 0 auto;
 box-sizing: border-box;
}

.archive-blog .blog-inner-articles {
 display: flex;
 flex-wrap: wrap;
 gap: 40px;
 justify-content: space-between;
}

.archive-blog .blog-article {
 width: calc(32.333% - 20px);
}

.archive-blog .blog-article img {
 width: 100%;
 height: auto;
 display: block;
}

.archive-blog .blog-date {
 font-weight: bold;
 font-size: 14px;
 color: #fff;
 margin-top: 10px;
}

.archive-blog .blog-title {
 font-size: 16px;
 font-weight: bold;
 color: #fff;
 margin-top: 5px;
 line-height: 1.6;
}

/* ページネーション */
.archive-blog .pagination {
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 gap: 10px;
 margin-top: 60px;
}

.archive-blog .pagination .page-num,
.archive-blog .pagination .prev,
.archive-blog .pagination .next {
 display: inline-block;
 padding: 8px 16px;
 border-radius: 4px;
 background-color: #eee;
 color: #51443b;
 font-weight: bold;
 text-decoration: none;
 transition: background-color 0.3s ease, color 0.3s ease;
 font-size: 14px;
}

.archive-blog .pagination .page-num:hover,
.archive-blog .pagination .prev:hover,
.archive-blog .pagination .next:hover {
 background-color: #d1dfc0;
 color: #fff;
}

.archive-blog .pagination .current {
 background-color: #97a08b;
 color: #fff;
 pointer-events: none;
 cursor: default;
}

@media screen and (max-width: 768px) {
 .archive-blog .blog-article {
  width: 100%;
 }
}
/* =======================
single-blog
======================= */

.single-blog .blog-featured {
 text-align: center;
 margin-bottom: 30px;
}

.single-blog .blog-featured img {
 width: 80%;
 height: auto;
}

@media screen and (min-width: 768px) {
 .single-blog .blog-featured img {
  width: 60%;
 }
}

.single-blog .blog-date {
 font-size: 14px;
 color: #51443b;
 font-weight: bold;
 margin-bottom: 10px;
}

.single-blog .blog-title {
 font-size: 20px;
 font-weight: bold;
 line-height: 1.6;
 margin-bottom: 30px;
 color: #51443b;
}

@media screen and (min-width: 768px) {
 .single-blog .blog-title {
  font-size: 26px;
 }
}

.single-blog .blog-content {
 font-size: 16px;
 color: #51443b;
 line-height: 1.8;
}

.single-blog .blog-content h2 {
 font-size: 18px;
 margin-top: 30px;
 margin-bottom: 10px;
 border-left: 4px solid #96c362;
 padding-left: 10px;
}

.single-blog .blog-content ul {
 margin: 0 0 20px 1.2em;
 padding: 0;
 list-style-type: disc;
}

.single-blog .blog-content a {
 color: #4b84c4;
 text-decoration: underline;
}

/* ナビゲーション */
.single-blog .post-navigation {
 display: flex;
 justify-content: space-between;
 margin-top: 80px;
 padding-top: 40px;
 border-top: 1px solid #ccc;
 gap: 20px;
}

.single-blog .post-navigation a {
 display: inline-block;
 padding: 10px;
 background-color: #eee;
 color: #51443b;
 font-weight: bold;
 border-radius: 4px;
 font-size: 14px;
 text-decoration: none;
 transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
 .single-blog .post-navigation a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #eee;
  color: #51443b;
  font-weight: bold;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
 }
}
.single-blog .post-navigation a:hover {
 background-color: #d1dfc0;
 color: #fff;
}
/* ============================
   archive-feedback
============================ */
.archive-feedback .feedback-card-container {
 background: #f0ece8;
 padding: 30px;
 border-radius: 6px;
}

.archive-feedback .feedback-inner-articles {
 display: flex;
 flex-wrap: wrap;
 gap: 40px;
 justify-content: space-between;
}

.archive-feedback .feedback-article {
 width: calc(32.333% - 20px);
}

.archive-feedback .feedback-article img {
 width: 100%;
 height: auto;
 display: block;
}
/* ============================

============================
.archive-feedback .reform-id {
 font-size: 14px;
 font-weight: bold;
 color: #fff;
 margin-top: 10px;
}

.archive-feedback .reform-caption {
 font-size: 16px;
 font-weight: bold;
 color: #fff;
 margin-top: 5px;
 line-height: 1.6;
} */

/* バッジ色（カテゴリ別） */

/* ページネーション */
.archive-feedback .pagination {
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 gap: 10px;
 margin-top: 60px;
}

.archive-feedback .pagination .page-num,
.archive-feedback .pagination .prev,
.archive-feedback .pagination .next {
 display: inline-block;
 padding: 8px 16px;
 border-radius: 4px;
 background-color: #eee;
 color: #51443b;
 font-weight: bold;
 text-decoration: none;
 transition: background-color 0.3s ease, color 0.3s ease;
 font-size: 14px;
}

.archive-feedback .pagination .page-num:hover,
.archive-feedback .pagination .prev:hover,
.archive-feedback .pagination .next:hover {
 background-color: #d1dfc0;
 color: #fff;
}

.archive-feedback .pagination .current {
 background-color: #97a08b;
 color: #fff;
 pointer-events: none;
 cursor: default;
}

@media screen and (max-width: 768px) {
 .archive-feedback .feedback-article {
  width: 100%;
 }
}
/* ============================
   single-feedback
============================ */
.single-feedback .feedback-featured {
 text-align: center;
 margin-bottom: 30px;
}
.single-feedback .feedback-featured img {
 width: 80%;
 height: auto;
}
@media screen and (min-width: 768px) {
 .single-feedback .feedback-featured img {
  width: 60%;
 }
}

.single-feedback .feedback-meta {
 text-align: center;
 margin-bottom: 10px;
}
.single-feedback .reform-id {
 font-weight: bold;
 color: #51443b;
 font-size: 14px;
 display: inline-block;
 margin-right: 10px;
}
.single-feedback .category-badge {
 font-size: 12px;
 font-weight: bold;
 color: #fff;
 padding: 2px 8px;
 border-radius: 3px;
 display: inline-block;
}
.badge-blue {
 background-color: #7a2c1f;
}
.badge-brown {
 background-color: #7a2c1f;
}
.badge-green {
 background-color: #a45b3a;
}
.badge-orange {
 background-color: #c78a47;
}
.badge-pink {
 background-color: #e3b06e;
}
.single-feedback .feedback-title {
 font-size: 24px;
 font-weight: bold;
 text-align: center;
 margin-bottom: 30px;
 border-bottom: 2px solid #8bc34a;
 display: inline-block;
}

.single-feedback .feedback-content {
 font-size: 16px;
 color: #51443b;
 line-height: 1.8;
 padding: 0 10px;
}

.single-feedback .post-navigation {
 display: flex;
 justify-content: space-between;
 margin-top: 80px;
 padding-top: 40px;
 border-top: 1px solid #ccc;
 gap: 20px;
}

.single-feedback .post-navigation a {
 display: inline-block;
 padding: 10px;
 background-color: #eee;
 color: #51443b;
 font-weight: bold;
 border-radius: 4px;
 font-size: 14px;
 text-decoration: none;
 transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
 .single-feedback .post-navigation a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #eee;
  color: #51443b;
  font-weight: bold;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
 }
}
.single-feedback .post-navigation a:hover {
 background-color: #c7b39e;
 color: #fff;
}
