:root {
  --color-black: #050505;
  --color-white: #ffffff;
  --color-text: #111827;
  --color-muted: #64748b;
  --color-line: rgba(0, 0, 0, 0.1);
  --color-yellow: #facc15;
  --color-yellow-hover: #fde047;
  --color-bg-soft: #f8fafc;
  --shadow-soft: 0 16px 45px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 24px 70px rgba(15, 23, 42, 0.18);
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 72px;
  color: var(--color-text);
  background: var(--color-white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.logo img {
  height: 40px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.header-nav a:hover {
  color: var(--color-yellow);
}

.header-tel {
  margin-right: 10px;
  text-align: right;
  line-height: 1.25;
}

.header-tel strong {
  display: block;
  color: var(--color-yellow);
  font-size: clamp(18px, 2vw, 25px);
}

.header-tel span {
  color: #cbd5e1;
  font-size: 12px;
}

.menu-button {
  display: none;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 25px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: scaleY(0.96);
  transform-origin: top;
  transition: 0.25s ease;
}

.mobile-menu.is-open {
  max-height: 420px;
  opacity: 1;
  transform: scaleY(1);
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.notice {
  background: var(--color-white);
  padding: 12px 0;
}

.notice-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #fefce8;
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-white);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 900;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  color: var(--color-white);
  background: var(--color-black);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.26) 55%, rgba(0, 0, 0, 0.58) 100%);
}

.hero-inner {
  display: flex;
  min-height: 78vh;
  align-items: center;
  justify-content: flex-end;
  padding-block: 86px;
}

.hero-copy {
  width: min(100%, 510px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1.08;
  letter-spacing: -0.06em;
  font-weight: 1000;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.85);
}

.hero p {
  margin: 26px 0 0;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.8);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 0;
  font-weight: 1000;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-yellow);
  color: var(--color-black);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.btn-primary:hover {
  background: var(--color-yellow-hover);
}

.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-dark:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
}

.section-head {
  margin-bottom: 46px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #eab308;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.35em;
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.section-title-row::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent);
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.04em;
  font-weight: 1000;
}

.text-yellow {
  color: #eab308;
}

.lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 16px;
}

.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.text-link {
  color: #ca8a04;
  font-weight: 900;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: var(--color-white);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition: 0.25s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-yellow);
  box-shadow: var(--shadow-soft);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.news-category {
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 900;
}

.news-date {
  color: var(--color-muted);
  font-size: 13px;
}

.news-title {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 900;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.use-card-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #eab308;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.3em;
}

.use-card-label::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(0, 0, 0, 0.12);
}

.use-card h3 {
  margin: 10px 0 22px;
  font-size: 31px;
  line-height: 1.2;
}

.image-frame {
  overflow: hidden;
  border: 1px solid var(--color-line);
}

.image-frame img {
  width: 100%;
  transition: transform 0.6s ease;
}

.use-card:hover img,
.warehouse-card:hover .main-image {
  transform: scale(1.025);
}

.warehouse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.warehouse-card {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: 0.25s ease;
}

.warehouse-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.warehouse-image {
  position: relative;
  overflow: hidden;
}

.main-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.area-label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.22em;
}

.warehouse-body {
  padding: 24px;
}

.area-no {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.warehouse-body h3 {
  margin: 4px 0 18px;
  font-size: 26px;
  line-height: 1.25;
}

.info-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.info-box,
.feature-box {
  border: 1px solid var(--color-line);
  padding: 12px;
  font-weight: 900;
}

.info-box small {
  display: block;
  color: #94a3b8;
  font-size: 12px;
}

.info-box span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.feature-grid {
  margin-top: 18px;
}

.feature-box {
  font-size: 13px;
}

.feature-box::before {
  content: "●";
  color: #eab308;
  margin-right: 4px;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.thumb {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
}

.thumb.is-active,
.thumb:hover {
  border-color: var(--color-yellow);
}

.reason-image {
  margin: 32px 0 46px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 32px;
}

.reason-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
}

.reason-number {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--color-yellow);
  font-size: 52px;
  line-height: 1;
  font-weight: 1000;
}

.reason-number::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--color-line);
}

.reason-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: #f3f4f6;
  font-size: 30px;
  transition: 0.2s ease;
}

.reason-item:hover .reason-icon {
  background: var(--color-yellow);
}

.reason-item h3 {
  margin: 0;
  font-size: 24px;
}

.reason-item p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.note-box {
  margin-top: 42px;
  border-left: 4px solid var(--color-yellow);
  padding-left: 16px;
  color: var(--color-muted);
  font-size: 14px;
}

.stats-box {
  margin-top: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  padding: 42px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 42px;
}

.stat-label {
  color: #eab308;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.22em;
}

.stat-value {
  margin-top: 10px;
  font-size: clamp(48px, 6vw, 74px);
  line-height: 1;
  font-weight: 1000;
}

.stat-caption {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 14px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.flow-number {
  color: var(--color-yellow);
  font-size: 60px;
  font-weight: 1000;
  line-height: 1;
}

.flow-line {
  width: 64px;
  height: 1px;
  margin: 18px 0;
  background: var(--color-black);
}

.flow-item h3 {
  margin: 0;
  font-size: 23px;
}

.flow-item p {
  color: var(--color-muted);
  font-size: 14px;
}

.flow-item a {
  display: inline-block;
  border-bottom: 2px solid var(--color-yellow);
  font-size: 14px;
  font-weight: 1000;
}

.faq-list {
  border-top: 1px solid var(--color-line);
}

.faq-list details {
  border-bottom: 1px solid var(--color-line);
  padding: 20px 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 1000;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  font-size: 30px;
  font-weight: 300;
  transition: transform 0.2s ease;
}

.faq-list details[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 880px;
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.cta-band {
  padding: 42px 0;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.site-footer {
  padding: 42px 0;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.site-footer img {
  height: 48px;
  margin: 0 auto 18px;
}

.site-footer p {
  margin: 4px 0;
  font-size: 14px;
}

.copyright {
  margin-top: 18px !important;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px !important;
}

@media (max-width: 980px) {
  .header-nav {
    display: none;
  }

  .menu-button,
  .mobile-menu {
    display: block;
  }

  .hero-inner {
    justify-content: center;
  }

  .card-grid-3,
  .warehouse-grid,
  .reason-grid,
  .flow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero {
    min-height: 70vh;
  }

  .hero-inner {
    min-height: 70vh;
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 58px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72));
  }

  .button-row,
  .news-header,
  .section-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .section-title-row::after {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .card-grid-3,
  .warehouse-grid,
  .reason-grid,
  .flow-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .reason-item {
    grid-template-columns: 58px 1fr;
  }

  .stats-box {
    padding: 28px 18px;
  }
}
.loading-modern {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 20px;
}

.loading-modern span {
  width: 8px;
  height: 8px;
  background: #888;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

.loading-modern span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-modern span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.news-skeleton {
  height: 70px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;

  background: linear-gradient(
    90deg,
    #f3f4f6 25%,
    #ffffff 50%,
    #f3f4f6 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}
/* Location detail page */
.location-hero {
  position: relative;
  min-height: 390px;
  color: var(--color-text);
  background: #f8fafc;
  overflow: hidden;
}

.location-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.location-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.location-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 44%, rgba(255, 255, 255, 0.10) 100%);
  pointer-events: none;
}

.location-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.location-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 390px;
  align-items: center;
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
  padding: 56px 16px;
}

.location-hero-copy {
  position: relative;
  width: min(100%, 760px);
  padding: 34px 38px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 6px solid var(--color-yellow);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(8px);
}

.location-hero-copy::before {
  content: "INDOOR STORAGE";
  position: absolute;
  right: 30px;
  top: 22px;
  color: rgba(15, 23, 42, 0.16);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.34em;
}

.location-hero .eyebrow {
  color: #ca8a04;
}

.location-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--color-black);
  font-size: clamp(36px, 3.25vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.055em;
  font-weight: 1000;
  text-shadow: none;
}

.location-hero h1 .keep-line {
  display: inline-block;
  white-space: nowrap;
}

.location-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: #334155;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 800;
  line-height: 1.8;
  text-shadow: none;
}

.location-hero .button-row {
  margin-top: 26px;
}

.nowrap {
  white-space: nowrap;
}

.btn-outline-light {
  color: var(--color-black);
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  color: var(--color-black);
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);
  gap: 34px;
  align-items: start;
}

.location-gallery,
.location-summary,
.access-card {
  border: 1px solid var(--color-line);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.location-gallery {
  padding: 18px;
}

.location-main-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.location-summary {
  position: sticky;
  top: 96px;
  padding: 28px;
}

.location-summary h3 {
  margin: 4px 0 18px;
  font-size: 32px;
  line-height: 1.25;
}

.location-cta {
  width: 100%;
}

.map-placeholder small {
  color: var(--color-muted);
}

@media (max-width: 980px) {
  .location-layout,
  .access-card,
  .compact-reason-grid {
    grid-template-columns: 1fr;
  }

  .location-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .location-hero {
    min-height: 470px;
  }

  .location-hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.92) 62%, rgba(255, 255, 255, 0.98) 100%);
  }

  .location-hero-inner {
    min-height: 470px;
    align-items: flex-end;
    width: min(100% - 24px, 1280px);
    padding: 34px 0;
  }

  .location-hero-copy {
    width: 100%;
    padding: 24px 20px;
    border-left-width: 4px;
    border-radius: 22px;
  }

  .location-hero-copy::before {
    display: none;
  }

  .location-hero h1 {
    font-size: clamp(29px, 8.4vw, 40px);
    letter-spacing: -0.06em;
  }

  .location-hero h1 .keep-line {
    white-space: nowrap;
  }

  .location-hero p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.7;
  }

  .location-gallery,
  .location-summary,
  .access-card {
    padding: 18px;
  }

  .access-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* =========================================================
   Finishing polish / anti-layout-shift adjustments
   共通CSSのまま使うが、詳細ページ専用の調整は .page-location-detail 配下に限定
========================================================= */

html,
body {
  overflow-x: hidden;
}

.logo,
.header-tel,
.header-nav a,
.btn {
  flex-shrink: 0;
}

.header-inner {
  min-width: 0;
}

.logo img {
  width: auto;
  max-width: 180px;
}

.header-nav {
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: clamp(12px, 1.35vw, 22px);
}

.header-nav a {
  white-space: nowrap;
}

.header-tel strong {
  font-size: clamp(17px, 1.55vw, 23px);
  white-space: nowrap;
}

.btn {
  text-align: center;
  line-height: 1.35;
}

.info-box,
.feature-box,
.news-card,
.warehouse-body,
.location-summary,
.reason-item,
.flow-item {
  min-width: 0;
}

.info-box span,
.feature-box,
.btn,
.section-title,
.reason-item h3,
.flow-item h3 {
  overflow-wrap: anywhere;
}

.warehouse-body .button-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px !important;
}

.warehouse-body .btn {
  width: 100%;
  min-height: 48px;
  padding-inline: 18px;
}

.warehouse-body > p:last-of-type {
  min-height: 1.7em;
}

.location-gallery,
.location-summary,
.access-card,
.warehouse-card,
.image-frame,
.stats-box {
  border-radius: var(--radius-lg);
}

.location-gallery,
.warehouse-card,
.image-frame {
  overflow: hidden;
}

.location-main-image,
.main-image,
.image-frame img,
.reason-image {
  background: #f1f5f9;
}

/* Detail page only */
.page-location-detail .location-detail-section {
  padding-top: 64px;
}

.page-location-detail .location-layout {
  grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.8fr);
  gap: clamp(22px, 3vw, 38px);
}

.page-location-detail .location-gallery {
  padding: clamp(14px, 1.8vw, 20px);
}

.page-location-detail .location-main-image {
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px var(--color-line);
}

.page-location-detail .thumb-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.page-location-detail .thumb {
  border-radius: 12px;
  background: #f8fafc;
}

.page-location-detail .location-summary {
  border-radius: 24px;
}

.page-location-detail .location-summary .info-grid,
.page-location-detail .location-summary .feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-location-detail .location-cta {
  margin-top: 22px;
}

.location-note {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.65;
}

.access-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 24px;
  padding: 28px;
  align-items: stretch;
}

.access-list {
  display: grid;
  align-content: start;
  margin: 0;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.access-list div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--color-line);
}

.access-list div:last-child {
  border-bottom: 0;
}

.access-list dt {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 900;
}

.access-list dd {
  min-width: 0;
  margin: 0;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.map-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border: 1px dashed rgba(0, 0, 0, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.14), rgba(248, 250, 252, 0.96)),
    #f8fafc;
}

.map-placeholder p {
  margin: 0 0 4px;
  font-weight: 1000;
}

.compact-reason-grid .reason-item {
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.05);
}

@media (max-width: 1120px) {
  .header-nav {
    display: none;
  }

  .menu-button,
  .mobile-menu {
    display: block;
  }
}

@media (max-width: 980px) {
  .page-location-detail .location-layout,
  .access-card,
  .compact-reason-grid {
    grid-template-columns: 1fr;
  }

  .page-location-detail .location-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 64px;
  }

  .logo img {
    max-width: 150px;
    height: 34px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .news-card {
    flex-direction: column;
  }

  .page-location-detail .location-detail-section {
    padding-top: 48px;
  }

  .page-location-detail .location-gallery,
  .page-location-detail .location-summary,
  .access-card {
    padding: 16px;
  }

  .page-location-detail .location-summary h3 {
    font-size: 28px;
  }

  .page-location-detail .thumb-grid {
    gap: 6px;
  }

  .access-card {
    gap: 16px;
  }

  .access-list div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 16px;
  }

  .map-placeholder {
    min-height: 220px;
  }

  .compact-reason-grid .reason-item {
    padding: 20px;
  }
}

/* ==========================
   Price display refinement
   - Prevents awkward yen-only line breaks
   - Gives rental price more presence in listing/detail cards
   ========================== */
.info-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.info-box small {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.info-box span {
  display: block;
  margin-top: 0;
  font-size: 17px;
  font-weight: 1000;
  line-height: 1.25;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  overflow-wrap: normal;
  word-break: keep-all;
}

.info-box .price-break {
  display: block;
}

.info-box:first-child span {
  font-size: 22px;
  line-height: 1.15;
}

@media (max-width: 640px) {
  .info-box {
    padding: 12px 10px;
  }

  .info-box span {
    font-size: 16px;
    letter-spacing: -0.04em;
  }

  .info-box:first-child span {
    font-size: 20px;
  }
}

/* ==========================
   Detail page: recommended cards without icons
   ========================== */
.compact-reason-grid .reason-item {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  gap: 0;
  padding: 32px 30px;
}

.compact-reason-grid .reason-icon {
  display: none;
}

.compact-reason-grid .reason-number {
  display: flex;
  width: 100%;
  margin-bottom: 24px;
  font-size: 46px;
}

.compact-reason-grid .reason-content {
  width: 100%;
  min-width: 0;
}

.compact-reason-grid .reason-content h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.03em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.compact-reason-grid .reason-content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.85;
  word-break: normal;
  overflow-wrap: anywhere;
}

/* ==========================
   Detail page: other locations
   ========================== */
.other-locations-section {
  background: var(--color-white);
}

.other-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.other-location-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 180px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.other-location-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-yellow);
  box-shadow: var(--shadow-soft);
}

.other-location-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #f1f5f9;
}

.other-location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.other-location-card:hover .other-location-image img {
  transform: scale(1.04);
}

.other-location-image span {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.18em;
}

.other-location-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
}

.other-location-body h3 {
  margin: 6px 0 14px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 1000;
}

.other-location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.other-location-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 4px 10px;
  color: #334155;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.other-location-link {
  margin: 16px 0 0;
  color: #ca8a04;
  font-size: 14px;
  font-weight: 1000;
}

@media (max-width: 980px) {
  .other-location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .compact-reason-grid .reason-item {
    padding: 26px 22px;
  }

  .compact-reason-grid .reason-content h3 {
    font-size: 21px;
  }

  .other-location-card {
    grid-template-columns: 1fr;
  }

  .other-location-image {
    aspect-ratio: 16 / 9;
  }

  .other-location-body {
    padding: 22px;
  }

  .other-location-body h3 {
    font-size: 24px;
  }
}


/* ==========================
   Final integrated fixes
   ========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

body {
  padding-top: 72px;
}

.map-placeholder {
  padding: 0;
  overflow: hidden;
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.info-box span,
.info-box:first-child span {
  font-size: 22px;
  line-height: 1.15;
}

.other-location-image span {
  right: 16px;
  left: auto;
}

@media (max-width: 640px) {
  body {
    padding-top: 64px;
  }

  .info-box span,
  .info-box:first-child span {
    font-size: 20px;
  }

  .map-placeholder iframe {
    min-height: 300px;
  }
}
