@charset "UTF-8";


/* =========================================================
   01. お知らせ（トップ）
   ========================================================= */

.home-news {
  padding: 64px 0;
  background: #ffffff;
}

.home-news__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ddd8cb;
}

.home-news__sub {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-main-dark);
}

.home-news__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.3;
  color: var(--color-main-dark);
}

.home-news__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-main);
  text-decoration: none;
  white-space: nowrap;
}

.home-news__link:hover {
  color: var(--color-main-dark);
  text-decoration: underline;
}

.home-news__list {
  display: grid;
  gap: 16px;
}

.home-news__item {
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: none;
}

.home-news__item:hover {
  box-shadow: none;
  transform: none;
}

/* =========================================================
   トップお知らせカード
   ========================================================= */

.home-news__item-link {
  position: relative;
  display: block;
  padding: 18px 64px 18px 24px;
  background: #ffffff;
  border: 1px solid #d8e4dc;
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
  cursor: pointer;
}

.home-news__item-link::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
  color: var(--color-main-dark);
  opacity: 0.72;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    color 0.25s ease;
}

.home-news__item-link:hover,
.home-news__item-link:focus {
  transform: translateY(-4px);
  background: #f8fcf9;
  border-color: #bfcfc4;
  box-shadow: 0 10px 20px rgba(68, 108, 84, 0.08);
}

.home-news__item-link:hover::after,
.home-news__item-link:focus::after {
  transform: translateY(-50%) translateX(4px);
  opacity: 1;
  color: var(--color-main);
}

.home-news__date {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: #6a746b;
}

.home-news__category {
  display: none;
}

.home-news__item-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-main-dark);
  text-align: left;
}

.home-news__summary {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #5f675f;
  text-align: left;
}

.home-news__empty {
  margin: 0;
  font-size: 15px;
  color: #666666;
}
/* =========================================================
   02. お知らせ一覧ページ
   ========================================================= */

.news-page {
  padding: 56px 0 72px;
  background: #ffffff;
}

.page-heading {
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ddd8cb;
}

.page-heading__sub {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-main-dark);
}

.page-heading__title {
  margin: 0;
  font-size: 34px;
  line-height: 1.4;
  color: var(--color-main-dark);
}

/* =========================================================
   新カード一覧
   ========================================================= */

.news-card-list {
  display: grid;
  gap: 0;
}

.news-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
  transition: none;
}

.news-card:hover {
  box-shadow: none;
  transform: none;
}

/* =========================================================
   左本文
   ========================================================= */

.news-card__content {
  flex: 1;
  min-width: 0;
}

.news-card__meta {
  display: block;
  margin-bottom: 8px;
}

.news-card__date {
  font-size: 13px;
  font-weight: 700;
  color: #6a746b;
  letter-spacing: 0;
}

.news-card__tag,
.news-detail__category {
  display: none;
}

.news-card__body {
  min-width: 0;
}

.news-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-main-dark);
  word-break: break-word;
}

.news-card__summary {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #5f675f;
}

/* =========================================================
   右ボタン
   ========================================================= */

.news-card__action {
  flex-shrink: 0;
  margin-top: 0;
}

.news-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 180px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--color-main);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition:
    background-color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.news-card__button::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
}

.news-card__button:hover {
  background: var(--color-main-dark);
  opacity: 1;
  transform: translateY(-1px);
}

.news-archive__empty {
  margin: 0;
  font-size: 15px;
  color: #666666;
}


/* =========================================================
   ページネーション
   ========================================================= */

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.news-pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--color-main);
  border-radius: 999px;
  background: transparent;
  color: var(--color-main);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.news-pagination__item:hover,
.news-pagination__item.is-current {
  background: var(--color-main);
  color: #ffffff;
}

.news-pagination__item--arrow {
  font-size: 22px;
  font-weight: 500;
}

/* =========================================================
   03. お知らせ詳細
   ========================================================= */

.news-detail-page {
  padding: 56px 0 72px;
  background: #ffffff;
}

.news-detail__article {
  padding: 28px 0;
}

.news-detail__meta {
  margin-bottom: 16px;
}

.news-detail__date {
  display: inline-block;
  margin-right: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #6a746b;
}

.news-detail__category {
  display: none;
}

.news-detail__title {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.5;
  color: var(--color-main-dark);
}

.news-detail__body {
  font-size: 16px;
  line-height: 2;
  color: #4f5f56;
}

.news-detail__back {
  margin-top: 32px;
}

.news-detail__back-link {
  display: inline-block;
  color: var(--color-main);
  font-weight: 700;
  text-decoration: none;
}

.news-detail__back-link:hover {
  color: var(--color-main-dark);
  text-decoration: underline;
}

/* =========================================================
   04. レスポンシブ
   ========================================================= */

@media (max-width: 767px) {
  /* =========================================================
     お知らせ（トップ）スマホ
     ========================================================= */

  .home-news {
    padding: 48px 0;
  }

  .home-news__header {
    display: block;
  }

  .home-news__title {
    font-size: 24px;
  }

  .home-news__link {
    margin-top: 12px;
  }

  .home-news__item-link {
    padding: 16px;
  }

  .home-news__item-title {
    font-size: 18px;
  }

  /* =========================================================
     お知らせ一覧ページ スマホ
     ========================================================= */

  .news-page {
    padding: 40px 0 56px;
  }

  .page-heading {
    margin-bottom: 28px;
  }

  .page-heading__title {
    font-size: 28px;
  }

  .news-card-list {
    gap: 20px;
  }

  .news-card {
    display: block;
    padding: 22px 18px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
  }

  .news-card__meta {
    gap: 10px;
    margin-bottom: 12px;
  }

  .news-card__date {
    font-size: 16px;
  }

  .news-card__title {
    font-size: 18px;
    line-height: 1.6;
  }

  .news-card__summary {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.8;
  }

  .news-card__action {
    margin-top: 16px;
    text-align: left;
  }

  .news-card__button {
    width: 100%;
    max-width: 100%;
    min-height: 50px;
    font-size: 15px;
  }

  .news-pagination {
    gap: 8px;
    margin-top: 32px;
  }

  .news-pagination__item {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  /* =========================================================
     お知らせ詳細 スマホ
     ========================================================= */

  .news-detail-page {
    padding: 40px 0 56px;
  }

  .news-detail__title {
    font-size: 24px;
  }

  .news-detail__body {
    font-size: 15px;
  }
}