@charset "UTF-8";
/* ==============================================
   ACCESS
   ============================================== */
.p-access {
  background-color: #1f3134;
}

/* ================= 見出し + 地図 ================= */
.p-access__head .l-wrapper {
  display: flex;
  align-items: stretch;
  padding: 36.7rem 0 14rem;
}
.p-access__head-info {
  box-sizing: border-box;
  width: 47%;
  flex-shrink: 0;
  padding-right: 4%;
}
.p-access__head-map {
  width: 64%;
  flex-shrink: 0;
  margin-top: -5.6rem;
  /* l-wrapperがmax-width(1300px)に達するまでは画面右端に接するようブリードさせる */
  /* margin-right: calc(50% - 50vw); */
  /* margin-right: -9%; */
}
/* l-wrapperがmax-widthに達したら（82%×viewport > 1300px）ブリードを解除 */
@media (min-width: 1585.37px) {
  .p-access__head-map {
    margin-right: 0;
  }
}
.p-access__head-map img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

.p-access__title {
  margin-bottom: 4.4rem;
}

.p-access__hotel {
  margin-bottom: 4.5rem;
}
.p-access__hotel-name {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.52;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 1.6rem;
}
.p-access__hotel-address {
  font-size: 1.5rem;
  line-height: 2;
  color: #fff;
}
.p-access__hotel-checkinout {
  display: inline-block;
  margin-top: 0.5rem;
}
.p-access__hotel-note {
  margin-top: 0rem;
  font-size: 1.4rem;
  line-height: 2;
  color: #fff;
  opacity: 0.6;
}
.p-access__hotel-note-mark {
  margin-right: 0.2em;
}

.p-access__gmap-link {
  display: inline-block;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.8rem;
  transition: opacity 0.3s;
}
.c-icon-external--ml5 {
  margin-left: 5px;
}
.p-access__gmap-link:hover {
  opacity: 0.7;
}

/* ================= 周辺スポット ================= */
.p-access__spots {
  list-style: none;
  padding: 0;
  margin: 6.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 3rem;
}
.p-access__spot-name {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
}
.p-access__spot-detail {
  margin-top: 0.9rem;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
  opacity: 0.6;
}

/* ================= タブ切り替え ================= */
.p-access__tabs {
  padding: 0 0 14rem;
}

.c-tabs__nav {
  display: flex;
  background-color: #132629;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid #091d20;
  padding: 4px;
  width: calc(100% + 1rem);
  margin: 0 -0.5rem;
}
.c-tabs__btn {
  flex: 1;
  padding: 1.6rem 1rem 1.7rem;
  border: none;
  border-radius: 3rem;
  background: none;
  font-family: inherit;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.c-tabs__btn.is-active {
  background-color: #2b3d40;
  color: #fff;
}

.c-tabs__panel {
  display: none;
}
.c-tabs__panel.is-active {
  display: block;
}

.p-access__panel-title {
  margin-top: 6rem;
}

/* ルート（電車・飛行機・車 共通のカラム group） */
.p-access__routes {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4.7%;
}
.p-access__route-title {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.53;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 3rem;
}
.p-access__route img {
  width: 100%;
  height: auto;
  display: block;
}

/* 車タブ：道順について / 駐車場について */
.p-access__car-info {
  margin-top: 4rem;
}
.p-access__car-info + .p-access__car-info {
  margin-top: 5.4rem;
}
.p-access__car-info .u-text {
  margin-top: 2rem;
}
.p-access__pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.4rem;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-access__pdf-link-text {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.p-access__pdf-link:hover {
  opacity: 0.7;
}
.p-access__pdf-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.2rem 0.8rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* 送迎について */
.p-access__route-title--transfer {
  margin-bottom: 2rem;
}
.p-access__transfer {
  margin-top: 6.3rem;
}
.p-access__transfer .u-text {
  margin-top: 2rem;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
/* ================= 1100px以下 ================= */
@media (max-width: 1100px) {
  .p-access__routes {
    gap: 0 2.5rem;
  }
}

@media (max-width: 1000px) {
  .p-access__head .l-wrapper {
    flex-direction: column;
    padding: 27rem 0 0;
  }
  .p-access__head-info {
    width: 100%;
    padding-right: 0;
    display: contents;
  }
  .p-access__head-map {
    width: 100%;
    margin-top: 6.4rem;
  }
  .p-access__title {
    margin-bottom: 3.8rem;
  }
  .p-access__hotel {
    margin-bottom: 3.1rem;
  }
  .p-access__hotel-name {
    font-size: 2.3rem;
    margin-bottom: 2.2rem;
  }
  .p-access__hotel-address,
  .p-access__hotel-note {
    font-size: 1.3rem;
  }
  .p-access__gmap-link {
    font-size: 1.5rem;
  }

  .p-access__spots {
    margin-top: 5rem;
    gap: 2.6rem 2rem;
    order: 5;
  }
  .p-access__spot-name {
    font-size: 1.6rem;
  }
  .p-access__spot-detail {
    margin-top: 0.6rem;
    font-size: 1.3rem;
  }

  .p-access__tabs {
    padding: 5.4rem 0 7.6rem;
  }
  .c-tabs__btn {
    padding: 0.8rem 0.5rem;
    font-size: 1.5rem;
    line-height: 1.66;
  }
  .p-access__panel-title {
    margin-top: 4rem;
    font-size: 2.3rem;
  }
  .p-access__routes {
    margin-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.7rem 2.5rem;
  }
  .p-access__route-title {
    font-size: 1.9rem;
    margin-bottom: 1.6rem;
  }
  .p-access__route-title--transfer {
    margin-bottom: 2.9rem;
    font-size: 2.3rem;
  }
  .p-access__car-info {
    margin-top: 3rem;
  }
  .p-access__car-info + .p-access__car-info {
    margin-top: 4.4rem;
  }
  .p-access__car-info .u-text {
    margin-top: 1.5rem;
  }
  .p-access__pdf-link {
    font-size: 1.5rem;
  }
  .p-access__transfer {
    margin-top: 5.4rem;
    padding-bottom: 0;
  }
}

/* ================= 750px以下 ================= */
@media (max-width: 750px) {
  .p-access__head-map {
    width: calc(100% * 100 / 89);
    margin: 6.4rem calc(-5.5% * 100 / 89) 0;
  }
  .c-tabs__nav {
    border-radius: 7px;
  }
  .c-tabs__btn {
    border-radius: 5px;
  }
}

/* ================= 600px以下 ================= */
@media (max-width: 600px) {
  .p-access__routes {
    grid-template-columns: 1fr;
    gap: 4rem 0;
  }
}
