.voice__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin: 8rem 13rem 10rem 8rem;
}
.voice__box {
  background-color: #FFF;
  border: 1px solid #CCCCCC;
  border-radius: 0.5rem;
  padding: 4rem;
}
.voice__category {
  color: #EA5B13;
  font-size: 1.6rem;
  font-weight: bold;
  border: 1px solid #EA5B13;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.voice__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 2rem 0rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #CCCCCC;
}
.voice__txt {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #353636;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1024px) {
  .voice__container {
    margin: 4rem 2rem;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .voice__box {
    padding: 2rem;
  }
  .voice__category {
    font-size: 0.8rem;
  }
  .voice__ttl {
    font-size: 1.2rem;
  }
  .voice__txt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .voice__container {
    margin: 2rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .voice__box {
    padding: 1.5rem;
  }
  .voice__ttl {
    font-size: 1.4rem;
  }
  .voice__txt {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=voice.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 .2s linear infinite;
}

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

/* active ボタン風スタイル */
.archive__category-list li.active a {
  background-color: #EA5B13;
  color: #fff;
}
.voice__container .archive__pagination {
  /* grid の最初から最後まで */
  grid-column: 1 / -1;

}