/* ============================================
   DUBAI GEMS — Landing Page
   Palette: deep navy × gold (構造図と統一)
   ============================================ */
:root {
  --navy-deep: #060d1f;
  --navy: #0b1b3a;
  --navy-light: #12264d;
  --gold: #c9a24b;
  --gold-light: #e8c97a;
  --gold-pale: #f3e5c3;
  --text: #2a2e38;
  --text-light: #6b7280;
  --white: #ffffff;
  --bg-ivory: #faf7f0;
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
  --en: "Cormorant Garamond", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--sans);
  color: var(--text);
  line-height: 1.9;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
.sp { display: none; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 880px; }

/* ---------- Headings ---------- */
.en-label {
  font-family: var(--en);
  font-size: 15px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 22px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 56px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-lead { text-align: center; margin-bottom: 40px; color: var(--text-light); }
.section-lead strong { color: var(--navy); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 3px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all .3s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 15px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 55%, var(--gold) 100%);
  color: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(201, 162, 75, .35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201, 162, 75, .5); }
.btn-ghost { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-block { display: block; width: 100%; border: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(6, 13, 31, .94);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
  padding: 10px 0;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--white); }
.logo-mark { color: var(--gold-light); font-size: 22px; }
.logo-text {
  font-family: var(--en);
  font-size: 22px;
  letter-spacing: 0.18em;
  display: flex; flex-direction: column; line-height: 1.2;
}
.logo-text small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-pale);
}
.gnav { display: flex; align-items: center; gap: 26px; }
.gnav a {
  color: var(--white);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  position: relative;
}
.gnav a:not(.nav-cta) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.3;
}
.gnav a small {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold-light);
}
.gnav a:not(.nav-cta)::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width .3s;
}
.gnav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep) !important;
  padding: 9px 22px;
  border-radius: 3px;
  font-weight: 600;
}
.menu-btn { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('img/hero-bg.webp') center / cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,13,31,.86) 0%, rgba(6,13,31,.62) 34%, rgba(6,13,31,.18) 62%, rgba(6,13,31,.28) 100%),
    linear-gradient(to bottom, rgba(6,13,31,.55) 0%, transparent 22%, transparent 70%, rgba(6,13,31,.6) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 84px 24px 18px;
  text-align: left;
}
.hero-lead {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.38;
  margin-bottom: 12px;
  text-shadow: 0 2px 34px rgba(0,0,0,.55);
}
.hero-sub {
  font-size: clamp(13.5px, 1.4vw, 16px);
  line-height: 2;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.hero-usp {
  display: flex;
  align-items: stretch;
  margin-bottom: 22px;
  max-width: 620px;
}
.usp-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 4px 14px;
  color: var(--gold-light);
}
.usp-item + .usp-item { border-left: 1px solid rgba(201,162,75,.4); }
.usp-item svg { width: 26px; height: 26px; }
.usp-item b {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.usp-item span { font-size: 11px; color: rgba(255,255,255,.75); line-height: 1.5; }
.hero-cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 320px;
  padding: 14px 26px;
  border: 1px solid rgba(232,201,122,.75);
  border-radius: 3px;
  background: rgba(6,13,31,.35);
  backdrop-filter: blur(3px);
  color: var(--gold-pale);
  font-size: 15px;
  letter-spacing: 0.14em;
  transition: all .3s ease;
}
.btn-hero .btn-arrow { color: var(--gold-light); transition: transform .3s ease; }
.btn-hero:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  border-color: transparent;
}
.btn-hero:hover .btn-arrow { color: var(--navy-deep); transform: translateX(4px); }
.hero-sublink {
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(232,201,122,.6);
  padding-bottom: 3px;
  transition: color .2s;
}
.hero-sublink:hover { color: var(--gold-light); }
.hero-note {
  margin-top: 12px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--gold-pale);
}
.hero-strip {
  position: relative; z-index: 1;
  width: calc(100% - 48px);
  max-width: 1200px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(201,162,75,.5);
  border-radius: 4px;
  background: rgba(6,13,31,.58);
  backdrop-filter: blur(6px);
}
.strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 12px;
  color: var(--gold-light);
}
.strip-item + .strip-item { border-left: 1px solid rgba(201,162,75,.3); }
.strip-item svg { width: 26px; height: 26px; flex-shrink: 0; }
.strip-item b {
  display: block;
  font-family: var(--en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-pale);
  line-height: 1.3;
}
.strip-item span { font-size: 11.5px; color: rgba(255,255,255,.75); }

/* ---------- Concept ---------- */
.concept { padding: 110px 0 90px; background: var(--bg-ivory); }
.concept-text { text-align: center; margin-bottom: 56px; }
.concept-text strong { color: var(--navy); border-bottom: 2px solid var(--gold-light); }
.concept-diagram {
  display: flex; align-items: stretch; justify-content: center; gap: 8px;
  flex-wrap: wrap;
}
.cd-step {
  flex: 1 1 150px;
  max-width: 190px;
  background: var(--white);
  border: 1px solid #e8e2d4;
  border-radius: 8px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(11,27,58,.06);
}
.cd-step.highlight {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(11,27,58,.3);
}
.cd-step.highlight small { color: var(--gold-pale); }
.cd-icon { font-size: 30px; margin-bottom: 10px; }
.cd-step p { font-size: 14px; font-weight: 600; line-height: 1.6; }
.cd-step small { display: block; font-size: 11px; font-weight: 400; color: var(--text-light); margin-top: 4px; }
.cd-arrow { align-self: center; color: var(--gold); font-size: 22px; }

/* ---------- Features ---------- */
.features { padding: 110px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid #ece7db;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(11,27,58,.07);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(11,27,58,.14); }
.feature-num {
  position: absolute; top: 12px; left: 16px;
  font-family: var(--en);
  font-size: 34px;
  color: var(--gold-light);
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.feature-img { height: 190px; overflow: hidden; }
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.feature-card:hover .feature-img img { transform: scale(1.05); }
.img-ph {
  height: 190px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  padding: 22px 24px 10px;
  color: var(--navy);
}
.feature-card p { padding: 0 24px 28px; font-size: 14px; color: var(--text-light); }

/* ---------- Design Guide ---------- */
.design { padding: 110px 0; background: var(--bg-ivory); }
.design-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.design-tab {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 10px 30px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: all .25s ease;
}
.design-tab:hover { background: rgba(201,162,75,.12); }
.design-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(201,162,75,.35);
}
.chart-panels { position: relative; }
.chart-wrap {
  display: none;
  overflow-x: auto;
  background: var(--white);
  border: 1px solid #e8e2d4;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 8px 28px rgba(11,27,58,.08);
  -webkit-overflow-scrolling: touch;
}
.chart-wrap.active { display: block; }
.chart-wrap img {
  display: block;
  min-width: 1100px;
  width: 100%;
  cursor: zoom-in;
  border-radius: 6px;
}
.chart-hint {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}
.chart-actions { text-align: center; margin-top: 18px; }
.btn-outline-navy {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  padding: 12px 34px;
  font-size: 14px;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.chart-note {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.9;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,13,31,.92);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner {
  max-width: 96vw;
  max-height: 92vh;
  overflow: auto;
}
.lightbox-inner img {
  display: block;
  max-width: none;
  width: 1400px;
}
.lightbox-close {
  position: absolute;
  top: 14px; right: 20px;
  font-size: 40px;
  line-height: 1;
  color: var(--gold-light);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 301;
}

/* ---------- Flow ---------- */
.flow {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 60% 40% at 85% 10%, rgba(201,162,75,.12), transparent 60%),
    linear-gradient(170deg, var(--navy-deep), var(--navy) 70%);
  color: var(--white);
}
.flow .section-title { color: var(--white); }
.flow .section-lead { color: rgba(255,255,255,.75); }
.flow .section-lead strong { color: var(--gold-light); }
.flow-list {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.flow-list::before {
  content: "";
  position: absolute;
  left: 55px; top: 20px; bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,162,75,.15));
}
.flow-list li {
  display: flex;
  gap: 28px;
  padding: 22px 0;
  position: relative;
}
.flow-no {
  flex: 0 0 110px;
  font-family: var(--en);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-align: center;
  padding-top: 4px;
  background: var(--navy-deep);
  align-self: flex-start;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(201,162,75,.45);
  border-radius: 999px;
  padding: 6px 0;
}
.flow-body h3 { font-family: var(--serif); font-size: 18px; margin-bottom: 6px; color: var(--gold-pale); }
.flow-body p { font-size: 14px; color: rgba(255,255,255,.8); }
.flow-body strong { color: var(--gold-light); }

/* ---------- Docs block (2つの書面) ---------- */
.docs-block {
  max-width: 860px;
  margin: 70px auto 0;
  padding-top: 50px;
  border-top: 1px solid rgba(201,162,75,.3);
}
.docs-title {
  font-family: var(--serif);
  font-size: 22px;
  text-align: center;
  color: var(--gold-pale);
  margin-bottom: 10px;
}
.docs-lead {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
}
.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.doc-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,162,75,.4);
  border-radius: 10px;
  padding: 28px 30px;
}
.doc-timing {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 999px;
  padding: 4px 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.doc-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--gold-pale);
  margin-bottom: 12px;
}
.doc-card ul { list-style: none; padding: 0; }
.doc-card li {
  font-size: 13.5px;
  color: rgba(255,255,255,.82);
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.7;
}
.doc-card li::before {
  content: "\2713";
  position: absolute; left: 0;
  color: var(--gold-light);
  font-weight: 700;
}
.doc-card li strong { color: var(--gold-light); }
.docs-note {
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  margin-top: 24px;
}

/* ---------- Payment ---------- */
.payment { padding: 110px 0; background: var(--bg-ivory); }
.payment-card {
  display: flex;
  gap: 36px;
  align-items: center;
  background: var(--white);
  border: 1px solid #e8e2d4;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 40px 44px;
  box-shadow: 0 8px 28px rgba(11,27,58,.08);
  margin-bottom: 48px;
}
.payment-catch { font-family: var(--serif); font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.payment-catch strong { border-bottom: 2px solid var(--gold-light); }
.payment-main p { font-size: 14.5px; }
.payment-points { margin-top: 16px; padding-left: 0; list-style: none; }
.payment-points li {
  font-size: 14px;
  padding: 6px 0 6px 26px;
  position: relative;
}
.payment-points li::before {
  content: "\2713";
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}
.payment-logo { text-align: center; flex-shrink: 0; }
.pay-methods { display: flex; gap: 8px; justify-content: center; margin-bottom: 12px; }
.pay-chip {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: #f6f1e6;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}
.card-brands { display: flex; gap: 10px; justify-content: center; margin-bottom: 14px; }
.brand-badge {
  font-family: var(--en);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
  padding: 6px 16px;
}
.usen-badge {
  font-family: var(--en);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.1em;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 6px;
  padding: 16px 28px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.usen-badge small { font-size: 11px; letter-spacing: 0.22em; display: block; }
.payment-logo p { font-size: 12px; color: var(--text-light); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.trust-item {
  background: var(--white);
  border: 1px solid #ece7db;
  border-radius: 8px;
  padding: 26px 28px;
}
.trust-item h4 {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.trust-item p { font-size: 13.5px; color: var(--text-light); }

/* ---------- FAQ ---------- */
.faq { padding: 110px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e5e0d3;
}
.faq-item dt {
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  padding: 22px 44px 22px 38px;
  cursor: pointer;
  position: relative;
  transition: color .2s;
}
.faq-item dt:hover { color: var(--gold); }
.faq-item dt::before {
  content: "Q";
  position: absolute; left: 0; top: 20px;
  font-family: var(--en);
  font-size: 20px;
  color: var(--gold);
}
.faq-item dt::after {
  content: "+";
  position: absolute; right: 8px; top: 20px;
  font-size: 22px;
  color: var(--gold);
  transition: transform .3s;
}
.faq-item.open dt::after { transform: rotate(45deg); }
.faq-item dd {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: 14.5px;
  color: var(--text-light);
  padding: 0 8px 0 38px;
}
.faq-item.open dd { max-height: 240px; padding-bottom: 24px; }

/* ---------- Access / Store ---------- */
.access { padding: 110px 0; background: var(--bg-ivory); }
.access .section-lead strong { color: var(--gold); font-weight: 700; }
.access-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid #e8e2d4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(11,27,58,.08);
}
.access-info { padding: 40px 44px; }
.access-info h3 {
  font-family: var(--en);
  font-size: 30px;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.access-info h3 span {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 4px;
}
.access-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.access-table th, .access-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid #efe9dc;
  vertical-align: top;
  line-height: 1.8;
}
.access-table th {
  width: 90px;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}
.access-table a { color: var(--navy); font-weight: 600; }
.access-table a:hover { color: var(--gold); }
.access-map { min-height: 320px; height: 100%; }
.img-ph-map { background: linear-gradient(140deg, #2a3a5c, #3d5580 60%, #2a3a5c); }

/* ---------- Contact ---------- */
.contact {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 15%, rgba(201,162,75,.14), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}
.contact .section-title { color: var(--white); }
.contact .section-lead { color: rgba(255,255,255,.75); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.contact-tel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,162,75,.4);
  border-radius: 10px;
  padding: 36px 30px;
  text-align: center;
}
.tel-label { font-size: 14px; color: var(--gold-pale); margin-bottom: 10px; }
.tel-number {
  font-family: var(--en);
  font-size: 36px;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  line-height: 1.3;
}
.tel-number a { color: var(--gold-light); }
.tel-number a:hover { color: var(--gold-pale); }
.mail-address {
  font-family: var(--en);
  font-size: clamp(15px, 1.6vw, 19px);
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 6px 0;
  word-break: break-all;
}
.mail-address a { color: var(--gold-light); border-bottom: 1px solid rgba(232,201,122,.5); padding-bottom: 2px; }
.mail-address a:hover { color: var(--gold-pale); }
.form-note {
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  margin-top: 10px;
}
.form-note.center { text-align: center; }
.tel-hours { font-size: 12.5px; color: rgba(255,255,255,.65); margin-top: 10px; }
.contact-form label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--gold-pale);
  margin-bottom: 18px;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color .2s, background .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  background: rgba(255,255,255,.12);
}
.contact-form ::placeholder { color: rgba(255,255,255,.35); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
  border-top: 1px solid rgba(201,162,75,.25);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.footer-brand .logo { font-family: var(--en); font-size: 20px; letter-spacing: 0.15em; color: var(--white); margin-bottom: 14px; }
.footer-company { font-size: 12.5px; line-height: 2; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-nav a:hover { color: var(--gold-light); }
.copyright {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.45);
}

/* ---------- Legal subpages (特商法・PP) ---------- */
body.subpage { background: var(--bg-ivory); }
.legal-page { padding: 150px 0 90px; }
.legal-page .section-title { font-size: clamp(24px, 3.4vw, 32px); }
.legal-intro { margin-bottom: 40px; font-size: 14.5px; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid #e8e2d4;
  font-size: 14px;
  box-shadow: 0 6px 22px rgba(11,27,58,.06);
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 18px 22px;
  border-bottom: 1px solid #efe9dc;
  vertical-align: top;
  line-height: 1.9;
}
.legal-table th {
  width: 200px;
  background: #f6f1e6;
  color: var(--navy);
  font-weight: 600;
}
.legal-table td small { color: var(--text-light); }
.legal-table td strong { color: #b0483d; }
.legal-section { margin-bottom: 36px; }
.legal-section h2 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  margin-bottom: 12px;
}
.legal-section p, .legal-section ul { font-size: 14px; color: var(--text); }
.legal-section ul { padding-left: 22px; }
.legal-section li { margin: 4px 0; }
.legal-date { margin-top: 14px; color: var(--text-light); font-size: 13px; }
.legal-back { margin-top: 48px; text-align: center; }
.legal-back a {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
}
.legal-back a:hover { color: var(--navy); }
@media (max-width: 768px) {
  .legal-table th, .legal-table td { display: block; width: 100%; }
  .legal-table th { border-bottom: none; padding-bottom: 8px; }
  .legal-table td { padding-top: 0; }
  .legal-page { padding: 120px 0 70px; }
}

/* ---------- Placeholder note ---------- */
.ph-note {
  display: inline-block;
  font-size: 11px;
  color: #d98282;
  margin-left: 8px;
  font-weight: 400;
}
.ph-note.center { display: block; text-align: center; margin: 10px 0 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .access-card { grid-template-columns: 1fr; }
  .access-info { padding: 30px 26px; }
  .access-map { min-height: 240px; }
  .docs-grid { grid-template-columns: 1fr; }
  .payment-card { flex-direction: column; text-align: left; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sp { display: inline; }
  /* mobile menu */
  .menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px; height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 210;
    padding: 8px;
  }
  .menu-btn span {
    display: block;
    height: 2px;
    background: var(--gold-light);
    transition: transform .3s, opacity .3s;
  }
  body.menu-open .menu-btn span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-btn span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .gnav {
    position: fixed;
    inset: 0;
    background: rgba(6,13,31,.97);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 200;
  }
  body.menu-open .gnav { opacity: 1; pointer-events: auto; }
  .gnav a { font-size: 17px; }

  .flow-list::before { left: 50%; display: none; }
  .flow-list li { flex-direction: column; gap: 10px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .flow-no { flex: none; width: 110px; }
  .cd-arrow { transform: rotate(90deg); width: 100%; text-align: center; }
  .cd-step { max-width: 100%; flex-basis: 100%; }
  .payment-card { padding: 30px 24px; }
  .hero-inner { padding-top: 110px; }
  .hero-usp { max-width: 100%; }
  .usp-item { padding: 4px 8px; }
  .usp-item b { font-size: 12px; white-space: normal; }
  .usp-item span { font-size: 10px; }
  .btn-hero { min-width: 0; width: 100%; max-width: 360px; }
  .hero-strip { grid-template-columns: 1fr 1fr; width: calc(100% - 32px); }
  .strip-item { justify-content: flex-start; padding: 14px 16px; }
  .strip-item:nth-child(3) { border-left: none; }
  .strip-item:nth-child(n+3) { border-top: 1px solid rgba(201,162,75,.3); }
}
