@charset "utf-8";
/* ============================================
   ATELIER Onn 黒猫タロット 共有スタイル
   配色・書体は本体サイト uranai.html の夜の意匠に準拠
   ============================================ */

:root {
  --cream: #F5F0E8;
  --parchment: #EDE5D4;
  --terracotta: #B86040;
  --ink: #2E2A24;
  --muted: #8C8070;
  --gold: #C8A86A;
  --star: #E8D49A;
  --deep: #0E1020;
  --navy: #1A1D35;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--cream);
  font-family: 'Zen Old Mincho', serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* 紙の粒子 */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.3;
}

/* ---------- ナビ ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  padding-left: max(24px, calc((100vw - 880px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 880px) / 2 + 24px));
  background: rgba(14, 16, 32, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 168, 106, 0.1);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--star);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links { display: flex; gap: 16px; list-style: none; flex-wrap: wrap; justify-content: flex-end; }

.nav-links a {
  display: inline-block;
  text-align: center;
  line-height: 1.2;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(232, 212, 154, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--star); }
.nav-en { display: block; font-family: 'Cormorant Garamond', serif; }
.nav-jp { display: block; font-size: 0.62em; letter-spacing: 0.08em; opacity: 0.8; margin-top: 1px; }

/* ---------- 見出しまわり ---------- */
.eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.5;
}

.page-title {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  letter-spacing: 0.18em;
  color: var(--cream);
  text-align: center;
  margin-top: 14px;
}
.page-title .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.5em;
  letter-spacing: 0.3em;
  color: var(--star);
  margin-top: 10px;
}

/* ---------- 本文 ---------- */
.main {
  max-width: 680px;
  margin: 0 auto;
  padding: 110px 24px 60px;
}

.lead {
  font-size: 0.86rem;
  line-height: 2.3;
  letter-spacing: 0.05em;
  color: rgba(245, 240, 232, 0.88);
}
.lead + .lead { margin-top: 1.4em; }

.note {
  margin-top: 22px;
  padding: 16px 18px;
  background: rgba(200, 168, 106, 0.07);
  border-left: 2px solid var(--gold);
  font-size: 0.78rem;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 232, 0.8);
}

.divider {
  width: 100%;
  max-width: 200px;
  margin: 44px auto;
  border: none;
  border-top: 1px solid rgba(200, 168, 106, 0.25);
  position: relative;
}
.divider::after {
  content: '\2726';
  position: absolute;
  top: -0.72em; left: 50%;
  transform: translateX(-50%);
  background: var(--deep);
  padding: 0 10px;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ---------- ボタン ---------- */
.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--star);
  font-family: 'Shippori Mincho B1', serif;
  font-size: 0.86rem;
  letter-spacing: 0.25em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s ease;
}
.btn-gold:hover { background: rgba(200, 168, 106, 0.15); }

.btn-quiet {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  color: rgba(232, 212, 154, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  border: 1px solid rgba(200, 168, 106, 0.25);
  transition: all 0.3s;
  text-align: center;
}
.btn-quiet:hover { color: var(--star); border-color: var(--gold); }

/* ---------- メニュー札 ---------- */
.menu-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.menu-card {
  display: block;
  padding: 22px 24px;
  border: 1px solid rgba(200, 168, 106, 0.3);
  background: rgba(26, 29, 53, 0.5);
  text-decoration: none;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
a.menu-card:hover { border-color: var(--gold); background: rgba(26, 29, 53, 0.85); }

.menu-card-title {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--cream);
}
.menu-card-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.menu-card-desc {
  margin-top: 8px;
  font-size: 0.76rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.65);
}
.menu-card.closed { opacity: 0.45; }
.menu-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  border: 1px solid rgba(140, 128, 112, 0.5);
  padding: 3px 8px;
}
.menu-card-badge.open { color: var(--star); border-color: rgba(200, 168, 106, 0.5); }

/* ---------- フッター ---------- */
.site-footer {
  background: #0A0C18;
  padding: 44px 24px 30px;
  text-align: center;
  border-top: 1px solid rgba(200, 168, 106, 0.2);
  margin-top: 70px;
}
.footer-glyph { display: block; font-size: 1.1rem; color: var(--gold); margin-bottom: 12px; letter-spacing: 0.5em; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: var(--cream);
  margin-bottom: 6px;
}
.footer-sub {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 22px;
}
.footer-links { display: flex; justify-content: center; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: rgba(232, 212, 154, 0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--star); }
.footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.62rem;
  color: rgba(232, 212, 154, 0.2);
  letter-spacing: 0.1em;
}

/* ---------- 出現アニメーション ---------- */
.fade-up { opacity: 0; transform: translateY(18px); animation: fadeUp 1.1s ease forwards; }
.fade-up.d1 { animation-delay: 0.25s; }
.fade-up.d2 { animation-delay: 0.45s; }
.fade-up.d3 { animation-delay: 0.65s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 520px) {
  .nav-links { gap: 10px; }
  .main { padding-top: 120px; }
}
