/* ===== お知らせ一覧リンク調整 (2026.06追加) ===== */
.c-list--info .-title a.c-link--info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  text-decoration: none;
}
.c-list--info .-title a.c-link--info:hover {
  text-decoration: none;
  opacity: 0.7;
}
.c-list--info .-title .-arrow {
  margin-left: 1em;
  flex-shrink: 0;
  color: #333;
}
/* ===== トップページ お知らせ年タブ ===== */
.p-home__sec4 .-index {
  height: auto;
  margin-bottom: 20px;
  padding-bottom: 0;
  display: block;
}
.p-home__sec4 .-index ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.p-home__sec4 .-index ul li {
  list-style: none;
  margin: 0 20px 0 0;
  padding: 0;
}
.p-home__sec4 .-index ul li a {
  text-decoration: underline;
  color: #4d4d4d;
}
.p-home__sec4 .-index ul li a:hover {
  text-decoration: none;
}
/* 古い年は非表示(infoページと同じ挙動) */
.p-home__sec4 .-index ul li:nth-last-child(2),
.p-home__sec4 .-index ul li:nth-last-child(3),
.p-home__sec4 .-index ul li:nth-last-child(4),
.p-home__sec4 .-index ul li:nth-last-child(5),
.p-home__sec4 .-index ul li:nth-last-child(6) {
  display: none;
}
/* ===== トップページ メインビジュアル下の最新お知らせバー ===== */
.p-home__newsbar {
  background: #f5f5f5;
  padding: 15px 20px;
}
.p-home__newsbar a {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1040px;
  margin: 0 auto;
  color: #4d4d4d;
  text-decoration: none;
  font-size: 0.95em;
}
.p-home__newsbar a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.p-home__newsbar .-cat {
  font-weight: bold;
}
/* ===== お知らせ個別ページの余白調整 ===== */
.p-info__sec1.-single .c-box--base {
  padding-top: 30px;
}
/* ===== お知らせ個別ページ タイトル下線を消す ===== */
.p-info__sec1.-single .c-headline--1 > span {
  border-bottom: none;
}
/* ===== お知らせ個別ページ タイトル下の余白調整 ===== */
.p-info__sec1.-single .c-headline--1 {
  margin-bottom: 10px;
}
/* ===== お知らせ個別ページ 区切り線の余白調整 ===== */
.p-info__sec1.-single .wp-block-separator {
  margin-top: 20px;
  margin-bottom: 30px;
}
/* ===== お知らせ個別ページ タイトル文字色を黒に ===== */
.p-info__sec1.-single .c-headline--1 > span {
  color: #4d4d4d;
}
/* ===== お知らせ個別ページ タイトルサイズ・余白調整 ===== */
.p-info__sec1.-single .c-headline--1 > span {
  font-size: 1.5em;
}
.p-info__sec1.-single .c-headline--1 {
  margin-bottom: 5px;
}
/* ===== トップページ 最新お知らせバー スマホ対応 ===== */
@media screen and (max-width: 899px) {
  .p-home__newsbar {
    padding: 12px 15px;
  }
  .p-home__newsbar a {
    flex-wrap: nowrap;
    font-size: 0.85em;
    gap: 8px;
  }
  .p-home__newsbar .-cat,
  .p-home__newsbar .-sep,
  .p-home__newsbar .-date {
    flex-shrink: 0;
  }
  .p-home__newsbar .-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
/* ===== お知らせ個別ページ テーブルデザイン調整 ===== */
.p-info__sec1.-single .wp-block-table table {
  width: 100%;
}
.p-info__sec1.-single .wp-block-table table td:first-child {
  background: #f5f5f5;
  width: 180px;
  white-space: nowrap;
}
.p-info__sec1.-single .wp-block-table {
  margin-bottom: 40px;
}
