#access .contents>section {
  padding: 0;
}

#access .contents h3 {
  color: var(--primary-color);
  text-transform: uppercase;
  text-align: center;
}

#access .contents h3 span {
  display: block;
}

@media (max-width: 767px) {
  #access .contents>section+section {
    padding-top: calc(60 / var(--base-font-size-row-value) * 1rem);
  }

  #access .contents h3 {
    font-size: calc(20/var(--base-font-size-row-value) * 1rem);
    margin-bottom: calc(20/var(--base-font-size-row-value) * 1rem);
  }

  #access .contents h3 span {
    font-size: calc(10/var(--base-font-size-row-value) * 1rem);
  }
}

@media (min-width: 768px) {
  #access .contents>section+section {
    padding-top: calc(120 / var(--base-font-size-row-value) * 1rem);
  }

  #access .contents h3 {
    font-size: calc(40/var(--base-font-size-row-value) * 1rem);
    margin-bottom: calc(40/var(--base-font-size-row-value) * 1rem);
  }

  #access .contents h3 span {
    font-size: calc(16/var(--base-font-size-row-value) * 1rem);
  }
}

.sub-contents {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* マップ */
.map p {
  display: flex;
  gap: calc(15/var(--base-font-size-row-value) * 1rem);
}

.map i {
  display: inline-block;
  width: 1.1em;
  height: 1.2em;
  background-color: var(--foreground-color);
  -webkit-mask: url(../img/common/map.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(../img/common/map.svg) no-repeat center;
  mask-size: contain;
}

@media (max-width: 767px) {
  .map i {
    margin-top: 0.1rem;
  }

  .map p {
    font-size: calc(14/var(--base-font-size-row-value) * 1rem);
    margin-bottom: calc(10/var(--base-font-size-row-value) * 1rem);
  }
}

@media (min-width: 768px) {
  .map i {
    margin-top: 0.25rem;
  }

  .map p {
    font-size: calc(18/var(--base-font-size-row-value) * 1rem);
    margin-bottom: calc(20/var(--base-font-size-row-value) * 1rem);
  }
}

/* ルート */
.route ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.route ul li {
  position: relative;
  text-align: center;
  background: var(--gradient-color-5);
  font-weight: 400;
  transition: ease-in-out 0.3s;
}

.route ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-weight: 500;
}

.route ul li:hover {
  opacity: 0.8;
}

.route ul li i {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;

  background-color: var(--foreground-color);
  
  -webkit-mask-size: contain;
  
  mask-size: contain;
}

.route ul li.walk i {
  -webkit-mask: url(../img/common/walk.svg) no-repeat center;
  mask: url(../img/common/walk.svg) no-repeat center;
}

.route ul li.car i {
  -webkit-mask: url(../img/common/car.svg) no-repeat center;
  mask: url(../img/common/car.svg) no-repeat center;
}

.route ul li.train i {
  -webkit-mask: url(../img/common/train.svg) no-repeat center;
  mask: url(../img/common/train.svg) no-repeat center;
}

.route ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  background-color: var(--foreground-color);
  mask: url(../img/common/arrow.svg) no-repeat center;
  mask-size: contain;
  transform: translateY(-50%);
  z-index: 1;
}

@media (max-width: 767px) {
  .route ul li a {
    flex-direction: column;
    gap: calc(5/var(--base-font-size-row-value) * 1rem);
  }

  .route ul {
    gap: calc(10/var(--base-font-size-row-value) * 1rem);
    font-size: calc(12/var(--base-font-size-row-value) * 1rem);
  }

  .route ul li a {
    padding: calc(10/var(--base-font-size-row-value) * 1rem) 0;
  }

  .route ul li::before {
    right: calc(5 / var(--base-font-size-row-value) * 1rem);
    width: calc(8 / var(--base-font-size-row-value) * 1rem);
    height: calc(8 / var(--base-font-size-row-value) * 1rem);
  }
}

@media (min-width: 768px) {
  .route ul li a {
    gap: calc(18/var(--base-font-size-row-value) * 1rem);
  }

  .route ul {
    gap: calc(40/var(--base-font-size-row-value) * 1rem);
    font-size: calc(18/var(--base-font-size-row-value) * 1rem);
  }

  .route ul li a {
    padding: calc(20/var(--base-font-size-row-value) * 1rem) 0;
  }

  .route ul li::before {
    right: calc(20 / var(--base-font-size-row-value) * 1rem);
    width: calc(14 / var(--base-font-size-row-value) * 1rem);
    height: calc(14 / var(--base-font-size-row-value) * 1rem);
  }
}

/* ショップデータ */
table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid var(--tertiary-color);
  vertical-align: top;
}

th {
  background-color: #ECE4D9;
  text-align: center;
}

td {
  background-color: var(--background-color);
  color: var(--foreground-color);
  font-weight: 400;
}

@media (max-width: 767px) {

  th,
  td {
    padding: calc(8 / var(--base-font-size-row-value) * 1rem);
  }

  th {
    width: 24vw;
  }
}

@media (min-width: 768px) {

  th,
  td {
    padding: calc(30 / var(--base-font-size-row-value) * 1rem);
  }

  th {
    width: calc(200 / var(--base-font-size-row-value) * 1rem);
  }
}