/* access-page.css */
/* AccessOverview.css */
.access-overview .access-overview-container {
    display: grid;
    grid-template-columns: 352px 1fr;
    gap: var(--gap-lg);
  }
@media all and (max-width: 1087.98px) {
.access-overview .access-overview-container {
      grid-template-columns: 1fr;
  }
    }
.access-overview .access-overview-map {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }
.access-overview .map-more {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
.access-overview .access-overview-detail {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }
.access-overview .access-overview-detail-more {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
.access-overview .detail-group {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }
.access-overview .transportation-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }
.access-overview .transportation-item {
    /* style */
  }
.access-overview .transportation-title {
    font-weight: var(--bold);
  }
.access-overview .transportation-detail {
    /* style */
  }
.access-overview .contact-info {
    /* style */
  }
.access-overview .contact-list {
    /* style */
  }
.access-overview .contact-item .postal-code {
      /* style */
    }
.access-overview .contact-item .address {
      /* style */
    }
/* style */
.access-overview .contact-item .phone-info .phone {
        /* style */
      }
.access-overview .contact-item .phone-info .separator {
        /* style */
      }
.access-overview .contact-item .phone-info .fax {
        /* style */
      }
/* AccessRouteGallery.css */
.access-route-gallery {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
@media all and (max-width: 1087.98px) {
.access-route-gallery {
    display: flex;
    flex-direction: column;
    gap: 24px 0;
}
  }
.access-route-gallery .gallery-description {
    display: flex;
    flex-direction: column;
    gap: 24px 0;
  }
@media all and (max-width: 1087.98px) {
.access-route-gallery .gallery-description {
      gap: 16px 0;
  }
    }
.access-route-gallery .gallery-description-note {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-300);
    border-radius: 12px;
  }
.access-route-gallery .gallery-item-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }
@media all and (max-width: 1087.98px) {
.access-route-gallery .gallery-item-container {
      grid-template-columns: 1fr;
      gap: 0;
  }
    }
.access-route-gallery .gallery-item {
    display: grid;
    grid-template-columns: 1fr 40px;
  }
@media all and (max-width: 1087.98px) {
.access-route-gallery .gallery-item {
      grid-template-columns: 1fr;
  }
    }
.access-route-gallery .gallery-item-info {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
  }
@media all and (max-width: 1087.98px) {
.access-route-gallery .gallery-item-info {
      gap: 8px 0;
  }
    }
.access-route-gallery .gallery-item-image {
    overflow: clip;
    border-radius: 8px;
  }
.access-route-gallery .gallery-item-image > img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
@media all and (min-width: 1088px) {
.access-route-gallery .gallery-item-image {
      pointer-events: all;
      cursor: pointer;
      transition: all 0.3s var(--ease-quint-out);
  }

      .access-route-gallery .gallery-item-image:hover {
        opacity: 0.8;
      }
    }
@media all and (max-width: 1087.98px) {
.access-route-gallery .gallery-item-image {
      pointer-events: none;
  }
    }
.access-route-gallery .gallery-item-description {
    /* style */
  }
.access-route-gallery .gallery-item-number {
    /* style */
  }
@media all and (max-width: 1087.98px) {
.access-route-gallery .gallery-item-arrow {
      justify-self: center;
      height: 41px;
  }
    }
.access-route-gallery[data-route-id='hamamatsucho_daimon'] .gallery-item:nth-of-type(1) .gallery-item-arrow img {
        display: none;
      }
/* AccessRouteGalleryModal.css */
.access-route-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
}
.access-route-gallery-modal::-webkit-scrollbar {
    display: none;
  }
.access-route-gallery-modal::backdrop {
    background: transparent;
  }
.access-route-gallery-modal .gallery-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: auto;
    cursor: pointer;
    background: var(--bg-modal);
  }
/* ----- layout */
.access-route-gallery-modal .gallery-modal-container {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100%);
    pointer-events: none;
  }
.access-route-gallery-modal .gallery-modal-content {
    display: grid;
    grid-template-columns: auto 650px auto;
    gap: 16px;
    pointer-events: auto;
  }
/* ----- navigation */
.access-route-gallery-modal .gallery-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(calc(100% + 8px), -100%);

    /* style */
  }
.access-route-gallery-modal .gallery-modal-nav {
    /* style */
  }
.access-route-gallery-modal .gallery-modal-prev {
    place-self: center flex-end;
  }
.access-route-gallery-modal .gallery-modal-next {
    place-self: center flex-start;
  }
/* ----- content */
.access-route-gallery-modal .gallery-modal-item-container {
    position: relative;
    display: grid;
    max-width: 650px;
    min-height: 300px;
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 25%);
  }
.access-route-gallery-modal .gallery-modal-item {
    display: flex;
    flex-direction: column;
    grid-row: 1 / -1;
    grid-column: 1 / -1;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    background: #fff;
  }
.access-route-gallery-modal .gallery-modal-item-image {
    /* style */
  }
.access-route-gallery-modal .gallery-modal-item-description {
    /* style */
  }
