:root {
  --black: #0a0906;
  --black-mid: #111009;
  --black-light: #1a1714;
  --gold: #c8a84b;
  --gold-light: #e0c06a;
  --gold-muted: #7a6330;
  --cream: #f0e8d6;
  --text-main: #d4c9b0;
  --text-muted: #7a7060;
  --text-light: #a89878;
  --border: rgba(200, 168, 75, 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text-main);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

a.link_color {
	/*color: #7a7060 !important;*/
	color: var(--text-main);
}

/* ─── CURSOR ─── */
.cursor-dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px; border: 1px solid rgba(200,168,75,0.5); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 24px 60px;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(to bottom, rgba(10,9,6,0.7), transparent);
  transition: padding 0.4s, background 0.4s;
}
nav.scrolled {
  padding: 16px 60px;
  background: rgba(10,9,6,0.97);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: block;
  height: 50px;
  width: auto;
}

.nav-reserve {
  padding: 10px 28px; border: 1px solid var(--gold);
  color: var(--gold); font-size: 11px; letter-spacing: 0.2em;
  text-decoration: none; text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.nav-reserve:hover { background: var(--gold); color: var(--black); }

/* ─── HERO（全面写真） ─── */
#hero {
  position: relative;
  width: 100%; height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end;
  padding: 0 80px 100px;
  overflow: hidden;
}

/* 写真エリア：背景全面 */
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('images/L_DSF1698_w3840.jpg');
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.photo-label {
  color: rgba(200,168,75,0.2); font-size: 11px; letter-spacing: 0.35em;
  text-transform: uppercase; text-align: center; line-height: 2;
  border: 1px dashed rgba(200,168,75,0.18); padding: 16px 28px;
}

/* グラデーションオーバーレイ */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,9,6,0.95) 0%, rgba(10,9,6,0.2) 50%, rgba(10,9,6,0.4) 100%),
    linear-gradient(to right, rgba(10,9,6,0.6) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 600px;
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold-muted); margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
  animation: fadeUp 1.2s ease forwards; opacity: 0;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold-muted); }
.hero-logo-en {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(16px, 2vw, 26px); color: var(--text-light);
  letter-spacing: 0.35em; margin-top: 10px;
  animation: fadeUp 1.2s 0.3s ease forwards; opacity: 0;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(15px, 1.5vw, 20px);
  font-style: italic; color: var(--text-muted);
  margin-top: 24px; line-height: 1.9;
  animation: fadeUp 1.2s 0.45s ease forwards; opacity: 0;
}
.hero-ctas {
  display: flex; gap: 16px; margin-top: 48px;
  animation: fadeUp 1.2s 0.6s ease forwards; opacity: 0;
}
.hero-scroll-hint {
  position: absolute; bottom: 40px; right: 80px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  animation: fadeIn 2s 1.2s forwards; opacity: 0;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
  animation: scrollLine 2s 1.8s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ─── BUTTONS ─── */
.btn-primary {
  padding: 16px 44px; background: var(--gold); color: var(--black);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; font-weight: 400; display: inline-block;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  padding: 16px 36px; border: 1px solid rgba(200,168,75,0.4);
  color: var(--text-light); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; text-decoration: none; display: inline-block;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ─── COMING SOON ─── */
#coming-soon {
  padding: 60px 80px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--black-mid); display: flex; align-items: center; justify-content: center;
  gap: 40px; text-align: center; position: relative; overflow: hidden;
}
#coming-soon::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,168,75,0.06) 0%, transparent 70%);
}
.cs-line { width: 80px; height: 1px; background: var(--gold-muted); flex-shrink: 0; }
.cs-text-wrap { position: relative; z-index: 1; }
.cs-label { font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.cs-main { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 4vw, 48px); font-style: italic; color: var(--cream); letter-spacing: 0.04em; line-height: 1.2; }
.cs-sub { margin-top: 12px; font-size: 12px; letter-spacing: 0.12em; color: var(--text-muted); }

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 16px;
}
.section-eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; line-height: 1.2; color: var(--cream); margin-bottom: 40px;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ─── INFO ─── */
#info {
  padding: 140px 80px; background: var(--black-mid);
  border-top: 1px solid var(--border);
}
.info-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
}
.info-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid rgba(200,168,75,0.08); font-size: 13px;
}
.info-label { color: var(--gold-muted); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding-top: 2px; }
.info-value { color: var(--text-main); line-height: 1.8; }
.map-placeholder {
  aspect-ratio: 4/3; background: var(--black-light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 16px; position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(200,168,75,0.03) 1px, transparent 1px),
              linear-gradient(90deg, rgba(200,168,75,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  width: 40px; height: 40px; border: 1px solid var(--gold-muted);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg); position: relative; z-index: 1;
}
.map-pin::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--gold-muted); border-radius: 50%;
}
.map-label { font-size: 10px; letter-spacing: 0.25em; color: var(--text-muted); text-transform: uppercase; z-index: 1; }

/* ─── FINAL CTA ─── */
#cta-final {
  padding: 160px 80px; text-align: center; position: relative; overflow: hidden;
}
#cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at center, rgba(200,168,75,0.07) 0%, transparent 70%);
}
.cta-watermark {
  font-family: 'Noto Serif KR', serif; font-size: clamp(48px, 12vw, 160px);
  color: rgba(200,168,75,0.05); position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; line-height: 1;
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 72px); color: var(--cream); font-weight: 300; font-style: italic; line-height: 1.2; margin-bottom: 20px; }
.cta-sub { font-size: 13px; color: var(--text-muted); line-height: 2; max-width: 480px; margin: 0 auto 10px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }

/* ─── FORM ─── */
.contact-form { max-width: 600px; margin: 20px auto 0; text-align: left; }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-style: italic; color: var(--cream); margin-bottom: 32px; text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-muted); margin-bottom: 8px; }
.required { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  color: var(--text-main); padding: 14px 18px; font-size: 13px;
  font-family: 'Noto Sans JP', sans-serif; outline: none;
  transition: border-color 0.3s; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(200,168,75,0.5); }
.form-group select option { background: var(--black); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit {
  width: 100%; padding: 18px; background: var(--gold); color: var(--black);
  border: none; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer; font-family: 'Noto Sans JP', sans-serif; transition: background 0.3s; margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); }
.form-note { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 16px; line-height: 1.8; }

/* ─── FOOTER ─── */
footer { border-top: 1px solid var(--border); padding: 80px; background: var(--black); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; align-items: center;
}
.hero-logo-img {
  display: block;
  width: 108px; height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(200,168,75,0.4));
  animation: fadeUp 1.2s 0.15s ease forwards; opacity: 0;
}
.footer-logo {
  display: block;
  width: 72px; height: 100px;
  object-fit: contain;
}
.footer-logo-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: var(--text-muted); margin-top: 6px; letter-spacing: 0.2em; }
.footer-sns { display: flex; gap: 20px; justify-content: center; align-items: center; }
.sns-link {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-muted); font-size: 9px;
  letter-spacing: 0.25em; text-transform: uppercase; padding: 20px;
  border: 1px solid transparent; transition: border-color 0.3s, color 0.3s;
}
.sns-link:hover { border-color: var(--border); color: var(--gold); }
.sns-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.sns-icon svg { width: 24px; height: 24px; fill: currentColor; }
.footer-copy { text-align: right; font-size: 10px; color: var(--text-muted); letter-spacing: 0.1em; line-height: 2; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ─── RESPONSIVE（タブレット） ─── */
@media (max-width: 1024px) {
  nav, nav.scrolled { padding-left: 40px; padding-right: 40px; }
  #hero { padding: 0 40px 80px; }
  #info, #cta-final, footer { padding-left: 40px; padding-right: 40px; }
  .info-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .footer-copy { text-align: center; }
}

/* ─── RESPONSIVE（スマホ） ─── */
@media (max-width: 640px) {
  nav, nav.scrolled { padding: 18px 24px; }
  #hero { padding: 120px 24px 80px; align-items: center; justify-content: flex-end; flex-direction: column; }
  .hero-scroll-hint { display: none; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  #coming-soon { padding: 48px 24px; flex-direction: column; }
  .cs-line { display: none; }
  #info, #cta-final, footer { padding: 80px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { gap: 32px; }

  .info-row {
    grid-template-columns: 1fr;
  }
  .info-label {
    margin-bottom: 4px;
  }
  .footer-logo {
    margin: 0 auto;
  }
}


/* スマホのみ中央揃え
@media (max-width: 768px) {
  .footer-logo {
    margin: 0 auto;
  }
} */

/* ─── TEL ─── */
.tel-link {
  pointer-events: none;
  color: inherit;
  text-decoration: none;
}
/* ─── RESPONSIVE（スマホ） ─── */
@media (hover: none) and (pointer: coarse) {
  .tel-link {
    pointer-events: auto;
    color: #0066cc;
  }
}
