/* ============================================================
   株式会社選家 — shared.css
   女性らしさ×信頼感 の不動産テーマ
   Palette: dusty rose × sage green × warm cream × warm brown
   ============================================================ */

:root {
  --bg:        #FBF5F1;
  --bg-2:      #F3E8E1;
  --bg-3:      #EFE1D8;
  --ink:       #3E2C2A;      /* warm dark brown — trust */
  --ink-soft:  #6E5652;
  --muted:     #B8A5A0;
  --rose:      #D69AA6;      /* dusty rose — primary */
  --rose-deep: #B87882;
  --rose-soft: #F5DDDC;
  --sage:      #A8B99D;      /* sage green — plants */
  --sage-deep: #7D8F70;
  --gold:      #C9A87D;      /* soft rose gold */
  --white:     #FFFFFF;
  --line:      rgba(62,44,42,.10);

  --f-display: 'Playfair Display', 'Noto Serif JP', serif;
  --f-body:    'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  --f-hand:    'Caveat', cursive;
  --f-eng:     'Cormorant Garamond', 'Playfair Display', serif;

  --wrap:      1180px;
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 10px 40px rgba(184,120,130,.10);
  --shadow-lg: 0 20px 60px rgba(184,120,130,.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .25s, color .25s; }
a:hover { opacity: .78; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }

.container { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- Page Loader ---------- */
#page-loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  transition: opacity .6s ease, visibility .6s ease;
}
#page-loader.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-stamp {
  width: 96px; height: 96px;
  animation: ld-stamp .7s cubic-bezier(.22,1,.36,1) both, ld-pulse 2.4s ease-in-out .7s infinite;
}
.loader-name {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: .22em;
  color: var(--ink);
  animation: ld-rise .5s ease .25s both;
}
.loader-dots { display: flex; gap: 8px; animation: ld-rise .5s ease .4s both; }
.loader-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose-deep);
  animation: ld-bounce .9s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: .18s; }
.loader-dots span:nth-child(3) { animation-delay: .36s; }
@keyframes ld-stamp { from { opacity:0; transform:rotate(-10deg) scale(.6); } to { opacity:1; transform:rotate(0) scale(1); } }
@keyframes ld-pulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.05); } }
@keyframes ld-rise { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
@keyframes ld-bounce { 0%,80%,100% { transform:translateY(0); opacity:.35; } 40% { transform:translateY(-9px); opacity:1; } }

/* ---------- Reveal Animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal-stagger.show > *:nth-child(1) { opacity:1; transform:none; transition-delay: .05s; }
.reveal-stagger.show > *:nth-child(2) { opacity:1; transform:none; transition-delay: .15s; }
.reveal-stagger.show > *:nth-child(3) { opacity:1; transform:none; transition-delay: .25s; }
.reveal-stagger.show > *:nth-child(4) { opacity:1; transform:none; transition-delay: .35s; }
.reveal-stagger.show > *:nth-child(5) { opacity:1; transform:none; transition-delay: .45s; }
.reveal-stagger.show > *:nth-child(6) { opacity:1; transform:none; transition-delay: .55s; }
.reveal-stagger.show > *:nth-child(n+7) { opacity:1; transform:none; transition-delay: .65s; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(251,245,241,.92);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(62,44,42,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-size: 20px; font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink);
}
.brand-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  font-family: var(--f-display); font-weight: 700; font-size: 16px;
  box-shadow: 0 4px 14px rgba(184,120,130,.35);
}
.brand-txt-sub {
  display: block;
  font-family: var(--f-body); font-size: 10px; letter-spacing: .3em;
  color: var(--rose-deep); font-weight: 600;
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
  font-size: 13px; letter-spacing: .18em;
  font-weight: 600;
}
.nav-links a { color: var(--ink-soft); position: relative; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--rose-deep); transform: scaleX(0);
  transition: transform .3s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 22px;
  background: var(--rose-deep);
  color: var(--white) !important;
  border-radius: 999px;
  font-size: 12px; letter-spacing: .15em; font-weight: 700;
  box-shadow: 0 4px 14px rgba(184,120,130,.35);
  transition: transform .25s, box-shadow .25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(184,120,130,.5); }
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
  border-radius: 2px;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(251,245,241,.98);
    backdrop-filter: saturate(1.4) blur(14px);
    padding: 24px 24px 32px; gap: 18px;
    transform: translateY(-120%); opacity: 0;
    transition: transform .35s, opacity .35s;
    box-shadow: 0 12px 32px rgba(62,44,42,.1);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { padding: 8px 0; font-size: 15px; }
  .nav-links .nav-cta { text-align: center; padding: 14px 22px; }
  .burger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  overflow: hidden;
  background: linear-gradient(135deg, #FBF5F1 0%, #F5DDDC 55%, #F3E8E1 100%);
  display: flex; align-items: center;
  padding: 120px 0 80px;
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; z-index: 0;
  transition: opacity 1.0s ease;
}
.hero-photo-bg.visible { opacity: 1; }
.hero-photo-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(214,154,166,.28) 0%, rgba(168,185,157,.18) 55%, rgba(251,245,241,.35) 100%);
}
.hero-blob-1, .hero-blob-2 {
  position: absolute; z-index: 1;
  border-radius: 50%; filter: blur(60px);
  pointer-events: none;
  animation: blob 18s ease-in-out infinite;
}
.hero-blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(214,154,166,.55), transparent 70%);
  top: -100px; right: -120px;
}
.hero-blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(168,185,157,.42), transparent 70%);
  bottom: -80px; left: -80px;
  animation-delay: -8s;
}
@keyframes blob {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(30px,-20px) scale(1.08); }
  66%     { transform: translate(-20px,30px) scale(.94); }
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 18px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(214,154,166,.35);
  border-radius: 999px;
  font-size: 11px; letter-spacing: .3em; font-weight: 700;
  color: var(--rose-deep);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose-deep);
  animation: dot-pulse 1.8s ease-in-out infinite;
}
@keyframes dot-pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.25;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero-title .accent {
  color: var(--rose-deep);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: ''; position: absolute; left: 4%; right: 4%; bottom: 4px; height: 6px;
  background: rgba(214,154,166,.35);
  z-index: -1; border-radius: 4px;
}
.hero-title-jp {
  display: block;
  font-family: var(--f-body);
  font-size: clamp(15px, 2vw, 18px);
  letter-spacing: .16em; font-weight: 600;
  color: var(--ink-soft);
  margin-top: 18px;
}
.hero-sub {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--ink-soft);
  line-height: 1.95; font-weight: 500;
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 32px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px; letter-spacing: .12em; font-weight: 700;
  transition: transform .3s, box-shadow .3s, background .3s;
  min-width: 200px;
}
.btn-primary {
  background: var(--rose-deep);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(184,120,130,.4);
}
.btn-primary:hover {
  background: var(--ink); opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(62,44,42,.35);
}
.btn-line {
  background: #06C755;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(6,199,85,.3);
}
.btn-line:hover {
  background: #05A548; opacity: 1;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-soft);
}
.btn-ghost:hover {
  background: var(--ink); color: var(--white); border-color: var(--ink);
  opacity: 1;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 24px;
  font-size: 12px; color: var(--ink-soft);
  letter-spacing: .1em;
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.hero-meta .dot { width: 5px; height: 5px; background: var(--sage-deep); border-radius: 50%; }

/* ---------- Section base ---------- */
section { padding: 100px 0; position: relative; }
.sec-head { text-align: center; margin-bottom: 60px; }
.eyebrow {
  display: inline-block;
  font-family: var(--f-eng);
  font-style: italic;
  font-size: 15px; letter-spacing: .3em; font-weight: 500;
  color: var(--rose-deep);
  margin-bottom: 14px;
  position: relative; padding: 0 32px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; position: absolute; top: 50%; width: 22px; height: 1px;
  background: var(--rose);
}
.eyebrow::before { left: 0; }
.eyebrow::after  { right: 0; }
.section-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink);
  letter-spacing: .04em;
  line-height: 1.35;
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .35em;
  font-weight: 500;
}

/* ---------- About ---------- */
#about {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
}
.about-wrap {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
}
.about-text .about-lead {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.7; font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: .06em;
}
.about-text p {
  font-size: 15px; line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.about-quote {
  margin-top: 30px; padding: 22px 26px;
  background: rgba(214,154,166,.08);
  border-left: 3px solid var(--rose);
  font-family: var(--f-hand);
  font-size: 22px; color: var(--rose-deep);
  line-height: 1.6; letter-spacing: .04em;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-photos {
  position: relative;
  min-height: 460px;
}
.about-photo {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .5s;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::after {
  content: attr(data-caption);
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(255,255,255,.9);
  padding: 4px 10px;
  font-family: var(--f-hand);
  font-size: 16px; color: var(--ink);
  border-radius: 4px;
}
.about-photo:nth-child(1) { top: 0; right: 0; width: 62%; height: 300px; }
.about-photo:nth-child(2) { bottom: 0; left: 0; width: 55%; height: 280px; z-index: 2; }
.about-photo:nth-child(3) { top: 40%; right: 10%; width: 32%; height: 180px; z-index: 3; }
.about-photo:hover { transform: translateY(-6px); }

/* ---------- Service (Menu) ---------- */
#menu { background: var(--bg); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.menu-skel {
  background: linear-gradient(180deg, #FDF7F4 0%, #F5DDDC 100%);
  border: 1px solid rgba(214,154,166,.15);
  border-radius: var(--radius);
  min-height: 260px;
  position: relative; overflow: hidden;
}
.menu-skel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  background-size: 250% 100%;
  animation: skel-shimmer 2s ease-in-out infinite;
}
@keyframes skel-shimmer {
  0%   { background-position: 250% 0; }
  100% { background-position: -250% 0; }
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 6px 24px rgba(62,44,42,.06);
  border: 1px solid rgba(214,154,166,.15);
  transition: transform .35s, box-shadow .35s;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(184,120,130,.18);
}
.menu-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--rose) 0%, var(--sage) 100%);
}
.menu-card.best::after {
  content: '人気';
  position: absolute; top: 16px; right: 16px;
  background: var(--rose-deep); color: var(--white);
  font-size: 10px; letter-spacing: .18em; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
}
.menu-num {
  font-family: var(--f-eng); font-style: italic;
  font-size: 14px; color: var(--rose-deep);
  letter-spacing: .2em; margin-bottom: 8px;
}
.menu-title {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 700;
  color: var(--ink); margin-bottom: 6px;
  letter-spacing: .05em;
}
.menu-price {
  font-family: var(--f-eng); font-style: italic;
  font-size: 18px; color: var(--sage-deep);
  margin-bottom: 14px; letter-spacing: .05em;
}
.menu-desc {
  font-size: 13px; color: var(--ink-soft);
  line-height: 1.9; flex: 1;
}

/* ---------- Features ---------- */
#features {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid rgba(214,154,166,.12);
  box-shadow: 0 4px 16px rgba(62,44,42,.04);
  position: relative;
  transition: transform .35s, box-shadow .35s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(184,120,130,.14);
}
.feature-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--white);
  font-family: var(--f-eng); font-style: italic; font-weight: 700;
  font-size: 20px; letter-spacing: .05em;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(184,120,130,.35);
}
.feature-title {
  font-family: var(--f-display);
  font-size: 19px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.feature-desc {
  font-size: 13.5px; color: var(--ink-soft);
  line-height: 1.9;
}

/* ---------- For You ---------- */
#foryou { background: var(--bg); }
.scenes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.scene {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(62,44,42,.06);
  border: 1px solid rgba(168,185,157,.15);
  transition: transform .3s;
}
.scene:hover { transform: translateY(-4px); }
.scene-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--bg-3) 100%);
  position: relative; overflow: hidden;
}
.scene-img img { width: 100%; height: 100%; object-fit: cover; }
.scene-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(62,44,42,.35) 100%);
}
.scene-body { padding: 20px 22px 24px; }
.scene-label {
  display: inline-block;
  font-family: var(--f-eng); font-style: italic;
  font-size: 13px; color: var(--rose-deep);
  letter-spacing: .15em;
  margin-bottom: 6px;
}
.scene-caption {
  font-family: var(--f-display);
  font-size: 16px; font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: .04em;
}

/* ---------- Reviews ---------- */
#reviews {
  background: linear-gradient(180deg, var(--bg) 0%, var(--rose-soft) 100%);
  position: relative;
}
#reviews::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 24px;
}
.review-skel {
  background: rgba(255,255,255,.6);
  border-radius: var(--radius);
  min-height: 280px;
  position: relative; overflow: hidden;
}
.review-skel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  background-size: 250% 100%;
  animation: skel-shimmer 2s ease-in-out infinite;
}
.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 6px 24px rgba(62,44,42,.06);
  border: 1px solid rgba(214,154,166,.12);
  display: flex; flex-direction: column;
  height: 100%; min-height: 280px;
  position: relative;
}
.review::before {
  content: '"';
  position: absolute; top: 8px; right: 20px;
  font-family: var(--f-display); font-size: 60px;
  color: var(--rose-soft);
  line-height: 1;
}
.review .stars {
  color: var(--gold);
  font-size: 15px; letter-spacing: .08em;
  margin-bottom: 12px;
}
.review .body {
  flex: 1;
  font-size: 13.5px; line-height: 1.85;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.review .meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.review .meta .name { color: var(--ink); font-weight: 700; }
.review .meta .date { color: var(--muted); font-family: var(--f-eng); font-style: italic; letter-spacing: .1em; }

.review-cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px 22px;
  min-height: 280px;
  box-shadow: 0 10px 30px rgba(184,120,130,.3);
  transition: transform .3s, box-shadow .3s;
}
.review-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(184,120,130,.5);
  opacity: 1;
}
.review-cta-stars { font-size: 20px; letter-spacing: .1em; margin-bottom: 16px; }
.review-cta-msg {
  font-size: 15px; line-height: 1.8; margin-bottom: 20px;
  font-weight: 600;
}
.review-cta-link {
  font-family: var(--f-eng); font-style: italic;
  font-size: 15px; letter-spacing: .15em;
  padding: 8px 18px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 999px;
}

.reviews-more-wrap { text-align: center; margin-top: 40px; }
.btn-reviews-more {
  display: inline-block;
  padding: 14px 34px;
  background: var(--white);
  border: 1.5px solid var(--rose);
  border-radius: 999px;
  color: var(--rose-deep) !important;
  font-family: var(--f-body);
  font-weight: 700; font-size: 13px;
  letter-spacing: .12em;
  box-shadow: 0 6px 18px rgba(214,154,166,.2);
  transition: background .3s, color .3s, transform .3s;
}
.btn-reviews-more:hover {
  background: var(--rose-deep);
  color: var(--white) !important;
  transform: translateY(-2px);
  opacity: 1;
}

/* ---------- Blog ---------- */
#blog { background: var(--bg); }
.wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.wall.cms-loading::before {
  content: 'お知らせを読み込んでいます...';
  grid-column: 1 / -1;
  text-align: center; padding: 40px;
  font-family: var(--f-eng); font-style: italic;
  color: var(--muted); font-size: 15px;
  letter-spacing: .1em;
}
.blog-card, a.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(62,44,42,.06);
  transition: transform .3s, box-shadow .3s;
  color: inherit; text-decoration: none;
  display: block;
  border: 1px solid rgba(214,154,166,.12);
  position: relative;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(184,120,130,.16);
}
.blog-card .tape {
  position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 70px; height: 20px;
  background: linear-gradient(135deg, rgba(214,154,166,.55), rgba(214,154,166,.3));
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(184,120,130,.15);
}
.blog-card .image {
  aspect-ratio: 16/10;
  background: var(--bg-3);
  overflow: hidden;
}
.blog-card .image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.blog-card:hover .image img { transform: scale(1.06); }
.blog-card .body { padding: 18px 20px 22px; }
.blog-card .date {
  display: block;
  font-family: var(--f-eng); font-style: italic;
  font-size: 12px; color: var(--rose-deep);
  letter-spacing: .15em; margin-bottom: 8px;
}
.blog-card .cap {
  font-size: 14px; line-height: 1.65;
  color: var(--ink); font-weight: 600;
  margin-bottom: 10px;
}
.blog-card:hover .cap { text-decoration: underline; text-decoration-color: var(--rose); text-underline-offset: 3px; }
.blog-card .cta-lbl {
  font-family: var(--f-eng); font-style: italic;
  font-size: 12px; color: var(--rose-deep);
  letter-spacing: .15em;
}

/* ---------- Access ---------- */
#access {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.access-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.access-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 6px 24px rgba(62,44,42,.06);
  border: 1px solid rgba(214,154,166,.12);
}
.access-info h3 {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 700;
  color: var(--ink); margin-bottom: 22px;
  letter-spacing: .05em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rose-soft);
}
.access-info dl {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 12px 20px;
  font-size: 14px;
}
.access-info dt {
  font-weight: 700; color: var(--rose-deep);
  font-size: 13px; letter-spacing: .1em;
  padding-top: 2px;
}
.access-info dd {
  color: var(--ink-soft); line-height: 1.7;
}
.access-info table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  font-size: 13px;
}
.access-info table th, .access-info table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.access-info table th {
  color: var(--rose-deep);
  font-weight: 700; letter-spacing: .1em;
  background: var(--rose-soft);
}
.access-info table td { color: var(--ink-soft); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(62,44,42,.06);
  min-height: 460px;
  background: var(--bg-3);
}
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 460px; }

/* ---------- SNS ---------- */
#sns { background: var(--bg); }
.sns-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sns-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  border: 1px solid rgba(214,154,166,.15);
  box-shadow: 0 4px 16px rgba(62,44,42,.05);
  transition: transform .3s;
  display: block; color: inherit;
}
.sns-card:hover { transform: translateY(-4px); opacity: 1; }
.sns-plat {
  display: inline-block;
  font-family: var(--f-eng); font-style: italic;
  font-size: 14px; color: var(--rose-deep);
  letter-spacing: .18em; margin-bottom: 8px;
  font-weight: 600;
}
.sns-account { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.sns-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Consultation (Delivery slot) ---------- */
#consult { background: linear-gradient(180deg, var(--bg) 0%, var(--rose-soft) 100%); }
.consult-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.consult-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid rgba(214,154,166,.15);
  box-shadow: 0 6px 20px rgba(62,44,42,.06);
  display: flex; flex-direction: column;
  text-align: center;
}
.consult-type {
  display: inline-block; margin: 0 auto 12px;
  padding: 6px 16px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  border-radius: 999px;
  font-size: 11px; letter-spacing: .2em; font-weight: 700;
}
.consult-title {
  font-family: var(--f-display);
  font-size: 20px; font-weight: 700;
  color: var(--ink); margin-bottom: 12px;
  letter-spacing: .05em;
}
.consult-desc {
  font-size: 13px; color: var(--ink-soft);
  line-height: 1.85; margin-bottom: 20px;
  flex: 1;
}
.consult-btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--rose-deep); color: var(--white) !important;
  border-radius: 999px;
  font-size: 12px; letter-spacing: .12em; font-weight: 700;
  transition: background .3s;
}
.consult-btn:hover { background: var(--ink); opacity: 1; }

/* ---------- FAQ ---------- */
#faq { background: var(--bg); }
.qa { max-width: 820px; margin: 0 auto; }
.qa-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid rgba(214,154,166,.15);
  overflow: hidden;
  transition: box-shadow .3s;
}
.qa-item.open { box-shadow: 0 8px 24px rgba(184,120,130,.12); }
.qa-q {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  width: 100%; text-align: left;
  font-size: 15px; font-weight: 700;
  color: var(--ink);
  transition: background .25s;
}
.qa-q:hover { background: var(--rose-soft); }
.qa-q::before {
  content: 'Q'; flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--rose-deep); color: var(--white);
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 15px;
}
.qa-q::after {
  content: '＋'; margin-left: auto;
  color: var(--rose-deep); font-weight: 700;
  transition: transform .3s;
}
.qa-item.open .qa-q::after { transform: rotate(45deg); }
.qa-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 24px 0 72px;
  color: var(--ink-soft);
  font-size: 14px; line-height: 1.9;
}
.qa-item.open .qa-a {
  max-height: 600px;
  padding: 0 24px 22px 72px;
}

/* ---------- CTA ---------- */
#cta {
  background: linear-gradient(135deg, var(--ink) 0%, #5A3E3B 100%);
  color: var(--bg);
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: ''; position: absolute;
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,154,166,.35), transparent 70%);
  filter: blur(50px);
}
#cta::after {
  content: ''; position: absolute;
  bottom: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,185,157,.28), transparent 70%);
  filter: blur(50px);
}
.cta-inner { position: relative; z-index: 2; }
.cta-eyebrow {
  display: inline-block;
  font-family: var(--f-eng); font-style: italic;
  font-size: 15px; letter-spacing: .3em;
  color: var(--rose);
  margin-bottom: 20px;
}
.cta-headline {
  font-family: var(--f-display);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.cta-headline em {
  font-style: italic; color: var(--rose);
  font-weight: 500;
}
.cta-sub {
  font-size: 14px;
  color: rgba(251,245,241,.75);
  letter-spacing: .12em;
  margin-bottom: 40px;
  line-height: 1.9;
}
.cta-btns {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
}

/* ---------- Footer ---------- */
footer {
  background: #2A1E1D;
  color: rgba(251,245,241,.7);
  padding: 60px 0 24px;
  font-size: 13px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.foot-brand {
  font-family: var(--f-display);
  font-size: 20px; font-weight: 700;
  color: var(--bg);
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.foot-desc { line-height: 1.9; margin-bottom: 14px; font-size: 12.5px; }
.foot-sign {
  font-family: var(--f-hand);
  font-size: 18px; color: var(--rose);
}
.foot-col h4 {
  font-family: var(--f-eng); font-style: italic;
  font-size: 14px; letter-spacing: .2em;
  color: var(--rose);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(214,154,166,.2);
}
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 8px; }
.foot-col a { color: rgba(251,245,241,.7); font-size: 13px; }
.foot-col a:hover { color: var(--rose); opacity: 1; }
.foot-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 12px;
  color: rgba(251,245,241,.55);
}
.foot-bottom a { color: rgba(251,245,241,.65); }
.foot-bottom a:hover { color: var(--rose); }

.partner-notice-inline {
  padding: 14px 0 8px;
  font-size: 11.5px;
  color: rgba(251,245,241,.5);
  line-height: 1.7;
  letter-spacing: .04em;
  text-align: center;
}
.partner-notice-inline a {
  color: inherit;
  opacity: .8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.partner-notice {
  background: rgba(214,154,166,.12);
  border-top: 1px solid rgba(214,154,166,.25);
  border-bottom: 1px solid rgba(214,154,166,.25);
  padding: 14px 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(251,245,241,.7);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 20px;
}
.partner-notice a {
  color: var(--rose);
  font-weight: 700;
  letter-spacing: .06em;
}
.produced-by {
  text-align: center;
  margin-top: 14px;
  font-family: var(--f-eng); font-style: italic;
  font-size: 12px; letter-spacing: .18em;
  color: rgba(251,245,241,.6);
}
.produced-by a {
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid rgba(214,154,166,.4);
  padding-bottom: 1px;
}
.produced-by a:hover { color: var(--rose-soft); opacity: 1; }

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-photos { min-height: 380px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .features-list { grid-template-columns: repeat(2, 1fr); }
  .scenes { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .wall { grid-template-columns: repeat(2, 1fr); }
  .access-wrap { grid-template-columns: 1fr; }
  .sns-row { grid-template-columns: 1fr; }
  .consult-cards { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 600px) {
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .sec-head { margin-bottom: 40px; }
  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: clamp(30px, 8vw, 40px); }
  .hero-ctas .btn { flex: 1 1 100%; min-width: unset; }
  .menu-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .scenes { grid-template-columns: 1fr; }

  /* Reviews — horizontal scroll */
  .reviews-grid {
    display: flex; flex-wrap: nowrap;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px; padding: 0 2px 16px;
    scrollbar-width: none;
    grid-template-columns: unset; grid-auto-rows: unset;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review, .review-skel, .review-cta {
    flex: 0 0 82vw; max-width: 300px;
    scroll-snap-align: start;
    height: auto; min-height: 240px;
  }

  /* Blog — horizontal scroll */
  .wall {
    display: flex; flex-wrap: nowrap;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px; padding: 0 2px 16px;
    scrollbar-width: none;
    grid-template-columns: unset;
  }
  .wall::-webkit-scrollbar { display: none; }
  .blog-card, a.blog-card {
    flex: 0 0 78vw; max-width: 280px;
    scroll-snap-align: start;
    min-width: 0;
  }

  .access-info { padding: 24px 20px; }
  .access-info dl { grid-template-columns: 80px 1fr; gap: 8px 14px; font-size: 13px; }
  .cta-btns .btn { flex: 1 1 100%; }
  .partner-notice { flex-direction: column; gap: 6px; padding: 12px 16px; font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
