.access .inner {
  padding: 7rem 1.5rem 11rem;
}
.access .inner > .img {
  max-width: 97rem;
  margin: 0 auto 11.5rem;
}
.access_ttl {
  margin-bottom: 6rem;
  font-weight: 700;
  font-size: 3rem;
  font-family: var(--f-sans);
  text-align: center;
  letter-spacing: 0.21em;
}
.access .list {
  display: grid;
  max-width: 90rem;
  margin-top: 30px;
  border-top: 1px solid #c3c3c3;
  margin-inline: auto;
}
.access .list > .item {
  display: flex;
  border-bottom: 1px solid #c3c3c3;
  padding-block: 3rem;
}
.access .list > .item > .img {
  width: 33%;
}
.access .list > .item > .img img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 30/18;
}
.access .list > .item > .body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 67%;
  padding-inline: 3.5rem;
}
.access .list > .item > .body > .meta > .ttl {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  font-family: var(--f-sans);
  letter-spacing: 0.09em;
}
.access .list > .item > .body > .meta > .txt {
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0.09em;
}
.access .list > .item > .body > .map > .link {
  display: inline-flex;
  align-items: center;
  color: #0072bc;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-family: var(--f-sans);
  text-decoration: none;
  letter-spacing: 0.09em;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.access .list > .item > .body > .map > .link::before {
  display: inline-block;
  width: 4.2rem;
  height: 4.2rem;
  background: url(../img/access/icon_map.svg) no-repeat center/contain;
  vertical-align: middle;
  content: "";
}
.access .list > .item > .body > .more {
  width: 100%;
}
.access .list > .item > .body > .more > .modal_btn {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 18rem;
  min-height: 3.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 100vh;
  background-color: #0072bc;
  color: var(--c-white);
  font-weight: 700;
  font-size: 1.4rem;
  font-family: var(--f-sans);
  text-align: center;
  letter-spacing: 0.09em;
  cursor: pointer;
}
.access .list > .item > .body > .more > .modal_btn::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 0.7rem;
  height: 1.1rem;
  background: url(../img/access/icon_btn_arrow.svg) no-repeat center/contain;
  vertical-align: middle;
  content: "";
}
.access .modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1000;
  transform: translate(-50%, -50%);
  visibility: hidden;
  width: calc(100% - 2rem);
  height: calc(100% - 14rem);
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.access .modal.active {
  visibility: visible;
  opacity: 1;
}
.access .modal_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: calc(100% + 12rem);
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.access .modal_close {
  position: absolute;
  top: -34px;
  bottom: auto;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: solid 1px #000;
  background-color: #fff;
  cursor: pointer;
}
.access .modal_close::before, .access .modal_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 70%;
  height: 2px;
  background-color: #000;
}
.access .modal_close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.access .modal_close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.access .modal_cont {
  position: relative;
  z-index: 1;
  max-width: 85%;
}
.access .modal .swiper-slide .img {
  margin-bottom: 1rem;
}
.access .modal .swiper-slide .img img {
  max-width: 90rem;
  max-height: 50.6rem;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.access .modal .swiper-slide .txt {
  font-size: 1.7rem;
  line-height: 1.625;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.access .modal .swiper-button-prev,
.access .modal .swiper-button-next {
  width: auto;
  height: auto;
}
.access .modal .swiper-button-prev::after,
.access .modal .swiper-button-next::after {
  display: inline-block;
  width: 8rem;
  height: 8rem;
  vertical-align: middle;
  content: "";
}
.access .modal .swiper-button-prev {
  left: 0;
}
.access .modal .swiper-button-prev::after {
  background: url(../img/access/icon_swiper_prev.svg) no-repeat center/contain;
}
.access .modal .swiper-button-next {
  right: 0;
}
.access .modal .swiper-button-next::after {
  background: url(../img/access/icon_swiper_next.svg) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .access .inner {
    padding: 7rem 4rem 11rem;
  }
  .access .inner > .img {
    margin-bottom: 9.5rem;
  }
  .access_ttl {
    margin-bottom: 7rem;
    font-size: 4rem;
  }
  .access .list > .item {
    flex-direction: column;
    row-gap: 6rem;
    padding-block: 6rem;
  }
  .access .list > .item > .img {
    width: 100%;
  }
  .access .list > .item > .img img {
    border-radius: 4rem;
    aspect-ratio: 60/32;
  }
  .access .list > .item > .body {
    flex-direction: column;
    width: 100%;
    padding-inline: 0;
  }
  .access .list > .item > .body > .meta {
    width: 100%;
  }
  .access .list > .item > .body > .meta > .ttl {
    margin-bottom: 2rem;
    font-size: 3.6rem;
  }
  .access .list > .item > .body > .meta > .txt {
    margin-bottom: 2.5rem;
    font-size: 3.2rem;
    line-height: 1.625;
  }
  .access .list > .item > .body > .map {
    width: 100%;
  }
  .access .list > .item > .body > .map > .link {
    font-size: 3.6rem;
    line-height: 1.5555555556;
  }
  .access .list > .item > .body > .map > .link::before {
    width: 8.4rem;
    height: 8.4rem;
  }
  .access .list > .item > .body > .more {
    padding-top: 3.5rem;
  }
  .access .list > .item > .body > .more > .modal_btn {
    max-width: 36rem;
    min-height: 7rem;
    font-size: 2.8rem;
  }
  .access .list > .item > .body > .more > .modal_btn::after {
    right: 1.5rem;
    width: 1rem;
    height: 2rem;
  }
  .access .modal {
    width: calc(100% - 4rem);
  }
  .access .modal_close {
    top: -24px;
    right: 12px;
  }
  .access .modal_cont {
    max-width: 65rem;
  }
  .access .modal .swiper-slide .img {
    margin-bottom: 1rem;
  }
  .access .modal .swiper-slide .img img {
    width: 100%;
    height: 56.2rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .access .modal .swiper-slide .txt {
    font-size: 3.2rem;
    line-height: 1.625;
  }
  .access .modal .swiper-button-prev,
.access .modal .swiper-button-next {
    width: 10rem;
    height: 10rem;
  }
}
/*# sourceMappingURL=access.css.map */