.note-archive__fv {
  display: flex;
  align-items: center;
  width: 100%;
  height: 266px;
  background: linear-gradient(rgba(59, 60, 60, 0.42), rgba(59, 60, 60, 0.42)), url("../images/note-subfv-bg.webp") center/cover no-repeat;
}
@media (max-width: 768px) {
  .note-archive__fv {
    height: 151px;
  }
}
.note-archive__fv-inner {
  width: 100%;
}
.note-archive__fv-title {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
@media (max-width: 768px) {
  .note-archive__fv-title {
    font-size: 36px;
  }
}
.note-archive__body {
  padding-block: 56px 80px;
}
.note-archive__lead {
  margin: 0 0 56px;
  font-size: 16px;
  line-height: 1.8;
  color: #3b3c3c;
}
@media (max-width: 768px) {
  .note-archive__lead {
    margin: 0 0 24px;
    line-height: 1.5;
  }
}
.note-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1024px) {
  .note-archive__list {
    gap: 48px 24px;
  }
}
@media (max-width: 768px) {
  .note-archive__list {
    grid-template-columns: 1fr;
    gap: calc(24px * 1.5);
  }
}
.note-archive__item {
  display: flex;
}
.note-archive__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px 10px 20px 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(59, 60, 60, 0.08);
  color: inherit;
  text-decoration: none;
}
@media (max-width: 768px) {
  .note-archive__card {
    border-radius: 20px;
  }
}
.note-archive__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 372/227;
  object-fit: cover;
}
@media (max-width: 768px) {
  .note-archive__thumb {
    border-radius: 10px;
  }
}
.note-archive__thumb--placeholder {
  background: #efefef;
}
.note-archive__card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}
.note-archive__card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #3b3c3c;
}
.note-archive__meta {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #3b3c3c;
}
.note-archive__empty {
  font-size: 16px;
  color: #3b3c3c;
}
.note-archive__pagination {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
  .note-archive__pagination {
    margin-top: 24px;
  }
}
.note-archive__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.note-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1;
  color: #3b3c3c;
  text-decoration: none;
  background: #fff;
}
.note-archive__pagination .current {
  background: #3b3c3c;
  color: #fff;
  border-color: #3b3c3c;
}
.note-archive__pagination .dots {
  border-color: transparent;
  background: transparent;
}
