@charset "UTF-8";
.access-inner {
  padding-top: 85px;
  padding-bottom: 85px;
}
@media print, screen and (max-width: 1280px) {
  .access-inner {
    padding-top: clamp(72px, 6.641vw, 85px);
    padding-bottom: clamp(72px, 6.641vw, 85px);
  }
}
.access-desc {
  text-align: center;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: calc(30 / 16);
  letter-spacing: 0.05em;
}
@media print, screen and (max-width: 1280px) {
  .access-desc {
    font-size: clamp(14px, 1.25vw, 16px);
  }
}
.access-photo {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
}
@media print, screen and (max-width: 1280px) {
  .access-photo {
    margin-top: clamp(51px, 4.688vw, 60px);
    gap: clamp(15px, 1.406vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  .access-photo {
    gap: clamp(6px, 1.956vw, 15px);
  }
}
@media screen and (max-width: 480px) {
  .access-photo {
    flex-direction: column;
  }
}
.access-photo-item {
  width: calc((100% - 18px) / 3);
}
@media print, screen and (max-width: 1280px) {
  .access-photo-item {
    width: calc((100% - clamp(15px, 1.406vw, 18px)) / 3);
  }
}
@media screen and (max-width: 480px) {
  .access-photo-item {
    width: 100%;
  }
}
.access-route {
  margin-top: 66px;
}
@media print, screen and (max-width: 1280px) {
  .access-route {
    margin-top: clamp(56px, 5.156vw, 66px);
  }
}
.access-route-ttl {
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  height: 34px;
  line-height: 34px;
  margin-bottom: 20px;
  background-color: #1C409D;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.03em;
}
@media print, screen and (max-width: 1280px) {
  .access-route-ttl {
    font-size: clamp(15px, 1.406vw, 18px);
  }
}
.access-route-fig {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.access-route-carnavi {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 62px;
  padding: 8px 13px 13px 13px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 11px;
  border: 1px solid #D9554A;
}
@media print, screen and (max-width: 1280px) {
  .access-route-carnavi {
    margin-top: clamp(52px, 4.844vw, 62px);
  }
}
.access-route-carnavi-ico {
  width: 77px;
}
@media print, screen and (max-width: 1280px) {
  .access-route-carnavi-ico {
    width: clamp(65px, 6.016vw, 77px);
  }
}
@media screen and (max-width: 480px) {
  .access-route-carnavi-ico {
    width: clamp(43px, 13.542vw, 65px);
  }
}
.access-route-carnavi-txt {
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  line-height: calc(35 / 20);
  letter-spacing: 0.03em;
  font-weight: 700;
}
@media print, screen and (max-width: 1280px) {
  .access-route-carnavi-txt {
    font-size: clamp(17px, 1.563vw, 20px);
  }
}
@media screen and (max-width: 480px) {
  .access-route-carnavi-txt {
    font-size: clamp(11px, 3.542vw, 17px);
  }
}
.access-route-carnavi-txt span {
  color: #D9554A;
}
.access-map-iframe {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}
.access-map-iframe iframe {
  width: 100%;
  height: 541px;
}
@media screen and (max-width: 767px) {
  .access-map-iframe iframe {
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  .access-map-iframe iframe {
    height: 360px;
  }
}
.access-map-address {
  margin-top: 20px;
  text-align: center;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: calc(35 / 16);
  letter-spacing: 0.05em;
}
@media print, screen and (max-width: 1280px) {
  .access-map-address {
    font-size: clamp(14px, 1.25vw, 16px);
  }
}

/*
/*
/* = LightBox
/*
/* ---------------------------------------------------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999999;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-inner {
  position: relative;
  max-width: 1080px;
  width: calc(100% - 160px);
  padding: 60px 40px 40px 40px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .lightbox-inner {
    width: calc(100% - 80px);
    padding: 60px 24px 24px 24px;
  }
}
@media screen and (max-width: 480px) {
  .lightbox-inner {
    width: calc(100% - 40px);
  }
}
.lightbox.active .lightbox-inner {
  transform: translateY(0);
  opacity: 1;
}
.lightbox img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 80vh;
  margin: auto;
}
.lightbox-close {
  position: absolute;
  top: -10px;
  right: -70px;
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .lightbox-close {
    top: -70px;
    right: -10px;
  }
}
.lightbox-close::before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  mask-image: url(../images/icon_colse.svg);
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: 100% auto;
}
.lightbox-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  margin-bottom: 20px;
  background-color: #1C409D;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.03em;
}