.notice__grid {
  margin: 8rem 12rem 0 8rem;
}

@media screen and (max-width: 1024px) {
  .notice__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    display: grid;
    margin: 2rem 2rem;
  }
}/*# sourceMappingURL=news.css.map */

/* フェード用 */
.voice__container,
.notice__container {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.voice__container.fade-out,
.notice__container.fade-out {
  opacity: 0;
}

/* ローディングスピナー */
.loading {
  display: flex;
  width: 100%;           /* ここを追加 */
  height: 10rem;         /* 必要に応じて調整 */
  align-items: center;
  justify-content: center;
}
.loading::after {
  content: "";
  box-sizing: border-box;
  width: 3rem;
  height: 3rem;
  border: 0.4rem solid #145D99;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* active ボタン風スタイル */
.archive__category-list li.active a {
  background-color: #EA5B13;
  color: #fff;
}

.contact-banner {
  margin-top: 16rem ;
}
