.archive .site-main {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}
/* .archive .container {
  margin: auto;
  color: #757575;
} */

.archive .container a {
  /* color: #757575; */
}

.archive .site-main {
  margin: 80px auto;
}
.archive .items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.archive .items-list .item {
  width: 100%;
  text-align: center;
}

.archive .item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ← トリミングして拡大表示 */
  object-position: center;
  /* ← 被写体を中央に配置 */
  transition: opacity 0.4s ease;
}

.archive .item a {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.archive .item__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.archive .item__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* hoverで切り替え */
.archive .item__image:hover img:nth-child(1) {
  opacity: 0;
}

.archive .item__image:hover img:nth-child(2) {
  opacity: 1;
}

.archive .item__name {
  font-size: 3.0rem;
}

.archive .item__catch {
  font-size: 1.9rem;
  /* text-align: left; */
}

.archive .item__contain {
  /* text-align: left; */
  font-size: 1.3rem;
}

.archive-section-title {
  /* font-family: "Noto Sans JP", sans-serif; */
  font-weight: 400;
  letter-spacing: 8px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .archive .items-list .item {
    width: calc((100% - 32px) / 2);
  }
  .archive .site-main {
  margin: 160px auto;
}
}

@media screen and (min-width: 1024px) {
  .archive .items-list .item {
    width: calc((100% - 32px) / 3);
  }
}