/* 投稿用 */
/* 挨拶文：見出し */
.wp-block-heading.has-background {
  position: relative;
  border-radius: 10px;
  padding: 12px 16px 12px 20px;
}

.wp-block-heading.has-background::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 6px;
  background: #7fa4cb;
  border-radius: 3px;
}

/* MAILボタン */
.mail-btn {
  width: 165px;
  display: inline-block;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  text-align: right;
  border-radius: 5px;
  background: url("../images/icon/letter.png") no-repeat left 10px center / 25px;
  background-color: #5e7a97;
}

/* MAILボタン */
.mail-btn:hover {
  background: #2c759e;
}

/* NEWS一覧ボタン */
.news-btn {
  display: inline-block;
  background: #5dae8b;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

/* NEWS一覧ボタンホバー */
.news-btn:hover {
  background: #3dae8b;
}

/* moreボタン */
.more-btn {
  align-items: center;
  padding: 0 10px;
  border: 1.5px solid #7fa4cb;
  border-radius: 999px;
  color: #7fa4cb;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  transition: all 0.3s ease;
}

/* ホバー */
.more-btn:hover {
  background: #7fa4cb;
  color: #fff;
}

/* ABOUTボタン */

/* ボタン */
.navi-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 60px;          /* ← 固定高さ（これが一番重要） */
  padding: 0 20px;       /* ← 高さ固定するので上下padding削除 */
  background: #ddd;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  box-sizing: border-box;
}

/* ホバー */
.navi-btn:hover {
  background: #cfcfcf;
}

/* アイコン（丸＋▶） */
.navi-btn .icon {
  width: 24px;
  height: 24px;
  background: #7fa2c9;
  border-radius: 50%;
  position: relative;
}

/* ▶マーク */
.navi-btn .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.highlight {
  color: #f1b542;
  font-weight: bold;
}


/* NEWバッジ */
.new-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;

  background: #5176f0;
  color: #ffffff;
  border-radius: 999px;

  font-size: 10px;
  font-weight: bold;
  vertical-align: middle;
}

.pagination {
  margin-top: 30px;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 6px 10px;
  background: #f0f0f0;
  border-radius: 4px;
  text-decoration: none;
  color: #333333;
}

.pagination .current {
  background: #6b8db3;
  color: #ffffff;
}

.pagination .page-numbers:hover {
  background: #d0e0f0;
}
