:root {
  --access-font-en: var(--font-en, "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif);
  --access-font-jp: "LINE Seed JP", "LINE Seed JP_OTF", "LINE Seed Sans JP", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  --access-bg: #000;
  --access-text: rgba(255, 255, 255, 0.94);
  --access-muted: rgba(255, 255, 255, 0.64);
  --access-line: rgba(255, 255, 255, 0.12);

  --access-paper: #F4F6F5;
  --access-ink: #213946;
  --access-ink-muted: rgba(33, 57, 70, 0.68);
  --access-ink-line: rgba(33, 57, 70, 0.16);

  --hero-ratio-pc: 16 / 4.5;
}

.accessPage {
  background: var(--access-bg);
  color: var(--access-text);
  font-family: var(--access-font-jp);
}

/* ---------------------------------
  Common
--------------------------------- */
.accessPage .section {
  padding: 44px 0;
}

.accessPage .container {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0 24px;
}

.accessSection__eyebrow {
  margin: 0 0 8px;
  font-family: var(--access-font-en);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--access-muted);
}

.accessSection__title {
  margin: 0;
  font-family: var(--access-font-en);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.05;
  color: #fff;
}

/* ---------------------------------
  Hero
--------------------------------- */
.accessHero {
  position: relative;
  aspect-ratio: var(--hero-ratio-pc);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}

.accessHero__media,
.accessHero__media picture,
.accessHero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.accessHero__media img {
  display: block;
  object-fit: cover;
  object-position: center center;
}

.accessHero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 100%);
  z-index: 1;
}

.accessHero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 30px;
}

.accessHero__copy {
  max-width: 640px;
}

.accessHero__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.84);
}

.accessHero__title {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* ---------------------------------
  Intro
--------------------------------- */
.accessIntro {
  padding-bottom: 20px;
}

.accessIntro__head {
  max-width: 720px;
}

.accessIntro__lead {
  margin-top: 14px;
}

.accessIntro__lead p {
  margin: 0 0 6px;
  font-family: var(--access-font-jp);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.accessIntro__lead p:last-child {
  margin-bottom: 0;
}

/* ---------------------------------
  Gallery
--------------------------------- */
.accessGallery {
  padding-top: 0;
  padding-bottom: 28px;
}

.accessGallery__grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 6px;
}

.accessGallery__item {
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 196px;
}

.accessGallery__item--lg {
  grid-row: span 2;
  min-height: 398px;
}

.accessGallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.accessGallery__item:hover img {
  transform: scale(1.025);
}

/* ---------------------------------
  Map
--------------------------------- */
.accessMap {
  padding-top: 0;
  padding-bottom: 0;
}

.accessMap__head {
  margin-bottom: 12px;
}

.accessMap__frame {
  position: relative;
  width: 100%;
  min-height: 380px;
  aspect-ratio: 16 / 7.1;
  overflow: hidden;
  background: #111;
}

.accessMap__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------------------------------
  Store card
--------------------------------- */
.accessStore {
  padding-top: 0;
  padding-bottom: 56px;
  background: var(--access-paper);
}

.accessStore .container {
  width: min(100%, 1160px);
  padding: 0 24px;
}

.accessStore__card {
  background: var(--access-paper);
  color: var(--access-ink);
  padding: 28px 0 0;
}

.accessStore__logoWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.accessStore__logo {
  display: block;
  width: min(280px, 72vw);
  height: auto;
  object-fit: contain;
}

.accessStore__body {
  max-width: 760px;
  margin: 0 auto;
}

.accessStore__list {
  margin: 0;
  padding: 0;
}

.accessStore__row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--access-ink-line);
}

.accessStore__row dt {
  margin: 0;
  font-family: var(--access-font-en);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--access-ink-muted);
}

.accessStore__row dd {
  margin: 0;
  font-family: var(--access-font-jp);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--access-ink);
}

.accessStore__row a {
  color: var(--access-ink);
  text-decoration: none;
}

.accessStore__row a:hover {
  opacity: 0.72;
}

.accessStore__actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.accessStore__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(33, 57, 70, 0.22);
  color: var(--access-ink);
  background: transparent;
  text-decoration: none;
  font-family: var(--access-font-en);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    opacity 0.25s ease;
}

.accessStore__button:hover {
  background: rgba(33, 57, 70, 0.05);
  border-color: rgba(33, 57, 70, 0.36);
}

/* ---------------------------------
  Responsive
--------------------------------- */
@media (max-width: 980px) {
  .accessGallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .accessGallery__item--lg {
    grid-row: span 1;
    min-height: 250px;
  }
}

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

  .accessPage .container,
  .accessStore .container {
    padding: 0 16px;
  }

  .accessHero {
    aspect-ratio: auto;
    min-height: 42vh;
  }

  .accessHero__inner {
    padding: 0 16px 22px;
  }

  .accessHero__eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .accessHero__title {
    font-size: clamp(38px, 11vw, 62px);
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .accessIntro {
    padding-bottom: 16px;
  }

  .accessIntro__lead p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .accessGallery {
    padding-bottom: 22px;
  }

  .accessGallery__grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .accessGallery__item,
  .accessGallery__item--lg {
    grid-row: auto;
    min-height: 176px;
  }

  .accessMap__head {
    margin-bottom: 10px;
  }

  .accessMap__frame {
    aspect-ratio: auto;
    min-height: 280px;
  }

  .accessStore {
    padding-bottom: 40px;
  }

  .accessStore__card {
    padding-top: 20px;
  }

  .accessStore__logoWrap {
    margin-bottom: 16px;
  }

  .accessStore__logo {
    width: min(220px, 64vw);
  }

  .accessStore__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }

  .accessStore__row dt {
    font-size: 0.68rem;
  }

  .accessStore__row dd {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .accessStore__actions {
    margin-top: 14px;
  }

  .accessStore__button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
  }
}