/* Access Section */
.access {
  padding: 40px;
  background-color: var(--color-surface);
}

.access-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.access-head {
  text-align: center;
  margin-bottom: 60px;
}

.access-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.access-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.access-list {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.access-item {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

.access-place-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 60px;
}

.access-place-item {
  display: flex;
  flex-direction: column;
}

.access-place-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 24px;
}

.access-place-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  min-height: calc(1.5em * 2 + 16px + 1px);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.access-place-address dl {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px 16px;
  margin-bottom: 20px;
}

.access-place-address dt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

.access-place-address dd {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.access-place-address a {
  color: var(--color-text);
  text-decoration: none;
}

.access-place-link {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.access-place-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-background);
  text-decoration: none;
  padding: 10px 24px;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 6px;
  transition: all 0.6s ease-out;
}

.access-place-link a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C7.6 2 4 5.6 4 10c0 6 8 12 8 12s8-6 8-12c0-4.4-3.6-8-8-8zm0 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C7.6 2 4 5.6 4 10c0 6 8 12 8 12s8-6 8-12c0-4.4-3.6-8-8-8zm0 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.access-place-link a:hover {
  background-color: var(--color-background);
  color: var(--color-accent);
}

@media (max-width: 992px) {
  .access {
    padding: 80px 20px;
  }

  .access-head {
    margin-bottom: 40px;
  }

  .access-place-list {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .access-place-name {
    min-height: 0;
  }
}
