@charset "utf-8";


/* ----------------お知らせ一覧------------------ */
#lower-layer-news {
    padding: 60px 9.6%;
    background: var(--palegreen, #EEF4EC);
    position: relative;
    z-index: 1;
}

h2 {
    color: var(--green, #7AA270);
    font-family: "Zen Maru Gothic";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-color: #C1DFC4;
    text-decoration-thickness: 10%;
    text-underline-offset: 25%;
    text-underline-position: from-font;
}

.lower-layer-news-summary {
    padding: 40px;
    align-items: center;
    align-self: stretch;
    background: var(--primary-white);
    margin-top: 40px;
}

.lower-layer-news-unit {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 100px;
    margin: 40px 0 44px 0;
}

.lower-layer-news-date {
    color: var(--primary-black);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.lower-layer-news-text {
    color: var(--primary-black);
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
}

/* ----------------------------------------------------
お知らせスマホ用（〜767px）
---------------------------------------------------- */
@media screen and (max-width: 768px) {
    #lower-layer-news {
        padding: 30px 7.2%;
    }

    h2 {
        font-size: 2.0rem;
    }

    .lower-layer-news-summary {
        padding: 20px;
        margin-top: 24px;
    }

    .lower-layer-news-unit {
        display: block;
        margin: 0 0 23px 0;
    }

    .lower-layer-news-date {
        text-align: start;
    }

    .lower-layer-news-text {
        text-align: start;
        margin-top: 11px;
    }

}

/* ----------------ページネーション------------------ */
.Pagination {
  display: flex;
  flex-wrap: wrap;                    /* 幅が足りなければ折り返し */
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 1.2vw, 12px);       /* 余白も画面幅で可変 */
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  cursor: pointer;
}

.Pagination-Item-Link {
  display: flex;
  justify-content: center;
  align-items: center;
  width:  clamp(32px, 6.5vw, 45px);   /* ボタン幅を可変 */
  height: clamp(32px, 6.5vw, 45px);   /* ボタン高さを可変 */
  background: #fff;
  border: solid 2px var(--primary-green);
  border-radius: 4px;
  font-size: clamp(12px, 2.8vw, 14px);/* 文字サイズも可変 */
  color: var(--primary-green);
  font-weight: 700;
  transition: background .15s linear, color .15s linear;
}

.Pagination-Item-Link-Icon {
  width: 1.2em;                       /* テキストサイズに追従して縮小 */
  height: 1.2em;
}

.Pagination-Item-Link.isActive {
  background: var(--primary-green);
  color: #fff;
  pointer-events: none;
}

.Pagination-Item-Link:not(.isActive):hover {
  background: var(--primary-green);
  color: #fff;
}
