/* タグ一覧ページの時 */
/* エコツーリズム推進部ページを見ているとき */
body.tag-eco .tag-button.eco {
  background-color: #5b8a8c;
  color: #fff;
  font-weight: 500;
  border-color: #5b8a8c;
}

/* ガイド部ページを見ているとき */
body.tag-guide .tag-button.guide {
  background-color: #5b8a8c;
  color: #fff;
  font-weight: 500;
  border-color: #5b8a8c;
}

/* マリンアクティビティガイド部ページを見ているとき */
body.tag-marine .tag-button.marine {
  background-color: #5b8a8c;
  color: #fff;
  font-weight: 500;
  border-color: #5b8a8c;
}

/* トレッキングガイド部ページを見ているとき */
body.tag-trekking .tag-button.trekking {
  background-color: #5b8a8c;
  color: #fff;
  font-weight: 500;
  border-color: #5b8a8c;
}

/* ツシマヤマネコガイド部ページを見ているとき */
body.tag-yamaneko .tag-button.yamaneko {
  background-color: #5b8a8c;
  color: #fff;
  font-weight: 500;
  border-color: #5b8a8c;
}

/* 地産地消推進部ページを見ているとき */
body.tag-local .tag-button.local {
  background-color: #5b8a8c;
  color: #fff;
  font-weight: 500;
  border-color: #5b8a8c;
}


.blog-archive {
  background: #faf9f5;
  padding: 80px 0;
  color: #4b3a34;
}

.blog-archive .container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
}

.page-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #94c2c3;
  margin-top: 16px;
}

.page-title .highlight-circle {
  position: absolute;
  left: -40px;
  top: 33%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  background: rgba(228, 153, 130, 0.5);
  border-radius: 50%;
  z-index: -1;
  filter: blur(8px);
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 40px;
  color: #999;
}

/*/////////////////////////////////////////////////////*/
.page-title .highlight-circle {
  position: absolute;
  left: -10px;
  top: 20%;
  width: 70px;
  height: 70px;
}

.post-content {
  margin-top: 20px;
}



@media (max-width: 768px) {

  .blog-tabs {
    margin: 40px 0 24px;
  }

  .blog-archive {
    padding: 40px 0 120px;
  }

}

.load-more-wrap {
  text-align: right;
  margin-top: 40px;
}

/* ボタン全体のスタイル */
#load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  color: #4b3a34;
  position: relative;
  padding: 12px 24px;
  background-color: transparent;
}

/* テキスト部分 */
#load-more .btn-text {
  z-index: 2;
}

/* 矢印と円を横並びに */
.arrow-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog-circle {
  position: absolute;
  left: 110px;
  width: 65px;
  height: 65px;
  background-color: #e99d83c2;
  border-radius: 50%;
  z-index: 1;
  transition: all 1.5s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* ホバー時 */

.arrow-wrap:hover .blog-circle {
  transform: scale(1.2);
  filter: blur(10px);
}

.arrow-wrap:hover .arrow-img {
  transform: translateX(16px);
}


/* 投稿ページ */
.article-title {
  font-size: 26px;
  font-weight: bold;
  color: #4b3a34;
  line-height: 1.6;
  margin: 32px 0 16px;
}

.blog-single .post-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #4b3a34;
}

.post-meta {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
  gap: 10px;
}


.post-category {
  font-weight: bold;
  color: #5b8a8c;
}

.blog-single .post-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.blog-single .post-tags .tag-button {
  background-color: #94c2c3;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
}

.blog-single .post-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 32px;
}

.blog-single .post-content p {
  line-height: 2.5;
  margin-bottom: 1.5em;
  color: #4b3a34;
}

.back-to-list {
  margin-top: 120px;
}

.btn-outline {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.btn-outline :hover {
  font-weight: 500;
}




@media (max-width: 768px) {
  .post-meta {
    flex-wrap: wrap;
  }

}

/* 記事ページのカスタマイズ */
.post-image {
  margin: 40px auto;
}

.post-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px；
}

.post-content p {
  margin-bottom: 1.5em;
  line-height: 1.8;
  font-size: 1.2rem;
}