@charset "UTF-8";
/*
Theme Name: Snow Monkey Child
Template: snow-monkey
Description: Snow Monkey の子テーマです
Author: Your Name
Version: 1.0.0
*/
/* --- ここから下にカスタマイズ用のCSSを書く --- */
/* カテゴリーフィルターの装飾 */
.search-filter-tags {
  margin-bottom: 30px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}

.filter-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.filter-btn {
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 8px 16px;
  margin: 0 8px 8px 0;
  border-radius: 5px;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid #ddd;
  transition: 0.2s;
}

.filter-btn:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* サイドバー用フィルターチップのスタイル */
.filter-chip {
  display: inline-block;
  padding: 5px 12px;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s;
  color: #666;
}

/* ON（選択中）の状態 */
.filter-chip.is-active {
  background: #333;
  color: #fff;
  border-color: #333;
}

.filter-chip:hover:not(.is-active) {
  background: #e0e0e0;
}

/* NEWS見出しの親要素を相対配置にする */
.news-heading-wrapper {
  position: relative;
  display: flex;
  justify-content: center; /* 見出しを中央に */
  align-items: center;
  margin-bottom: 20px;
}

/* 「もっと見る」リンクを右端に絶対配置 */
.news-more-link {
  position: absolute;
  right: 0;
  bottom: 10px; /* 位置は適宜調整してください */
  font-size: 14px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #333; /* 下線をつけてリンクと分かりやすく */
  transition: opacity 0.3s;
}

.news-more-link:hover {
  opacity: 0.7;
}

/* スマホ表示の調整（重なり防止） */
@media screen and (max-width: 639px) {
  .news-heading-wrapper {
    flex-direction: column; /* スマホでは縦並びにして余裕を持たせる */
  }
  .news-more-link {
    position: static;
    margin-top: 10px;
  }
}
/* ボタンの外側の余白調整 */
.news-footer {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
}

/* ボタン本体のデザイン */
.news-btn-more {
  display: inline-block;
  padding: 14px 50px;
  background-color: #0073aa; /* サイトの青色に合わせて調整してください */
  color: #fff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px; /* 丸みのあるデザイン */
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ホバー（マウスを乗せた時）の動き */
.news-btn-more:hover {
  background-color: #005177;
  transform: translateY(-2px); /* 少し浮き上がる演出 */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: #fff !important;
}

/* 矢印アイコンの間隔 */
.news-btn-more i {
  margin-left: 10px;
  font-size: 0.9em;
}/*# sourceMappingURL=style.css.map */