@import url("./style.css");
@import url("./hifu-cta.css");
body.page-access {
  padding-top: 88px;
  background: #fff;
}

.page-access .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.page-access .btn-header {
  padding: 13px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
}

/* —— Breadcrumb —— */
.breadcrumb {
  position: absolute;
  padding: 16px 0 0;
  font-family: var(--gb-sans);
  font-size: 12px;
  color: var(--muted);
  top: 0;
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 8px; color: #ccc; }

/* —— Hero —— */
.access-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  min-height: clamp(420px, 44vw, 560px);
}

.access-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: 18px 0 34px;
}

.access-hero-copy {
  position: relative;
  z-index: 2;
  flex: 0 0 48%;
  max-width: 560px;
  padding: 18px 32px 0 0;
  align-self: center;
}

.access-title {
  margin: 14px 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(44px, 5.2vw, 66px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: 0.08em;
}
.access-title small {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 500;
}

.access-lead {
  margin: 0;
  font-family: var(--gb-sans, "Noto Sans JP", sans-serif);
  font-size: 13px;
  line-height: 2;
  color: #3a4558;
}

.access-hero-visual {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 42%;
  right: calc(50% - 50vw);
  z-index: 1;
  overflow: hidden;
}
.access-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 30%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.9) 40%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.access-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* —— Sections —— */
.access-section { padding: 56px 0; }
.access-section--soft { background: var(--gb-beige, #f5f2ed); }

.section-heading {
  margin: 0 0 26px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.08em;
}

.card {
  background: #fff;
  border: 1px solid #ebe6df;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(14, 35, 70, 0.08);
  height: 100%;
}

.access-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* Map card */
.map-card {
  padding: 8px;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  box-sizing: border-box;
}
.map-head h2 {
  margin: 0 0 6px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--navy);
}
.map-head p {
  margin: 0 0 14px;
  font-family: var(--gb-sans, "Noto Sans JP", sans-serif);
  font-size: 12px;
  color: var(--muted);
}
.map-embed {
  position: absolute;
  inset: 8px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #eee;
  background: #f3f1ee;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Outline card */
.outline-card { padding: 22px 22px 18px; }
.outline-title {
  margin: 0 0 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: .06em;
}
.outline-dl { margin: 0 0 18px; }
.outline-dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.outline-dl > div:last-child { border-bottom: none; }
.outline-dl dt {
  font-family: var(--gb-sans, "Noto Sans JP", sans-serif);
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
}
.outline-dl dd {
  margin: 0;
  font-family: var(--gb-sans, "Noto Sans JP", sans-serif);
  font-size: 12px;
  line-height: 1.8;
  color: #3a4558;
}
.outline-actions {
  display: flex;
  gap: 14px;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-top: 20px;
}
.outline-actions .btn { padding: 10px 14px; font-size: 12px; width: 48%;}

/* Station cards */
.station-grid {
  display: flex;
  justify-content: center;
}

.station-card {
  width: min(100%, 760px);
  padding: 28px 32px;
  height: auto;
}

.station-head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}
.station-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  color: #fff;
}
.station-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.station-head h3 {
  margin: 0 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.station-head p {
  margin: 0;
  font-family: var(--gb-sans, "Noto Sans JP", sans-serif);
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
}

.station-photos {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.station-photos img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
}
.station-note {
  text-align: center;
  margin: 18px 0 0;
  font-family: var(--gb-sans, "Noto Sans JP", sans-serif);
  font-size: 11px;
  color: var(--muted);
}

/* Lounge */
.lounge-card { display: grid; grid-template-columns: 1.2fr 1fr; gap: 22px; padding: 18px; align-items: center; }
.lounge-photo img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; border: 1px solid #eee; display: block; }
.lounge-copy h2 { margin: 0 0 10px; font-family: "Noto Serif JP", serif; font-size: 16px; color: var(--navy); }
.lounge-copy p { margin: 0 0 14px; font-family: var(--gb-sans, "Noto Sans JP", sans-serif); font-size: 12px; line-height: 1.9; color: var(--muted); }

/* —— CTA + Footer (same visual system as HIFU) —— */
.hifu-cta h2 {
  margin: 0 0 8px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 500;
}
.hifu-cta p {
  margin: 0 0 22px;
  font-family: var(--gb-sans, "Noto Sans JP", sans-serif);
  font-size: 12px;
  opacity: 0.9;
}
.hifu-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.hifu-cta-actions .btn-hero {
  min-width: 320px;
  padding: 14px 22px;
  border-radius: 4px;
}
.hifu-cta .btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.hifu-cta .btn-cta-outline:hover { background: rgba(255, 255, 255, 0.08); }
.hifu-cta .btn-cta-gold {
  background: linear-gradient(135deg, #b07a32 0%, #d4a85f 50%, #c3934c 100%);
  color: #fff;
  border: 1px solid transparent;
}
.hifu-cta .btn-cta-gold:hover { opacity: 0.92; }

.page-access .site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 34px 0 18px;
  position: relative;
}
.page-access .footer-main {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr 1.5fr;
  gap: 34px;
  align-items: start;
}
.page-access .footer-logo img { width: 170px; height: auto; }
.page-access .footer-lead {
  margin: 12px 0 0;
  font-family: var(--gb-sans, "Noto Sans JP", sans-serif);
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}
.page-access .footer-address {
  margin: 0 0 8px;
  font-family: var(--gb-sans, "Noto Sans JP", sans-serif);
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}
.page-access .footer-tel {
  margin: 0 0 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.06em;
}
.page-access .footer-tel span {
  font-family: var(--gb-sans, "Noto Sans JP", sans-serif);
  font-size: 12px;
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.75);
}
.page-access .footer-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.page-access .footer-buttons .btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 4px;
  font-family: var(--gb-sans, "Noto Sans JP", sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  min-height: 38px;
  min-width: 168px;
}
.page-access .footer-buttons .btn-footer .btn-icon { flex-shrink: 0; }
.page-access .footer-buttons .btn-footer-line {
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.page-access .footer-buttons .btn-footer-line:hover { background: rgba(255, 255, 255, 0.08); }
.page-access .footer-buttons .btn-footer-counsel {
  background: linear-gradient(135deg, #b07a32 0%, #d4a85f 50%, #c3934c 100%);
  border: 1px solid transparent;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}
.page-access .footer-buttons .btn-footer-counsel:hover { opacity: 0.92; }
.page-access .footer-navs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.page-access .footer-nav-col { display: grid; gap: 10px; }
.page-access .footer-nav-col a {
  font-family: var(--gb-sans, "Noto Sans JP", sans-serif);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.page-access .footer-nav-col a:hover { color: #fff; }
.page-access .footer-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.page-access .footer-bottom .copyright {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  font-size: 12px;
}
.page-access .back-to-top {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  text-decoration: none;
  line-height: 1;
}
.page-access .back-to-top:hover { background: rgba(255, 255, 255, 0.08); }

@media (max-width: 1024px) {
  .station-card {
    width: min(100%, 640px);
    padding: 24px 26px;
  }

  .access-top-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lounge-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* —— SP: access page —— */
@media (max-width: 900px) {
  .access-title small {
    font-size: clamp(14px, 3.8vw, 18px);
  }

  .access-section {
    padding: 40px 0;
  }

  .section-heading {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .card {
    height: auto;
  }

  .map-card {
    padding: 8px;
    position: relative;
    min-height: min(52vw, 280px);
    aspect-ratio: 4 / 3;
  }

  .map-embed {
    position: absolute;
    inset: 8px;
  }

  .outline-card {
    padding: 18px 16px 16px;
  }

  .outline-dl > div {
    grid-template-columns: 96px 1fr;
    gap: 10px;
    padding: 9px 0;
  }

  .outline-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 14px;
  }

  .outline-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .station-card {
    width: 100%;
    padding: 20px 18px;
  }

  .station-head h3 {
    font-size: 14px;
  }

  .station-head p {
    font-size: 12px;
  }

  .station-photos img {
    height: min(32vw, 130px);
  }

  .lounge-photo img {
    height: min(48vw, 220px);
  }

  .lounge-copy .btn-outline {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

}

@media (max-width: 767px) {
  .access-section {
    padding: 32px 0;
  }

  .access-section > .container {
    width: min(1312px, 92vw);
  }

  .access-section--soft {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .section-heading {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .access-top-grid {
    gap: 16px;
  }

  .map-head h2 {
    font-size: 13px;
  }

  .map-head p {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .map-card {
    min-height: min(56vw, 240px);
  }

  .outline-title {
    font-size: 15px;
  }

  .outline-dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

  .outline-dl dt {
    font-size: 11px;
  }

  .outline-dl dd {
    font-size: 11px;
    line-height: 1.75;
  }

  .station-note {
    font-size: 10px;
    margin-top: 14px;
    padding: 0 4px;
    line-height: 1.7;
  }

  .lounge-card {
    padding: 16px;
  }

  .lounge-copy {
    text-align: center;
  }

  .lounge-copy h2 {
    font-size: 15px;
  }

  .lounge-copy p {
    font-size: 11px;
    line-height: 1.85;
  }
}

@media (max-width: 560px) {
  .access-section {
    padding: 28px 0;
  }

  .section-heading {
    font-size: 17px;
  }

  .map-card,
  .outline-card,
  .station-card {
    border-radius: 8px;
  }

  .outline-card,
  .station-card {
    padding: 14px;
  }

  .map-card {
    padding: 8px;
    min-height: 200px;
  }

  .outline-actions .btn {
    font-size: 11px;
    padding: 10px 12px;
  }

  .station-icon {
    width: 40px;
    height: 40px;
  }

  .station-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .station-head {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }

  .station-photos img {
    height: 88px;
  }

  .lounge-photo img {
    height: 180px;
  }

  .access-hero-visual::after{background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .9) 7%, transparent 28%);width: 100%;}
  .access-hero-visual{left:0;right:0;}
  .access-hero-visual img{object-position: 30% center;}
  .access-title{margin: 156px 0 10px;}
  .access-hero-inner .breadcrumb{top:4px; left:0;}
  .access-lead{font-size:12px;}
}
