@charset "utf-8";
/* CSS Document */ :root {
  --bg: #0b0b0f;
  --bg-2: #12121a;
  --panel: #1a1a24;
  --text: #f3f4f6;
  --muted: #a1a1aa;
  --primary: #885AA3; /* 紫 */
  --primary-2: #885AA3;
  --border: #242434;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, #0e0e14 100%);
  line-height: 1.7;
}
a {
  color: var(--text);
  text-decoration: none
}
a:hover {
  opacity: .9
}
.container {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto
}
img {
  max-width: 100%;
}
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 15, .7);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px
}
.brand img {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 8px
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px
}
.nav a {
  font-weight: 600;
  opacity: .9
}
@media (max-width:640px) {
  .nav {
    display: none;
  }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-weight: 700;
}
.btn-primary.small {
  padding: .45rem .85rem;
  font-size: .9rem
}
/* Hero */
.hero {
  padding: 32px 0 32px;
  text-align: center;
}
.hero h1 {
  margin: 0 0 8px;
}
.hero .lead {
  color: var(--muted);
  margin: 0 0 24px
}
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}
/* Sections */
.section {
  padding: 32px 0
}
.section-dark {
  background: linear-gradient(180deg, #0f0f16, #0b0b12)
}
.section-title {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 16px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
  margin-top: 8px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px
}
@media (max-width:900px) {
  .grid-2 {
    grid-template-columns: 1fr
  }
}
/* About */
.bullet {
  padding-left: 1.1em;
  margin: 0 0 12px
}
.bullet li {
  margin: 0 0 8px
}
.store-info {
  margin-top: 12px;
  font-weight: 700
}
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.steps {
  margin: 8px 0 12px;
  padding-left: 1.2em
}
.steps li {
  margin: 6px 0
}
.note {
  color: var(--muted);
  font-size: .95rem
}
/* Prices */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}
.actions {
  display: flex;
  align-items: center;
  gap: 12px
}
.stamp {
  color: var(--muted);
  font-size: .95rem
}
.cards {
  margin-top: 18px;
  gap: 18px;
}
.card {
  overflow: hidden;
}
.card + .card {
  margin-top: 60px;
}
.card-title {
  margin: 0;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 1.3rem;
}
.price-image {
  display: block;
  width: 100%;
  height: auto
}
.placeholder {
  position: relative;
  place-items: center;
  margin: 16px;
  text-align: center;
}
.placeholder img {
  width: 100%;
}
.card .mini {
  color: var(--muted);
  font-size: .9rem;
  padding: 8px 16px 14px
}
/* 画像が拡大できることを示す */
.zoomable {
  position: relative;
  cursor: zoom-in;
}
.zoomable img {
  display: block;
  width: 100%;
  height: auto;
}
/* Lightbox 基本 */
.lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lb.active {
  display: flex;
}
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(2px);
}
.lb-content {
  position: relative;
  z-index: 1;
  /*max-width: 92vw;
  max-height: 86vh;*/
}
/* ★ ここが重要：固定高さはやめ、収まる最大サイズで表示 */
.lb-content img {
  display: block;
  width: auto;
  height: auto;
  max-width: 96vw; /* 幅は画面内 */
  max-height: 90vh; /* 高さも画面内 */
  object-fit: contain; /* はみ出さず全体表示 */
}
.lb-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(0, 0, 0, .7);
  color: #fff;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
}
@media (max-width:640px) {
  .lb-content img {
    width: 98vw;
    height: auto;
  }
}
/* Map */
.access-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 740px) {
  .access-photos {
    grid-template-columns: 1fr;
  }
}
.access-photos img {
  display: block;
  width: 100%;
  height: auto; /* 比率そのまま表示（トリミングなし） */
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  /* もし高さを揃えたいなら下2行のコメントを外してください */
  /* aspect-ratio: 16/9;
     object-fit: cover; */
}
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0
}
.map-link {
  text-align: right;
  margin-top: 8px
}
/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: #0b0b10;
  color: var(--muted);
}
.footer-inner {
  display: grid;
  gap: 12px;
  padding: 24px 20px;
}
.footer-brand {
  font-weight: 800;
  color: var(--text)
}
.footer-info a {
  color: var(--text);
  text-decoration: underline
}
.copy {
  display: block;
  margin-top: 6px;
  font-size: .9rem
}
/* 価格カテゴリ内ナビ */
/* 価格カテゴリ内ナビ（固定なし） */
.price-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PCは4等分 */
  gap: 12px;
  margin: 12px 0 50px;
}
@media (max-width: 640px) {
  .price-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  } /* スマホは2×2 */
}
.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #15151d;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .12s ease, background .12s ease, color .12s ease;
}
.price-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  transform: translateY(-1px);
}
.price-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
/* ヘッダー分の被り防止（任意） */
.card[id] {
  scroll-margin-top: 72px;
}
#company {
  padding-bottom: 100px;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.6;
}
.company-table th, .company-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #242434;
  text-align: left;
}
.company-table th {
  width: 35%;
  font-weight: 600;
  color: #fff;
}
/* スマホ対応 */
@media screen and (max-width: 600px) {
  .company-table th, .company-table td {
    display: block;
    width: 100%;
  }
  .company-table th {
    border: none;
    padding-bottom: 0;
  }
  .company-table td {
    padding-bottom: 10px;
  }
}