/*============================================================
	Shop Info
============================================================*/
.access,
.info {
  margin-top: 12.5rem;
}
@media only screen and (max-width: 767px) {
  .access,
  .info {
    margin-top: 7.692rem;
  }
}
.access .inner,
.info .inner {
  padding-top: 6.25rem;
  display: grid;
  grid-template-columns: auto 75%;
}
@media only screen and (max-width: 767px) {
  .access .inner,
  .info .inner {
    padding-top: 3.846rem;
    grid-template-columns: 1fr;
  }
}
@media print, screen and (min-width: 768px) {
  .access .inner h2,
  .info .inner h2 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .access .inner h2,
  .info .inner h2 {
    margin-bottom: 3.846rem;
  }
}
.access .inner > ul > li:not(:last-child),
.info .inner > ul > li:not(:last-child) {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: solid 1px #ccc;
}
@media only screen and (max-width: 767px) {
  .access .inner > ul > li:not(:last-child),
  .info .inner > ul > li:not(:last-child) {
    padding-bottom: 0.769rem;
    margin-bottom: 0.769rem;
  }
}
.access .inner > ul > li dl,
.info .inner > ul > li dl {
  display: grid;
  grid-template-columns: 27.7777777778% auto;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .access .inner > ul > li dl,
  .info .inner > ul > li dl {
    grid-template-columns: 1fr;
    font-size: 1.077rem;
  }
  .access .inner > ul > li dl dt,
  .info .inner > ul > li dl dt {
    margin-bottom: 0.5em;
  }
  .access .inner > ul > li dl dd,
  .info .inner > ul > li dl dd {
    padding-left: 1em;
  }
}

.access #map {
  width: 100%;
  aspect-ratio: 3/1;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .access #map {
    aspect-ratio: 1/1;
  }
}
.access .inner > ul > li dl dt {
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .access .inner > ul > li dl dt {
    font-size: 1.385rem;
  }
}
.access .inner > ul > li dl dd ul li {
  text-indent: -1em;
}
.access .inner > ul > li dl dd ul li:not(:last-child) {
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 767px) {
  .info figure {
    position: relative;
    aspect-ratio: 3/1;
    overflow: hidden;
  }
  .info figure img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
  }
}