@charset "UTF-8";
/* CSS Document */

.af-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.archive-title {
  font-size: 42px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
	line-height: 1em;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.archive-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.archive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 0.5em;
}

.year {
  font-size: 16px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: bold;
  opacity: 0.6;
  margin-bottom: 10px;
}

.card-body h2 {
  font-size: 24px;
	font-weight: bold;
  margin-bottom: 12px;
	line-height: 1.4em;
}

.lead{
	margin-bottom: 40px;
	font-size: 16px;
	line-height: 1.6em;
}

.desc {
  line-height: 1.7;
  font-size: 14px;
	text-align: left!important;
}

/* SP */
@media (max-width: 768px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}