.exhibition-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.exhibition-gallery {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.exhibition-gallery a {
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.exhibition-gallery a:hover {
  color: #4e5e66;
  opacity: 0.7;
}

.exhibition-location {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #888;
}

/* 備考 */
.note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: #666;
}

/* =========================
   スマホ
========================= */

@media (max-width: 768px) {

  .exhibition-gallery {
    font-size: 0.8rem;
  }

  .exhibition-location {
    font-size: 0.7rem;
  }

}