/* ========== アクセスページ ========== */

.access-section {
  padding: 40px 0;
}

.access-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 24px;
  text-align: center;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.access-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.access-card a {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.access-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.access-card-body {
  padding: 16px;
}

.access-card-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 8px;
}

.access-card-info {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}

.access-card-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 4px;
}

/* ========== レスポンシブ ========== */
@media (min-width: 768px) {
  .access-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
