/* ============================================================
   電話占い ゆみ - メインスタイルシート
   カラーテーマ: 深い紫・ネイビー・ゴールド
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&family=Cinzel+Decorative:wght@400;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

/* ---- CSS変数 ---- */
:root {
  --bg-deep:      #060214;
  --bg-base:      #0a0320;
  --bg-section:   #0d0528;
  --bg-card:      rgba(26, 10, 78, 0.55);
  --bg-card-hover:rgba(45, 27, 105, 0.75);
  --purple-dark:  #1a0a4e;
  --purple-mid:   #2d1b69;
  --purple-accent:#7c3ded;
  --purple-light: #a855f7;
  --gold:         #c9a227;
  --gold-light:   #f5d060;
  --gold-pale:    rgba(201, 162, 39, 0.12);
  --navy:         #0d1b4b;
  --text-primary: #f5f0ff;
  --text-secondary:#d8b4fe;
  --text-muted:   #8b7da8;
  --border-gold:  rgba(201, 162, 39, 0.28);
  --border-purple:rgba(124, 61, 237, 0.28);
  --shadow-glow:  0 0 30px rgba(124, 61, 237, 0.35);
  --shadow-gold:  0 0 20px rgba(201, 162, 39, 0.3);
  --radius-card:  16px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- リセット & ベース ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Serif JP', 'Hiragino Mincho Pro', serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ---- タイポグラフィ ---- */
h1, h2, h3, h4 { line-height: 1.35; font-weight: 700; }
.en-title {
  font-family: 'Cinzel Decorative', serif;
  letter-spacing: 0.08em;
}
.section-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
}
.section-title span { color: var(--gold); }
.section-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.text-center { text-align: center; }
.gold-text { color: var(--gold); }

/* ---- セクション共通 ---- */
.section {
  padding: 96px 24px;
  position: relative;
}
.section-alt { background: var(--bg-section); }
.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.section-header { margin-bottom: 3rem; }
.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 0;
}

/* ---- ヘッダー ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(6, 2, 20, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201, 162, 39, 0.5);
  letter-spacing: 0.1em;
}
.site-logo span { font-size: 0.7rem; display: block; color: var(--text-muted); letter-spacing: 0.3em; font-family: 'Noto Serif JP', serif; font-weight: 400; }
.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-list a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.nav-list a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--purple-accent), #5b21b6);
  color: #fff !important;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem !important;
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 12px rgba(124, 61, 237, 0.35);
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #8b5cf6, var(--purple-accent));
  box-shadow: 0 0 20px rgba(124, 61, 237, 0.6);
  color: #fff !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(6, 2, 20, 0.98);
  backdrop-filter: blur(16px);
  padding: 2rem 24px;
  z-index: 999;
  border-bottom: 1px solid var(--border-gold);
}
.nav-mobile.open { display: block; }
.nav-mobile .nav-list {
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}
.nav-mobile .nav-list a { font-size: 1rem; }

/* ---- 星アニメーション背景 ---- */
.stars-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--d, 3s) ease-in-out infinite var(--delay, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50%       { opacity: 0.8; transform: scale(1.4); }
}

/* ---- HEROセクション ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 60%, #1a0a4e 0%, var(--bg-deep) 65%),
              radial-gradient(ellipse at 80% 20%, #0d1b4b 0%, transparent 50%);
  padding-top: 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '✦'; font-size: 0.6rem; }
.hero-tagline {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--gold);
  letter-spacing: 0.25em;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  display: block;
  margin-bottom: 0.8rem;
}
.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.25;
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}
.hero-h1 .accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 61, 237, 0.25) 0%, transparent 70%);
  animation: pulse-orb 4s ease-in-out infinite;
}
.hero-img {
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 60px rgba(124, 61, 237, 0.2), 0 0 30px rgba(201, 162, 39, 0.1);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--purple-dark), var(--navy));
}
@keyframes pulse-orb {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.08); opacity: 1; }
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-hint::after { content: '▼'; font-size: 0.6rem; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ---- CTAボタン ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  border: none;
  letter-spacing: 0.05em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #a0781a);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 30px rgba(201, 162, 39, 0.6);
  transform: translateY(-2px);
  color: var(--bg-deep);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: inset 0 0 0 0 var(--gold);
}
.btn-outline:hover {
  background: var(--gold-pale);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.25);
  transform: translateY(-2px);
  color: var(--gold-light);
}
.btn-ghost {
  background: rgba(124, 61, 237, 0.15);
  color: var(--purple-light);
  border: 1.5px solid var(--border-purple);
}
.btn-ghost:hover {
  background: rgba(124, 61, 237, 0.3);
  transform: translateY(-2px);
  color: #fff;
}
.btn-icon { font-size: 1rem; }
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark), var(--navy));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 3rem 2rem;
  text-align: center;
  margin: 4rem auto 0;
  max-width: 760px;
  box-shadow: var(--shadow-glow);
}
.cta-banner h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.cta-banner p  { color: var(--text-secondary); margin-bottom: 1.8rem; font-size: 0.95rem; }
.cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- クレアエンパシーセクション ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.5rem; }
.about-text p  { color: var(--text-secondary); line-height: 2; margin-bottom: 1rem; }
.feature-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.feature-item:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.feature-item h4 { font-size: 0.95rem; color: var(--gold); margin-bottom: 0.3rem; }
.feature-item p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.ability-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.ability-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 1.8rem 1.4rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.ability-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.ability-card .icon { font-size: 2.4rem; margin-bottom: 0.8rem; }
.ability-card h3 { font-size: 1rem; color: var(--gold); margin-bottom: 0.5rem; }
.ability-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.who-section { margin-top: 3rem; }
.who-section h3 { font-size: 1.1rem; color: var(--gold); margin-bottom: 1rem; }
.who-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.who-tag {
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  color: var(--gold-light);
}

/* ---- 占い師紹介セクション ---- */
.profile-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.profile-img-wrap { position: relative; }
.profile-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, var(--purple-dark), var(--navy));
}
.profile-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--gold), #a0781a);
  color: var(--bg-deep);
  border-radius: var(--radius-card);
  padding: 1rem 1.4rem;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}
.profile-badge .num { font-size: 2rem; line-height: 1; display: block; }
.profile-badge .label { font-size: 0.7rem; }
.profile-name { font-size: 2rem; margin-bottom: 0.3rem; }
.profile-name span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); margin-left: 0.5rem; }
.profile-tagline { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.15em; margin-bottom: 1.5rem; }
.profile-bio { color: var(--text-secondary); line-height: 2; margin-bottom: 2rem; }
.career-list { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.career-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
}
.career-item .year { color: var(--gold); font-weight: 700; min-width: 60px; flex-shrink: 0; }
.career-item .desc { color: var(--text-secondary); }
.stats-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); }

/* ---- 料金セクション ---- */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 2rem 1.8rem;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-accent), var(--gold));
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,162,39,0.08), rgba(26,10,78,0.8));
}
.price-label { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 0.8rem; }
.price-title { font-size: 1.1rem; margin-bottom: 1rem; }
.price-amount { margin-bottom: 1.5rem; }
.price-amount .yen { font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.price-amount .unit { font-size: 0.85rem; color: var(--text-muted); }
.price-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.8; }
.payment-section { margin-top: 2rem; }
.payment-section h3 { font-size: 1rem; color: var(--gold); margin-bottom: 1.2rem; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 1rem; }
.payment-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  backdrop-filter: blur(6px);
}
.payment-badge .pay-icon { font-size: 1.2rem; }

/* ---- 実績・お客様の声 ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.stats-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 2rem 1.2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.stats-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.stats-card .s-num { font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.stats-card .s-unit { font-size: 1rem; color: var(--gold); }
.stats-card .s-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.4rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-card);
  padding: 1.8rem;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.15;
  font-family: serif;
  line-height: 1;
}
.testimonial-card:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.t-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.8rem; }
.t-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.9; margin-bottom: 1.2rem; }
.t-author { font-size: 0.8rem; color: var(--text-muted); }
.t-author strong { color: var(--text-secondary); }

/* ---- Q&A セクション ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-purple);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color var(--transition);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
}
.faq-item.active { border-color: var(--border-gold); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-primary);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gold-pale); }
.faq-q-label { color: var(--gold); font-weight: 700; margin-right: 0.5rem; font-size: 1rem; }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 2;
}
.faq-answer::before { content: 'A. '; color: var(--purple-light); font-weight: 700; }
.faq-item.active .faq-answer { display: block; }

/* ---- 注意事項 ---- */
.caution-box {
  background: rgba(13, 27, 75, 0.4);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.caution-box h3 { font-size: 1rem; color: var(--gold); margin-bottom: 1rem; }
.caution-list { display: flex; flex-direction: column; gap: 0.8rem; }
.caution-list li {
  display: flex;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.caution-list li::before {
  content: '◈';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ---- 営業時間 ---- */
.hours-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 3rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-glow);
}
.hours-24 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-family: 'Cinzel Decorative', serif;
  text-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
  display: block;
  margin: 1rem 0;
}
.hours-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.9; }
.hours-note { margin-top: 1.5rem; font-size: 0.82rem; color: var(--text-muted); }

/* ---- フッター ---- */
.site-footer {
  background: #030111;
  border-top: 1px solid var(--border-gold);
  padding: 4rem 24px 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  margin-bottom: 2rem;
}
.footer-logo { font-family: 'Cinzel Decorative', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.8rem; }
.footer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }
.footer-nav h4 { font-size: 0.82rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav ul a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-nav ul a:hover { color: var(--gold); }
.footer-sns h4 { font-size: 0.82rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1rem; }
.sns-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.sns-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.sns-link:hover { border-color: var(--border-gold); color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

/* ---- スクロールアニメーション ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ---- カレンダーページ ---- */
.reserve-hero {
  padding: 140px 24px 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, var(--purple-dark) 0%, var(--bg-deep) 70%);
}
.reserve-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.8rem; }
.reserve-hero p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.calendar-section { padding: 60px 24px 100px; }
.calendar-wrap { max-width: 860px; margin: 0 auto; }
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.cal-nav-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.cal-nav-btn:hover { background: var(--gold-pale); }
.cal-month { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); }
.calendar-legend {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-secondary); }
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.legend-dot.available { background: #22c55e; }
.legend-dot.limited   { background: #eab308; }
.legend-dot.full      { background: #ef4444; }
.legend-dot.closed    { background: #4b5563; }
.calendar-grid {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--purple-dark);
  border-bottom: 1px solid var(--border-gold);
}
.cal-weekday {
  padding: 0.8rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.cal-day {
  border-right: 1px solid var(--border-purple);
  border-bottom: 1px solid var(--border-purple);
  min-height: 72px;
  padding: 0.5rem;
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
}
.cal-day:hover:not(.cal-day-empty):not(.cal-day-closed) { background: var(--bg-card-hover); }
.cal-day:nth-child(7n) { border-right: none; }
.cal-day-num { font-size: 0.88rem; margin-bottom: 0.3rem; color: var(--text-primary); }
.cal-day.today .cal-day-num {
  background: var(--gold);
  color: var(--bg-deep);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}
.cal-day-status {
  font-size: 0.65rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  display: inline-block;
}
.cal-day-status.available { background: rgba(34,197,94,0.2); color: #4ade80; }
.cal-day-status.limited   { background: rgba(234,179,8,0.2);  color: #fbbf24; }
.cal-day-status.full      { background: rgba(239,68,68,0.2);  color: #f87171; }
.cal-day-status.closed    { background: rgba(75,85,99,0.2);   color: #6b7280; }
.cal-day-empty { cursor: default; background: rgba(0,0,0,0.2); }
.cal-day-closed { cursor: not-allowed; }
.cal-day.selected { background: rgba(201, 162, 39, 0.15); border: 1px solid var(--gold); }

/* スロットパネル */
.slot-panel {
  display: none;
  margin-top: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.slot-panel.active { display: block; }
.slot-panel h3 { font-size: 1rem; color: var(--gold); margin-bottom: 1.2rem; }
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 0.6rem; }
.slot-btn {
  padding: 0.5rem 0.4rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-family: 'Noto Serif JP', serif;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.slot-btn.s-available {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.3);
  color: #4ade80;
}
.slot-btn.s-available:hover { background: rgba(34,197,94,0.25); transform: scale(1.04); }
.slot-btn.s-booked {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.2);
  color: #6b7280;
  cursor: not-allowed;
  text-decoration: line-through;
}
.slot-btn.selected {
  background: linear-gradient(135deg, var(--gold), #a0781a);
  color: var(--bg-deep);
  border-color: var(--gold);
  font-weight: 700;
}

/* 予約フォーム */
.booking-form-wrap {
  display: none;
  margin-top: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}
.booking-form-wrap.active { display: block; }
.booking-form-wrap h3 { font-size: 1.1rem; color: var(--gold); margin-bottom: 0.5rem; }
.booking-selected-info { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.82rem; color: var(--gold); }
.form-label .required { color: #f87171; margin-left: 0.3rem; }
.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-purple);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.1); }
.form-select option { background: var(--bg-section); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-agree { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.84rem; color: var(--text-secondary); cursor: pointer; }
.form-agree input { accent-color: var(--gold); margin-top: 0.15rem; }
.form-submit-wrap { margin-top: 1.5rem; text-align: center; }
.form-notice { font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem; }

/* ---- プライバシーページ ---- */
.privacy-page {
  padding: 140px 24px 100px;
}
.privacy-page h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 2rem; }
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-section { margin-bottom: 3rem; }
.privacy-section h2 { font-size: 1.1rem; color: var(--gold); border-left: 3px solid var(--gold); padding-left: 0.8rem; margin-bottom: 1rem; }
.privacy-section p,
.privacy-section li { font-size: 0.92rem; color: var(--text-secondary); line-height: 2; }
.privacy-section ul { padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.privacy-section ul li { list-style: disc; list-style-position: inside; }
.privacy-updated { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2rem; }

/* ---- ページTOPボタン ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--gold), #a0781a);
  color: var(--bg-deep);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(201, 162, 39, 0.6); }

/* ---- レスポンシブ ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image-wrap { order: -1; }
  .hero-img { max-height: 320px; aspect-ratio: 16/9; }
  .hero-image-wrap::before { width: 280px; height: 280px; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ability-cards { grid-template-columns: 1fr 1fr; }
  .profile-grid { grid-template-columns: 1fr; gap: 2rem; }
  .profile-img-wrap { max-width: 300px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 72px 16px; }
  .nav-list:not(.nav-mobile .nav-list) { display: none; }
  .hamburger { display: flex; }
  .hero-grid { padding: 2rem 16px; }
  .hero-cta-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-group { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .ability-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .price-cards { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
  .calendar-legend { gap: 0.8rem; }
  .stats-row { gap: 1.5rem; }
}
@media (max-width: 400px) {
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
}
