/* Company info table */
.info-table {
  width: 100%;
  max-width: 48rem;
}

.info-table__row {
  display: grid;
  gap: 0.25rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--color-line);
}

.info-table__row:first-child {
  border-top: 1px solid var(--color-line);
}

@media (min-width: 768px) {
  .info-table__row {
    grid-template-columns: 10rem 1fr;
    gap: 2rem;
  }
}

.info-table__label {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-main);
}

.info-table__value {
  font-size: var(--text-small);
  line-height: 1.75;
}

.info-table__value ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Map */
.access-map {
  margin-top: var(--space-block);
}

.access-map__title {
  margin-bottom: 1rem;
}

.access-map__note {
  margin-bottom: 1.5rem;
  font-size: var(--text-small);
}

.access-map__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-line);
}
