:root {
  --black: #0A0A0A;
  --black2: #161616;
  --gold: #C5A45B;
  --gold-light: #D7BB76;
  --ivory: #F4F0E7;
  --white: #FFFFFF;
  --muted: #6E675C;
  --line: rgba(10, 10, 10, .14);
  --serif: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  --sans: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  --en: 'Cormorant Garamond', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: var(--serif); letter-spacing: .04em; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: absolute; z-index: 1000; top: 0; left: -9999px;
  padding: 9px 15px; background: var(--black); color: var(--white); font-size: 13px;
}
.skip-link:focus { top: 10px; left: 10px; }
.wrap { width: min(100% - 44px, 1080px); margin: 0 auto; }
.narrow { width: min(100% - 44px, 800px); margin: 0 auto; }

/* 共通ヘッダー */
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(197, 164, 91, .28); background: rgba(10, 10, 10, .94); color: var(--ivory); backdrop-filter: blur(14px); box-shadow: 0 9px 30px rgba(0, 0, 0, .18); }
.site-header__inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 18px; width: min(100% - 36px, 1200px); margin: 0 auto; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 82px; min-height: 70px; }
.brand img { width: 82px; height: auto; filter: drop-shadow(0 0 12px rgba(215, 187, 118, .2)); transition: transform .45s cubic-bezier(.2, .75, .2, 1), filter .3s ease; }
.brand:hover img { transform: translateY(-2px) scale(1.035); filter: drop-shadow(0 0 16px rgba(215, 187, 118, .34)); }
.main-nav { display: flex; align-items: center; gap: clamp(12px, 1.7vw, 27px); font-size: 12px; white-space: nowrap; }
.main-nav a { border-bottom: 1px solid transparent; transition: border-color .2s ease, color .2s ease; }
.main-nav a:hover, .main-nav a[aria-current='page'] { border-color: var(--gold); color: var(--gold-light); }
.button { position: relative; display: inline-flex; overflow: hidden; min-height: 48px; align-items: center; justify-content: center; gap: 8px; padding: 10px 22px; border: 1px solid var(--gold); background: var(--gold); color: var(--black); font-size: 13px; font-weight: 700; letter-spacing: .05em; line-height: 1.4; text-align: center; transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease; }
.button::after { position: absolute; top: -80%; left: -45%; width: 28%; height: 260%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent); content: ''; transform: rotate(18deg) translateX(-220%); transition: transform .7s cubic-bezier(.2, .75, .2, 1); pointer-events: none; }
.button:hover::after { transform: rotate(18deg) translateX(620%); }
.button:hover { background: transparent; color: var(--gold-light); }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(197, 164, 91, .2); }
.button:active { transform: translateY(1px); }
.button--small { min-height: 38px; padding: 7px 13px; font-size: 11px; }
.button--outline { background: transparent; color: var(--gold); }
.button--outline:hover { background: var(--gold); color: var(--black); }
.menu-button { display: none; width: 42px; height: 42px; padding: 8px; border: 0; background: transparent; color: var(--white); cursor: pointer; }
.menu-button span { display: block; height: 1px; margin: 6px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; border-top: 1px solid rgba(244, 240, 231, .18); background: var(--black); }
.mobile-nav a { display: block; padding: 13px 22px; border-bottom: 1px solid rgba(244, 240, 231, .12); }
.mobile-nav .button { width: calc(100% - 44px); margin: 18px 22px; }

/* ページ共通 */
.page-hero { position: relative; overflow: hidden; padding: clamp(64px, 10vw, 116px) 0 clamp(58px, 8vw, 96px); background: radial-gradient(circle at 76% 22%, rgba(197, 164, 91, .12), transparent 32%), var(--black); color: var(--ivory); }
.page-hero::before { position: absolute; inset: -35% -15%; background: linear-gradient(112deg, transparent 43%, rgba(197, 164, 91, .12) 49%, transparent 55%); content: ''; transform: translateX(-18%); }
.page-hero::after { position: absolute; right: -100px; bottom: -160px; width: 360px; height: 360px; border: 1px solid rgba(197, 164, 91, .34); border-radius: 50%; content: ''; }
.eyebrow { position: relative; z-index: 1; display: block; margin-bottom: 13px; color: var(--gold-light); font-family: var(--en); font-size: 17px; font-weight: 600; letter-spacing: .12em; }
.page-hero h1 { position: relative; z-index: 1; font-size: clamp(29px, 4.5vw, 48px); line-height: 1.45; }
.page-hero p { position: relative; z-index: 1; max-width: 660px; margin-top: 18px; color: rgba(244, 240, 231, .8); }
.section { padding: clamp(58px, 8vw, 100px) 0; }
.section--ivory { background: var(--ivory); }
.section--dark { background: var(--black2); color: var(--ivory); }
.section__lead { max-width: 720px; margin-bottom: 35px; }
.section__lead h2 { font-size: clamp(23px, 3.4vw, 34px); line-height: 1.55; }
.section__lead p { margin-top: 15px; color: var(--muted); }
.section--dark .section__lead p { color: rgba(244, 240, 231, .78); }
.kicker { display: block; margin-bottom: 8px; color: var(--gold); font-family: var(--en); font-size: 15px; font-weight: 600; letter-spacing: .11em; }
.prose > * + * { margin-top: 20px; }
.prose h2 { margin-top: 50px; font-size: clamp(21px, 3vw, 30px); line-height: 1.55; }
.prose h3 { margin-top: 32px; font-size: 18px; line-height: 1.6; }
.prose ul, .prose ol { padding-left: 1.25em; }
.prose li + li { margin-top: 7px; }
.prose a { border-bottom: 1px solid currentColor; }
.prose strong { font-weight: 700; }
.rule { height: 1px; margin: 38px 0; border: 0; background: var(--line); }
.notice { padding: 20px 22px; border-left: 3px solid var(--gold); background: var(--ivory); font-size: 14px; }
.notice--dark { background: rgba(244, 240, 231, .08); color: var(--ivory); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { padding: 26px 24px; border: 1px solid var(--line); background: var(--white); }
.card h3 { font-size: 19px; line-height: 1.6; }
.card p { margin-top: 10px; color: var(--muted); font-size: 14px; }
.step-list { counter-reset: step; display: grid; gap: 0; }
.step { position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 16px; padding: 26px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); color: var(--black); font-family: var(--en); font-size: 34px; font-weight: 700; font-variant-numeric: lining-nums tabular-nums; text-shadow: 0 3px 0 rgba(197, 164, 91, .42); }
.step h3 { font-size: 18px; line-height: 1.6; }
.step p { margin-top: 6px; color: var(--muted); font-size: 14px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.price-card { position: relative; padding: 26px 22px; border: 1px solid rgba(197, 164, 91, .55); background: var(--black); color: var(--ivory); transition: transform .35s cubic-bezier(.2, .75, .2, 1), box-shadow .35s ease; }
.price-card:hover { transform: translateY(-7px); box-shadow: 0 22px 46px rgba(10, 10, 10, .22); }
.price-card--featured { background: var(--gold); color: var(--black); }
.price-card h3 { font-size: 18px; line-height: 1.55; }
.price-card .price { margin-top: 12px; color: var(--white); font-family: var(--en); font-size: clamp(42px, 6vw, 52px); font-weight: 700; font-variant-numeric: lining-nums tabular-nums; letter-spacing: -.02em; line-height: 1; text-shadow: 0 2px 16px rgba(215, 187, 118, .22); }
.price-card p { margin-top: 12px; font-size: 13px; line-height: 1.7; }
.price-card small { display: block; margin-top: 4px; font-size: 12px; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 19px 42px 19px 0; cursor: pointer; font-family: var(--serif); font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 21px; right: 7px; content: '+'; color: var(--gold); font-family: var(--en); font-size: 25px; font-weight: 600; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq p { padding: 0 18px 20px 0; color: var(--muted); font-size: 14px; }
.info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.info-table th, .info-table td { padding: 17px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.info-table th { width: 32%; background: var(--ivory); font-family: var(--serif); font-weight: 700; }
span[data-p], .info-table [data-p] { font-weight: 700; font-variant-numeric: lining-nums tabular-nums; letter-spacing: .01em; }
.info-table [data-p] { color: var(--black); font-family: var(--en); font-size: 1.22em; }
.location-panel { display: grid; overflow: hidden; grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr); border: 1px solid rgba(197, 164, 91, .4); background: var(--black); box-shadow: 0 28px 70px rgba(0, 0, 0, .28); }
.location-panel .map-box { min-height: 420px; border: 0; }
.location-panel .map-box iframe { height: 100%; min-height: 420px; }
.location-details { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 48px); background: linear-gradient(145deg, rgba(197, 164, 91, .1), transparent 60%), var(--black2); }
.location-details .location-kicker { color: var(--gold-light); font-family: var(--en); font-size: 13px; font-weight: 600; letter-spacing: .18em; }
.location-details h3 { margin-top: 8px; font-size: clamp(22px, 3vw, 31px); line-height: 1.5; }
.location-details p { margin-top: 15px; color: rgba(244, 240, 231, .78); font-size: 14px; }
.location-stat { display: flex; align-items: baseline; gap: 9px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(244, 240, 231, .16); }
.location-stat strong { color: var(--white); font-family: var(--en); font-size: 46px; font-weight: 700; font-variant-numeric: lining-nums tabular-nums; line-height: 1; text-shadow: 0 3px 18px rgba(215, 187, 118, .22); }
.location-stat span { color: var(--gold-light); font-weight: 700; }
.location-actions { margin-top: 25px; }
.results-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.result-card { overflow: hidden; border: 1px solid rgba(197, 164, 91, .55); background: var(--black); color: var(--ivory); box-shadow: 0 24px 58px rgba(10, 10, 10, .18); }
.result-card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-bottom: 1px solid rgba(197, 164, 91, .45); background: #101010; }
.result-card__media img { width: 100%; height: 100%; object-fit: contain; }
.result-card__body { padding: clamp(24px, 3vw, 34px); }
.result-card__label { display: block; margin-bottom: 7px; color: var(--gold-light); font-family: var(--en); font-size: 13px; font-weight: 600; letter-spacing: .17em; }
.result-card h3 { font-size: clamp(20px, 2.7vw, 27px); line-height: 1.55; }
.result-card__lead { margin-top: 10px; color: rgba(244, 240, 231, .74); font-size: 14px; }
.result-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 22px; }
.result-metric { min-height: 108px; padding: 16px; border: 1px solid rgba(244, 240, 231, .14); background: rgba(244, 240, 231, .05); }
.result-metric span { display: block; color: rgba(244, 240, 231, .67); font-size: 11px; letter-spacing: .04em; }
.result-metric strong { display: block; margin-top: 5px; color: var(--gold-light); font-family: var(--en); font-size: clamp(21px, 3vw, 29px); font-variant-numeric: lining-nums tabular-nums; line-height: 1.15; }
.result-metric small { display: block; margin-top: 5px; color: rgba(244, 240, 231, .72); font-size: 11px; }
.result-card__pending { margin-top: 22px; padding: 22px; border: 1px dashed rgba(197, 164, 91, .55); background: rgba(197, 164, 91, .06); }
.result-card__pending strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 17px; }
.result-card__pending p { margin-top: 8px; color: rgba(244, 240, 231, .75); font-size: 13px; }
.result-disclaimer { margin-top: 24px; color: var(--muted); font-size: 12px; line-height: 1.8; }
.final-cta { padding: clamp(60px, 9vw, 100px) 0; background: var(--black); color: var(--ivory); text-align: center; }
.final-cta h2 { font-size: clamp(24px, 3.8vw, 38px); line-height: 1.55; }
.final-cta p { margin: 12px auto 26px; color: rgba(244, 240, 231, .8); }
.final-cta .button { min-width: min(100%, 330px); }
.final-cta .phone { display: block; width: fit-content; margin: 19px auto 0; border-bottom: 1px solid currentColor; color: var(--gold-light); font-family: var(--en); font-size: 26px; letter-spacing: .04em; }

/* 共通フッター・固定CTA */
.site-footer { padding: 48px 0 92px; background: var(--black2); color: rgba(244, 240, 231, .82); font-size: 13px; }
.footer-logo { display: block; width: 116px; margin-bottom: 14px; }
.footer-logo img { width: 116px; height: auto; filter: drop-shadow(0 0 12px rgba(215, 187, 118, .18)); }
.footer-name { color: var(--white); font-family: var(--serif); font-size: 17px; }
.footer-address { margin-top: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 7px 20px; margin-top: 20px; }
.footer-links a { border-bottom: 1px solid rgba(244, 240, 231, .45); }
.footer-copy { margin-top: 26px; color: rgba(244, 240, 231, .52); font-family: var(--en); font-size: 12px; letter-spacing: .05em; }
.fixed-cta { position: fixed; z-index: 90; right: 18px; bottom: 18px; display: flex; box-shadow: 0 8px 28px rgba(0, 0, 0, .25); }
.fixed-cta .button { min-width: 224px; }
.fixed-phone { display: inline-flex; width: 50px; align-items: center; justify-content: center; border: 1px solid var(--gold); border-right: 0; background: var(--black); color: var(--gold-light); font-family: var(--en); font-size: 25px; }

/* 実地図と控えめなスクロール演出 */
.map-box { position: relative; overflow: hidden; border: 1px solid rgba(197, 164, 91, .42); background: var(--ivory); box-shadow: 0 20px 50px rgba(10, 10, 10, .12); }
.map-box iframe { display: block; width: 100%; height: 420px; border: 0; filter: saturate(.72) contrast(1.04); }
.map-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 18px; border-top: 1px solid var(--line); background: var(--white); }
.map-meta strong { font-family: var(--serif); font-size: 15px; }
.map-meta span { color: var(--muted); font-size: 12px; text-align: right; }
html.motion-enabled .motion-reveal { opacity: 0; transform: translateY(30px) scale(.985); filter: blur(5px); transition: opacity .85s cubic-bezier(.2, .75, .2, 1) var(--motion-delay, 0ms), transform .85s cubic-bezier(.2, .75, .2, 1) var(--motion-delay, 0ms), filter .75s ease var(--motion-delay, 0ms); }
html.motion-enabled .motion-reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

@media (prefers-reduced-motion: no-preference) {
  .page-hero::before { animation: hero-sweep 9s ease-in-out infinite alternate; }
  .page-hero::after { animation: hero-orbit 12s ease-in-out infinite alternate; }
  html.js .page-hero .eyebrow, html.js .page-hero h1, html.js .page-hero p { opacity: 0; animation: page-title-in .9s cubic-bezier(.2, .75, .2, 1) forwards; }
  html.js .page-hero h1 { animation-delay: .12s; }
  html.js .page-hero p { animation-delay: .26s; }
  @keyframes page-title-in { from { opacity: 0; transform: translateY(24px); filter: blur(7px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
  @keyframes hero-sweep { from { transform: translateX(-18%); } to { transform: translateX(18%); } }
  @keyframes hero-orbit { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(-24px, -16px, 0) scale(1.06); } }
}

@media (max-width: 900px) {
  .main-nav, .site-header .button--small { display: none; }
  .menu-button { display: block; }
  .mobile-nav.is-open { display: block; }
  .cards, .price-grid, .location-panel, .results-grid { grid-template-columns: 1fr; }
  .card { padding: 23px 21px; }
  .location-panel .map-box, .location-panel .map-box iframe { min-height: 360px; }
}
@media (max-width: 600px) {
  body { padding-bottom: 72px; font-size: 14px; }
  .wrap, .narrow { width: min(100% - 36px, 1080px); }
  .site-header__inner { width: min(100% - 28px, 1200px); min-height: 68px; }
  .brand { width: 62px; min-height: 58px; }
  .brand img { width: 62px; }
  .page-hero { padding-top: 54px; }
  .section__lead { margin-bottom: 28px; }
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { padding-bottom: 7px; border-bottom: 0; }
  .info-table td { padding-top: 7px; }
  .fixed-cta { right: 0; bottom: 0; left: 0; height: 70px; box-shadow: 0 -6px 20px rgba(0, 0, 0, .22); }
  .fixed-cta .button { flex: 1; min-width: 0; }
  .fixed-phone { width: 64px; }
  .site-footer { padding-bottom: 32px; }
  .map-box iframe { height: 340px; }
  .map-meta { display: block; }
  .map-meta span { display: block; margin-top: 4px; text-align: left; }
  .result-metrics { grid-template-columns: 1fr; }
  .result-metric { min-height: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
