/* =========================
   DESIGN TOKENS
   ========================= */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #8B6914;
  --cream:       #FAF6EE;
  --warm-white:  #FFFDF8;
  --brown:       #3E2A0F;
  --brown-light: #6B4A23;
  --text:        #2C1A06;
  --text-muted:  #7A6045;
  --amber:       #D4882B;
}

html, body, ul, ol, li, h1, h2, h3, h4, h5, h6, p, div {
  margin: 0; padding: 0; font-weight: 400; list-style: none;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body { overflow-x: hidden; }
img { display: block; width: 100%; object-fit: cover; }

/* =========================
   LOADER (NELU-style)
   ========================= */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  letter-spacing: 0.45em;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: loaderFadeUp 0.8s 0.3s forwards;
}
.loader-tagline {
  font-family: "Noto Serif JP", serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: rgba(232,201,122,0.7);
  font-weight: 300;
  opacity: 0;
  animation: loaderFadeUp 0.8s 0.6s forwards;
}
.loader-bar {
  width: 12rem;
  height: 1px;
  background: rgba(201,168,76,0.2);
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: loaderBar 1.8s 0.3s ease forwards;
}
@keyframes loaderFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderBar {
  to { left: 0; }
}

/* =========================
   ANIMATIONS (GLOBAL)
   ========================= */
@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes heroTextUp {
  from { opacity: 0; transform: translateY(2rem); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rotateBadge {
  to { transform: rotate(360deg); }
}
@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; }
}

/* =========================
   GORAKADAN-GOLF STYLE SCROLL REVEAL
   - ゆっくり・上品・カーテン式
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(1.8rem);
  transition:
    opacity 1.4s cubic-bezier(.25,.46,.45,.94),
    transform 1.4s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.18s; }
.reveal-delay-2 { transition-delay: 0.36s; }
.reveal-delay-3 { transition-delay: 0.54s; }

/* 写真: フェードイン + ズームアウト (Gorakadan Golf style) */
.reveal-photo {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.6s cubic-bezier(.25,.46,.45,.94),
    transform 1.8s cubic-bezier(.25,.46,.45,.94);
}
.reveal-photo.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-photo-delay-1 { transition-delay: 0.15s; }
.reveal-photo-delay-2 { transition-delay: 0.3s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-2.5rem);
  transition:
    opacity 1.4s cubic-bezier(.25,.46,.45,.94),
    transform 1.4s cubic-bezier(.25,.46,.45,.94);
}
.reveal-left.visible {
  opacity: 1; transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(2.5rem);
  transition:
    opacity 1.4s cubic-bezier(.25,.46,.45,.94),
    transform 1.4s cubic-bezier(.25,.46,.45,.94);
}
.reveal-right.visible {
  opacity: 1; transform: translateX(0);
}

/* テキスト行ごとの演出 */
.reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(1.2rem);
  transition:
    opacity 1.2s cubic-bezier(.25,.46,.45,.94),
    transform 1.2s cubic-bezier(.25,.46,.45,.94);
}
.reveal-line.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-line:nth-child(2) { transition-delay: 0.14s; }
.reveal-line:nth-child(3) { transition-delay: 0.28s; }
.reveal-line:nth-child(4) { transition-delay: 0.42s; }

/* パラックス用ラッパー */
.parallax-wrap {
  overflow: hidden;
  position: relative;
}
/* parallax-img: JS で transform 制御。初期はscaleのみ */
.parallax-img {
  transform: translateY(0);
  will-change: transform;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* =========================================================
   PC  ( min-width: 970px )
   ========================================================= */
@media screen and (min-width: 970px) {

:root { font-size: 1vw; }

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 5.5rem;
  padding: 0 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,253,248,0);
  transition: background 0.5s, box-shadow 0.5s;
}
header.scrolled {
  background: rgba(255,253,248,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}
.logo {
  font-family: "Cinzel", serif;
  font-size: 1.7rem;
  letter-spacing: 0.35em;
  color: #fff;
  text-decoration: none;
  transition: color 0.5s;
}
header.scrolled .logo { color: var(--gold-dark); }
.logo-ruby {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.15rem;
  transition: color 0.5s;
}
header.scrolled .logo-ruby { color: var(--text-muted); }
nav a {
  font-family: "Noto Serif JP", serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  margin-left: 2.2rem;
  transition: color 0.3s;
}
header.scrolled nav a { color: var(--text-muted); }
nav a:hover { color: var(--gold); }
header.scrolled nav a:hover { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 50rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroReveal 1.8s 1.8s cubic-bezier(.16,1,.3,1) both;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(44,26,6,0.72) 0%,
    rgba(44,26,6,0.4)  50%,
    rgba(44,26,6,0.15) 100%
  );
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(44,26,6,0.5), transparent);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 0 7rem 9%;
  max-width: 70rem;
}
.hero-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: heroTextUp 0.9s 2.2s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 3rem; height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: "Cinzel", serif;
  font-size: 5.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3em;
  line-height: 1;
  margin-bottom: 0.6rem;
  opacity: 0;
  animation: heroTextUp 0.9s 2.4s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-tagline {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: heroTextUp 0.9s 2.55s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-copy {
  font-size: 0.95rem;
  line-height: 2.2;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroTextUp 0.9s 2.7s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-badges {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  animation: heroTextUp 0.9s 2.85s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-badge-pill {
  border: 1px solid rgba(201,168,76,0.6);
  padding: 1.15rem 1.4rem;
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--gold-light);
}
.hero-badge-circle {
  width: 7rem; height: 7rem;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: rotateBadge 18s linear infinite;
}
.hero-badge-circle-inner {
  animation: rotateBadge 18s linear infinite reverse;
  text-align: center;
}
.hero-badge-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.hero-badge-label {
  font-size: 0.6rem;
  color: rgba(232,201,122,0.75);
  letter-spacing: 0.12em;
  display: block;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gold);
  color: var(--brown);
  text-decoration: none;
  padding: 1.1rem 2.6rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.hero-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta span { position: relative; z-index: 1; }
.hero-cta-arrow {
  position: relative; z-index: 1;
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.hero-cta:hover .hero-cta-arrow { transform: translateX(0.4rem); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 4rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  z-index: 2;
  opacity: 0;
  animation: heroTextUp 0.9s 3s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-scroll-text {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.6);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 4rem;
  background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light);
  animation: scrollLine 2s ease infinite;
}

/* ─── CONCEPT ─── */
.concept {
  background: var(--cream);
  padding: 10rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 100%;
}
.concept-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.concept-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.concept-photo-label {
  position: absolute;
  bottom: 2.5rem; left: -1px;
  background: var(--gold);
  color: var(--brown);
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}
.concept-text {
  padding: 0 8% 0 7%;
}
.concept-tag {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.concept-tag::before {
  content: ''; width: 2rem; height: 1px; background: var(--gold);
}
.concept-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: var(--brown);
  margin-bottom: 2.2rem;
}
.concept-body {
  font-size: 1rem;
  line-height: 2.5;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  font-weight: 300;
}
.concept-divider {
  display: flex; align-items: center; gap: 1.5rem;
  margin: 2.5rem 0;
}
.concept-divider::before, .concept-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(201,168,76,0.3);
}
.concept-divider-ornament {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
}

/* セクション共通 */
.section-tag {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 0.75rem;
}
.section-heading-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 4.5rem;
  display: block;
}

/* ─── REASONS ─── */
.reasons {
  padding: 9rem 4rem;
  background: var(--warm-white);
  text-align: center;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.15rem;
  max-width: 76rem;
  margin: 0 auto;
}
.reason-card {
  background: var(--cream);
  padding: 3.5rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(.16,1,.3,1), box-shadow 0.45s;
}
.reason-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 2rem 4rem rgba(44,26,6,0.1);
  z-index: 2;
}
.reason-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s;
}
.reason-card:hover::after { transform: scaleX(1); }
.reason-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem; font-weight: 300;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.reason-photo {
  width: 100%; aspect-ratio: 4/3; overflow: hidden; margin-bottom: 1.5rem;
}
.reason-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.reason-card:hover .parallax-img { /* parallax handles scale */ }
.reason-sub {
  font-size: 0.72rem; letter-spacing: 0.25em;
  color: var(--gold);
  font-family: "Cinzel", serif;
  margin-bottom: 0.6rem;
}
.reason-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem; font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--brown);
  margin-bottom: 1rem;
}
.reason-body {
  font-size: 0.95rem; line-height: 2.2;
  color: var(--text-muted); font-weight: 300;
}

/* ─── LIMITED ─── */
.limited {
  position: relative; overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 36rem;
}
.limited-photo {
  position: relative;
  overflow: hidden;
}
.limited-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.limited:hover .limited-photo img { transform: scale(1.04); }
.limited-content {
  background: linear-gradient(135deg, #2C1A06 0%, #4A2E0D 60%, #6B4A23 100%);
  position: relative; overflow: hidden;
  padding: 6rem 5rem 6rem 6%;
  display: flex; flex-direction: column; justify-content: center;
  z-index: 1;
}
.limited-content::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon points='40,0 80,23 80,69 40,92 0,69 0,23' fill='none' stroke='rgba(201,168,76,0.07)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 5rem 5.75rem;
}
.limited-tag {
  font-family: "Cinzel", serif;
  font-size: 0.7rem; letter-spacing: 0.4em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  position: relative;
}
.limited-tag::before { content: ''; width: 2rem; height: 1px; background: var(--gold-light); }
.limited-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem; letter-spacing: 0.2em;
  padding: 0.4rem 1.25rem;
  margin-bottom: 1.5rem;
  font-family: "Noto Serif JP", serif;
  position: relative;
}
.limited-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem; font-weight: 400;
  line-height: 1.85; letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 2rem;
  position: relative;
}
.limited-body {
  font-size: 1rem; line-height: 2.4;
  color: rgba(250,246,238,0.75);
  font-weight: 300;
  position: relative;
}
.limited-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-top: 2.5rem;
  position: relative;
}
.limited-stat {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 1.6rem 1.25rem;
  text-align: center;
}
.limited-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem; font-weight: 300;
  color: var(--gold-light); line-height: 1;
  margin-bottom: 0.4rem;
}
.limited-stat-label {
  font-size: 0.75rem; color: rgba(232,201,122,0.65); letter-spacing: 0.15em;
}

/* ─── GIFT FOR ─── */
.gift-for {
  padding: 9rem 4rem;
  background: var(--cream);
  text-align: center;
}
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 76rem;
  margin: 0 auto;
}
.gift-card {
  background: var(--warm-white);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(.16,1,.3,1);
}
.gift-card:hover { transform: translateY(-0.4rem); }
.gift-card-photo {
  aspect-ratio: 4/3;
  overflow: hidden; position: relative;
}
.gift-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 7s ease;
}
.gift-card:hover .gift-card-photo img { transform: scale(1.06); }
.gift-card-body {
  padding: 1.6rem 1.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.18);
  border-top: none;
}
.gift-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem; font-weight: 500;
  letter-spacing: 0.1em; color: var(--brown);
  margin-bottom: 0.3rem;
}
.gift-card-occasion {
  font-size: 0.85rem; color: var(--gold);
  letter-spacing: 0.15em; margin-bottom: 0.9rem;
  font-family: "Cormorant Garamond", serif;
}
.gift-card-desc {
  font-size: 0.9rem; line-height: 2.1;
  color: var(--text-muted); font-weight: 300;
}
.gift-note {
  max-width: 38rem; margin: 4rem auto 0;
  padding: 1.6rem 2.5rem;
  border: 1px solid var(--gold); position: relative;
}
.gift-note::before {
  content: '';
  position: absolute; top: -0.45rem; left: 50%;
  width: 0.9rem; height: 0.9rem;
  background: var(--cream); border: 1px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
}
.gift-note p {
  font-size: 0.95rem; line-height: 2.2;
  color: var(--brown-light); letter-spacing: 0.08em;
}

/* ─── PRODUCTS ─── */
.products {
  padding: 9rem 4rem;
  background: var(--warm-white);
  text-align: center;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.15rem; max-width: 76rem; margin: 0 auto;
}
.product-card {
  background: var(--cream); overflow: hidden;
  transition: transform 0.45s cubic-bezier(.16,1,.3,1), box-shadow 0.45s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1.5rem 3.5rem rgba(44,26,6,0.09);
}
.product-photo {
  aspect-ratio: 1; overflow: hidden; position: relative;
}
.product-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 7s ease;
}
.product-card:hover .product-photo img { transform: scale(1.06); }
.product-label {
  position: absolute; top: 1rem; left: 0;
  background: var(--gold); color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 0.65rem; letter-spacing: 0.2em;
  padding: 0.2rem 0.75rem;
}
.product-body {
  padding: 1.5rem 1.5rem 2rem; text-align: left;
}
.product-name-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem; color: var(--text-muted);
  letter-spacing: 0.22em; margin-bottom: 0.4rem;
}
.product-name {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem; font-weight: 500;
  letter-spacing: 0.08em; color: var(--brown); margin-bottom: 0.9rem;
}
.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem; font-weight: 400;
  color: var(--gold-dark);
}
.product-price span {
  font-size: 0.8rem; font-family: "Noto Serif JP", serif;
  color: var(--text-muted); margin-left: 0.2rem;
}

/* ─── QUALITY ─── */
.quality {
  padding: 9rem 4rem; background: var(--cream);
}
.quality-inner {
  max-width: 76rem; margin: 0 auto;
}
.quality-header {
  text-align: center; margin-bottom: 5rem;
}
.quality-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.quality-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--warm-white);
  border: 1px solid rgba(201,168,76,0.14);
  position: relative; overflow: hidden;
  transition: transform 0.45s cubic-bezier(.16,1,.3,1);
}
.quality-item:hover { transform: translateY(-0.4rem); }
.quality-item::after {
  content: attr(data-num);
  position: absolute; bottom: -0.5rem; right: 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem; font-weight: 300;
  color: rgba(201,168,76,0.07); line-height: 1;
}
.quality-photo {
  width: 100%; aspect-ratio: 4/3; overflow: hidden; margin-bottom: 1.6rem;
}
.quality-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 7s ease;
}
.quality-item:hover .quality-photo img { transform: scale(1.06); }
.quality-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem; font-weight: 500;
  letter-spacing: 0.12em; color: var(--brown); margin-bottom: 1rem;
}
.quality-body {
  font-size: 0.9rem; line-height: 2.3;
  color: var(--text-muted); font-weight: 300;
}

/* ─── FAQ ─── */
.faq {
  padding: 9rem 4rem; background: var(--warm-white);
}
.faq-inner { max-width: 58rem; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 4.5rem; }
.faq-categories {
  display: flex; gap: 0.5rem;
  justify-content: center; margin-bottom: 3rem; flex-wrap: wrap;
}
.faq-cat-btn {
  font-family: "Noto Serif JP", serif;
  font-size: 0.8rem; letter-spacing: 0.15em;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201,168,76,0.4);
  background: none; color: var(--text-muted);
  cursor: pointer; transition: all 0.3s;
}
.faq-cat-btn.active, .faq-cat-btn:hover {
  background: var(--gold); border-color: var(--gold); color: #fff;
}
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--cream);
  border-left: 3px solid transparent; transition: border-color 0.3s;
}
.faq-item.open { border-left-color: var(--gold); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.75rem 2rem; display: flex; align-items: center;
  gap: 1.25rem; text-align: left; transition: background 0.2s;
}
.faq-question:hover { background: rgba(201,168,76,0.04); }
.faq-q-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem; font-weight: 600;
  color: var(--gold); flex-shrink: 0; line-height: 1;
}
.faq-q-text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--brown);
  flex: 1; line-height: 1.75;
}
.faq-toggle {
  flex-shrink: 0; width: 1.75rem; height: 1.75rem;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
  transition: transform 0.4s, background 0.3s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg); background: var(--gold); color: #fff;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0,1,0,1); }
.faq-item.open .faq-answer { max-height: 30rem; transition: max-height 0.6s ease; }
.faq-a-inner {
  padding: 0 2rem 1.8rem 4.75rem;
  display: flex; gap: 1.25rem;
}
.faq-a-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem; font-weight: 600;
  color: var(--amber); flex-shrink: 0; line-height: 1;
}
.faq-a-text {
  font-size: 0.95rem; line-height: 2.4;
  color: var(--text-muted); font-weight: 300; letter-spacing: 0.05em;
}
.faq-a-text strong { color: var(--brown); font-weight: 500; }

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative; overflow: hidden;
  padding: 8rem 4rem;
  text-align: center;
  background: var(--gold);
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='69' viewBox='0 0 60 69'%3E%3Cpolygon points='30,0 60,17.25 60,51.75 30,69 0,51.75 0,17.25' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 3.75rem 4.3rem;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem; font-weight: 400;
  letter-spacing: 0.12em; color: var(--brown); margin-bottom: 0.75rem;
}
.cta-banner-sub {
  font-size: 1rem; color: rgba(62,42,15,0.75);
  letter-spacing: 0.1em; margin-bottom: 2.5rem; font-weight: 300;
}
.cta-btn {
        border: none;
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--brown); color: var(--gold-light);
  text-decoration: none;
  padding: 1.1rem 3rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem; letter-spacing: 0.2em;
  transition: all 0.3s;
}
.cta-btn:hover {
  background: var(--brown-light);
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 2rem rgba(44,26,6,0.25);
}

/* ─── FOOTER ─── */
footer {
  background: var(--brown);
  color: var(--cream);
  padding: 6rem 4rem 3rem;
}
.footer-inner {
  max-width: 76rem; margin: 0 auto 4rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
}
.footer-logo {
  font-family: "Cinzel", serif;
  font-size: 2rem; letter-spacing: 0.3em;
  color: var(--gold-light); margin-bottom: 1.25rem;
}
.footer-tagline {
  font-size: 0.88rem; line-height: 2;
  color: rgba(250,246,238,0.55); letter-spacing: 0.1em; font-weight: 300;
}
.footer-heading {
  font-family: "Cinzel", serif;
  font-size: 0.7rem; letter-spacing: 0.3em;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  color: rgba(250,246,238,0.55); text-decoration: none;
  font-size: 0.88rem; letter-spacing: 0.1em;
  transition: color 0.3s; font-weight: 300;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 76rem; margin: 0 auto;
}
.footer-copy {
  font-size: 0.78rem; color: rgba(250,246,238,0.35); letter-spacing: 0.1em;
}
.footer-sns { display: flex; gap: 1rem; }
.footer-sns a {
  width: 2.25rem; height: 2.25rem;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,246,238,0.45); text-decoration: none;
  font-size: 1rem; transition: all 0.3s;
}
.footer-sns a:hover { border-color: var(--gold); color: var(--gold); }

} /* end PC */


/* =========================================================
   SP  ( max-width: 969px )
   ========================================================= */
@media screen and (max-width: 969px) {

:root { font-size: 3.34vw; }


html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}


body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem; line-height: 1.6;
  color: var(--text); background: var(--warm-white);
  overflow-x: hidden;
}

/* HEADER */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 4.5rem; padding: 0 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,253,248,0);
  transition: background 0.5s;
}
header.scrolled {
  background: rgba(255,253,248,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}
nav { display: none; }
.logo {
  font-family: "Cinzel", serif;
  font-size: 1.6rem; letter-spacing: 0.3em;
  color: #fff; text-decoration: none; transition: color 0.5s;
}
header.scrolled .logo { color: var(--gold-dark); }
.logo-ruby {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.65); margin-bottom: 0.1rem; transition: color 0.5s;
}
header.scrolled .logo-ruby { color: var(--text-muted); }

/* HERO */
.hero {
  position: relative; height: 90vh; min-height: 36rem;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  animation: heroReveal 1.8s 1.8s cubic-bezier(.16,1,.3,1) both;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,26,6,0.85) 0%, rgba(44,26,6,0.4) 50%, rgba(44,26,6,0.2) 100%);
}
.hero-overlay-bottom { display: none; }
.hero-content {
  position: relative; z-index: 2;
  padding: 0 2rem 5rem;
}
.hero-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 0.65rem; letter-spacing: 0.35em;
  color: var(--gold-light); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  opacity: 0; animation: heroTextUp 0.9s 2.2s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-eyebrow::before { content: ''; width: 2rem; height: 1px; background: var(--gold-light); }
.hero-h1 {
  font-family: "Cinzel", serif;
  font-size: 3.8rem; font-weight: 600;
  color: #fff; letter-spacing: 0.3em; line-height: 1;
  margin-bottom: 0.6rem;
  opacity: 0; animation: heroTextUp 0.9s 2.4s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-tagline {
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.9); font-weight: 300; margin-bottom: 1.5rem;
  opacity: 0; animation: heroTextUp 0.9s 2.55s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-copy {
  font-size: 0.95rem; line-height: 2.2;
  color: rgba(255,255,255,0.8); letter-spacing: 0.06em;
  font-weight: 300; margin-bottom: 2rem;
  opacity: 0; animation: heroTextUp 0.9s 2.7s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-badges {
  display: flex; gap: 1rem; align-items: center;
  opacity: 0; animation: heroTextUp 0.9s 2.85s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-badge-pill {
  border: 1px solid rgba(201,168,76,0.6); padding: 1.05rem 1rem;
  font-family: "Cinzel", serif; font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--gold-light);
}
.hero-badge-circle { display: none; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--gold); color: var(--brown); text-decoration: none;
  padding: 0.9rem 1.8rem;
  font-family: "Noto Serif JP", serif; font-size: 0.95rem;
  letter-spacing: 0.15em; font-weight: 500;
  position: relative; overflow: hidden;
}
.hero-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light); transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta span { position: relative; z-index: 1; }
.hero-cta-arrow { position: relative; z-index: 1; font-size: 1rem; }
.hero-scroll { display: none; }

/* CONCEPT */
.concept { background: var(--cream); padding: 5rem 2rem; display: block; }
.concept-photo {
  overflow: hidden; position: relative; margin-bottom: 2.5rem;
}
.concept-photo img { width: 100%; height: 100%; object-fit: cover; }
.concept-photo-label {
  position: absolute; bottom: 1.5rem; left: -1px;
  background: var(--gold); color: var(--brown);
  font-family: "Cinzel", serif; font-size: 0.65rem;
  letter-spacing: 0.25em; padding: 0.4rem 1rem; font-weight: 600;
}
.concept-tag {
  font-family: "Cinzel", serif; font-size: 0.65rem;
  letter-spacing: 0.4em; color: var(--gold);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;
}
.concept-tag::before { content: ''; width: 1.5rem; height: 1px; background: var(--gold); }
.concept-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.7rem; font-weight: 400; line-height: 1.85;
  letter-spacing: 0.06em; color: var(--brown); margin-bottom: 1.8rem;
}
.concept-body {
  font-size: 0.95rem; line-height: 2.4;
  color: var(--text-muted); letter-spacing: 0.05em; font-weight: 300;
}
.concept-divider {
  display: flex; align-items: center; gap: 1.25rem; margin: 2rem 0;
}
.concept-divider::before,.concept-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(201,168,76,0.3);
}
.concept-divider-ornament {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem; color: var(--gold); font-style: italic;
}
.concept-text { }

/* Section common */
.section-tag {
  font-family: "Cinzel", serif; font-size: 0.65rem;
  letter-spacing: 0.4em; color: var(--gold);
  margin-bottom: 0.75rem; display: block;
}
.section-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem; font-weight: 400;
  letter-spacing: 0.07em; line-height: 1.8; color: var(--brown); margin-bottom: 0.5rem;
}
.section-heading-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem; letter-spacing: 0.25em;
  color: var(--text-muted); font-weight: 300;
  margin-bottom: 2.5rem; display: block;
}

/* REASONS */
.reasons { padding: 5rem 2rem; background: var(--warm-white); text-align: center; }
.reasons-grid { display: flex; flex-direction: column; gap: 0.15rem; }
.reason-card {
  background: var(--cream); padding: 2.5rem 1.75rem 3rem;
  position: relative; overflow: hidden;
}
.reason-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s;
}
.reason-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem; font-weight: 300;
  color: rgba(201,168,76,0.18); line-height: 1; margin-bottom: 1.25rem;
}
.reason-photo { width: 100%; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 1.25rem; }
.reason-photo img { width: 100%; height: 100%; object-fit: cover; }
.reason-sub {
  font-size: 0.68rem; letter-spacing: 0.22em; color: var(--gold);
  font-family: "Cinzel", serif; margin-bottom: 0.5rem;
}
.reason-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.15rem; font-weight: 500;
  letter-spacing: 0.1em; color: var(--brown); margin-bottom: 0.75rem;
}
.reason-body { font-size: 0.95rem; line-height: 2.2; color: var(--text-muted); font-weight: 300; }

/* LIMITED */
.limited { display: block; }
.limited-photo { aspect-ratio: 16/9; overflow: hidden; }
.limited-photo img { width: 100%; height: 100%; object-fit: cover; }
.limited-content {
  background: linear-gradient(135deg, #2C1A06 0%, #4A2E0D 60%, #6B4A23 100%);
  padding: 4rem 2rem; position: relative; overflow: hidden;
}
.limited-content::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon points='40,0 80,23 80,69 40,92 0,69 0,23' fill='none' stroke='rgba(201,168,76,0.07)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 5rem 5.75rem;
}
.limited-tag {
  font-family: "Cinzel", serif; font-size: 0.65rem; letter-spacing: 0.4em;
  color: var(--gold-light); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem; position: relative;
}
.limited-tag::before { content: ''; width: 1.5rem; height: 1px; background: var(--gold-light); }
.limited-badge {
  display: inline-block; border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.72rem; letter-spacing: 0.18em; padding: 0.35rem 1rem;
  margin-bottom: 1.25rem; font-family: "Noto Serif JP", serif; position: relative;
}
.limited-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.65rem; font-weight: 400; line-height: 1.85;
  letter-spacing: 0.07em; color: var(--cream); margin-bottom: 1.5rem; position: relative;
}
.limited-body {
  font-size: 0.95rem; line-height: 2.4;
  color: rgba(250,246,238,0.75); font-weight: 300; position: relative;
}
.limited-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 2rem;
  position: relative;
}
.limited-stat {
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.18);
  padding: 1.25rem 1rem; text-align: center;
}
.limited-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem; font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: 0.35rem;
}
.limited-stat-label { font-size: 0.72rem; color: rgba(232,201,122,0.65); letter-spacing: 0.12em; }

/* GIFT FOR */
.gift-for { padding: 5rem 2rem; background: var(--cream); text-align: center; }
.gift-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.gift-card { background: var(--warm-white); overflow: hidden; }
.gift-card-photo { aspect-ratio: 16/9; overflow: hidden; }
.gift-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.gift-card-body {
  padding: 1.4rem 1.25rem 1.75rem;
  border: 1px solid rgba(201,168,76,0.18); border-top: none;
}
.gift-card-title {
  font-family: "Noto Serif JP", serif; font-size: 1.05rem; font-weight: 500;
  letter-spacing: 0.1em; color: var(--brown); margin-bottom: 0.25rem;
}
.gift-card-occasion {
  font-size: 0.82rem; color: var(--gold); letter-spacing: 0.14em;
  margin-bottom: 0.75rem; font-family: "Cormorant Garamond", serif;
}
.gift-card-desc { font-size: 0.9rem; line-height: 2; color: var(--text-muted); font-weight: 300; }
.gift-note { margin: 2.5rem 0 0; padding: 1.4rem 1.25rem; border: 1px solid var(--gold); position: relative; }
.gift-note::before {
  content: ''; position: absolute; top: -0.45rem; left: 50%;
  width: 0.9rem; height: 0.9rem; background: var(--cream);
  border: 1px solid var(--gold); transform: translateX(-50%) rotate(45deg);
}
.gift-note p { font-size: 0.9rem; line-height: 2.2; color: var(--brown-light); letter-spacing: 0.06em; }

/* PRODUCTS */
.products { padding: 5rem 2rem; background: var(--warm-white); text-align: center; }
.products-grid { display: flex; flex-direction: column; gap: 0.15rem; }
.product-card { background: var(--cream); overflow: hidden; cursor: pointer; }
.product-photo { aspect-ratio: 1 / 1; overflow: hidden; position: relative; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-label {
  position: absolute; top: 0.75rem; left: 0;
  background: var(--gold); color: #fff;
  font-family: "Noto Serif JP", serif; font-size: 0.62rem;
  letter-spacing: 0.18em; padding: 0.18rem 0.625rem;
}
.product-body { padding: 1.25rem 1.25rem 1.75rem; text-align: left; }
.product-name-en {
  font-family: "Cormorant Garamond", serif; font-size: 0.82rem;
  color: var(--text-muted); letter-spacing: 0.2em; margin-bottom: 0.35rem;
}
.product-name {
  font-family: "Noto Serif JP", serif; font-size: 1.05rem; font-weight: 500;
  letter-spacing: 0.08em; color: var(--brown); margin-bottom: 0.75rem;
}
.product-price {
  font-family: "Cormorant Garamond", serif; font-size: 1.55rem; font-weight: 400; color: var(--gold-dark);
}
.product-price span { font-size: 0.78rem; font-family: "Noto Serif JP", serif; color: var(--text-muted); margin-left: 0.18rem; }

/* QUALITY */
.quality { padding: 5rem 2rem; background: var(--cream); }
.quality-inner { max-width: 100%; }
.quality-header { text-align: center; margin-bottom: 3rem; }
.quality-list { display: flex; flex-direction: column; gap: 1.5rem; }
.quality-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2.5rem 1.5rem; background: var(--warm-white);
  border: 1px solid rgba(201,168,76,0.14); position: relative; overflow: hidden;
}
.quality-item::after {
  content: attr(data-num); position: absolute; bottom: -0.4rem; right: 0.4rem;
  font-family: "Cormorant Garamond", serif; font-size: 3.5rem; font-weight: 300;
  color: rgba(201,168,76,0.07); line-height: 1;
}
.quality-photo { width: 100%; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 1.25rem; }
.quality-photo img { width: 100%; height: 100%; object-fit: cover; }
.quality-title {
  font-family: "Noto Serif JP", serif; font-size: 1.05rem; font-weight: 500;
  letter-spacing: 0.12em; color: var(--brown); margin-bottom: 0.75rem;
}
.quality-body { font-size: 0.9rem; line-height: 2.3; color: var(--text-muted); font-weight: 300; }

/* FAQ */
.faq { padding: 5rem 2rem; background: var(--warm-white); }
.faq-inner { max-width: 100%; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-categories {
  display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap;
}
.faq-cat-btn {
  font-family: "Noto Serif JP", serif; font-size: 0.72rem; letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem; border: 1px solid rgba(201,168,76,0.4);
  background: none; color: var(--text-muted); cursor: pointer; transition: all 0.3s;
}
.faq-cat-btn.active, .faq-cat-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--cream); border-left: 3px solid transparent; transition: border-color 0.3s; }
.faq-item.open { border-left-color: var(--gold); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.25rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; text-align: left;
}
.faq-q-label { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); flex-shrink: 0; line-height: 1; }
.faq-q-text { font-family: "Noto Serif JP", serif; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.04em; color: var(--brown); flex: 1; line-height: 1.7; }
.faq-toggle {
  flex-shrink: 0; width: 1.6rem; height: 1.6rem;
  border: 1px solid rgba(201,168,76,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; transition: transform 0.4s, background 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0,1,0,1); }
.faq-item.open .faq-answer { max-height: 30rem; transition: max-height 0.6s ease; }
.faq-a-inner { padding: 0 1.25rem 1.5rem 1.25rem; display: flex; gap: 0.75rem; }
.faq-a-label { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; font-weight: 600; color: var(--amber); flex-shrink: 0; line-height: 1; }
.faq-a-text { font-size: 0.9rem; line-height: 2.4; color: var(--text-muted); font-weight: 300; letter-spacing: 0.04em; }
.faq-a-text strong { color: var(--brown); font-weight: 500; }

/* CTA BANNER */
.cta-banner {
  position: relative; overflow: hidden; padding: 4.5rem 2rem; text-align: center; background: var(--gold);
}
.cta-banner-bg { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='69' viewBox='0 0 60 69'%3E%3Cpolygon points='30,0 60,17.25 60,51.75 30,69 0,51.75 0,17.25' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E"); background-size: 3.75rem 4.3rem; }
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner-heading { font-family: "Noto Serif JP", serif; font-size: 1.2rem; font-weight: 400; letter-spacing: 0.1em; color: var(--brown); margin-bottom: 0.625rem; }
.cta-banner-sub { font-size: 0.88rem; color: rgba(62,42,15,0.75); letter-spacing: 0.08em; margin-bottom: 2rem; font-weight: 300; }
.cta-btn { border: none;display: inline-flex; align-items: center; gap: 0.625rem; background: var(--brown); color: var(--gold-light); text-decoration: none; padding: 1rem 2rem; font-family: "Noto Serif JP", serif; font-size: 0.95rem; letter-spacing: 0.15em; }

/* FOOTER */
footer { background: var(--brown); color: var(--cream); padding: 4rem 2rem 2.5rem; }
.footer-inner { display: flex; flex-direction: column; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: "Cinzel", serif; font-size: 1.8rem; letter-spacing: 0.3em; color: var(--gold-light); margin-bottom: 1rem; }
.footer-tagline { font-size: 0.88rem; line-height: 2; color: rgba(250,246,238,0.55); letter-spacing: 0.08em; font-weight: 300; }
.footer-heading { font-family: "Cinzel", serif; font-size: 0.68rem; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { color: rgba(250,246,238,0.55); text-decoration: none; font-size: 0.88rem; letter-spacing: 0.08em; font-weight: 300; }
.footer-bottom { border-top: 1px solid rgba(201,168,76,0.15); padding-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.footer-copy { font-size: 0.72rem; color: rgba(250,246,238,0.35); letter-spacing: 0.08em; }
.footer-sns { display: flex; gap: 0.75rem; }
.footer-sns a { width: 2.25rem; height: 2.25rem; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; color: rgba(250,246,238,0.45); text-decoration: none; font-size: 1rem; }

} /* end SP */





/* ─── SHOP MODAL ─── */
.shop-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(44, 26, 6, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(.25,.46,.45,.94),
              visibility 0.5s cubic-bezier(.25,.46,.45,.94);
}
.shop-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.shop-modal {
  background: var(--warm-white);
  padding: 4rem 4.5rem 3.5rem;
  max-width: 56rem;
  width: 90%;
  position: relative;
  transform: translateY(2.5rem) scale(0.97);
  transition: transform 0.55s cubic-bezier(.25,.46,.45,.94);
}
.shop-modal-overlay.active .shop-modal {
  transform: translateY(0) scale(1);
}
.shop-modal-close {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  background: none; border: none;
  cursor: pointer;
  width: 2.2rem; height: 2.2rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.3s;
}
.shop-modal-close:hover { color: var(--brown); transform: rotate(90deg); }
.shop-modal-close svg { width: 1.1rem; height: 1.1rem; }
.shop-modal-tag {
  font-family: "Cinzel", serif;
  font-size: 0.65rem; letter-spacing: 0.45em;
  color: var(--gold); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.shop-modal-tag::before { content:''; width:1.5rem; height:1px; background:var(--gold); }
.shop-modal-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.35rem; font-weight: 400;
  letter-spacing: 0.1em; color: var(--brown);
  margin-bottom: 0.5rem;
}
.shop-modal-sub {
  font-size: 0.88rem; color: var(--text-muted);
  letter-spacing: 0.08em; font-weight: 300;
  margin-bottom: 2.5rem;
}
.shop-divider {
  width: 3rem; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 2.5rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.shop-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  background: none; border: none; padding: 0;
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94);
}
.shop-btn:hover { transform: translateY(-0.3rem); }
.shop-btn-box {
  width: 5rem; height: 5rem;
  border: 1px solid rgba(201,168,76,0.4);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.shop-btn:hover .shop-btn-box {
  border-color: var(--gold);
  background: var(--warm-white);
  box-shadow: 0 0.5rem 1.5rem rgba(201,168,76,0.18);
}
.shop-btn-box::before {
  content: '';
  position: absolute; inset: 3px;
  border: 1px solid rgba(201,168,76,0.15);
  pointer-events: none;
}
.shop-btn-letter {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem; font-weight: 400;
  color: var(--gold-dark);
  line-height: 1;
  transition: color 0.3s;
}
.shop-btn:hover .shop-btn-letter { color: var(--brown); }
.shop-btn-label {
  font-family: "Noto Serif JP", serif;
  font-size: 0.72rem; font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-align: center;
  transition: color 0.3s;
}
.shop-btn:hover .shop-btn-label { color: var(--brown); }
.shop-modal-note {
  text-align: center;
  font-size: 0.78rem; color: var(--text-muted);
  letter-spacing: 0.08em; font-weight: 300;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 1.5rem;
}
@media screen and (max-width: 969px) {
  .shop-modal { padding: 3rem 2rem 2.5rem; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .shop-btn-box { width: 4.5rem; height: 4.5rem; }
  .shop-btn-letter { font-size: 1.7rem; }
  .shop-modal-heading { font-size: 1.1rem; }
}


.footer-sns a {
  width: 2.25rem; height: 2.25rem;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,246,238,0.45); text-decoration: none;
  transition: all 0.3s;
}
.footer-sns a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* concept photo override */
.concept-photo.parallax-wrap {
  aspect-ratio: 4/5;
}
@media screen and (max-width: 969px) {
  .concept-photo.parallax-wrap {
    aspect-ratio: unset;
    height: 84vw;
    margin-bottom: 2.5rem;
  }
}

/* ─── CONCEPT SLIDESHOW ─── */
.concept-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.concept-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(.25,.46,.45,.94);
  transform: none;
}
.concept-slideshow .slide.active {
  opacity: 1;
}
@media screen and (max-width: 969px) {
  .concept-slideshow {
    height: 100%;
  }
  .concept-slideshow .slide {
    height: 100%;
    width: 100%;
  }
}

/* グラデーションオーバーレイ */
.concept-slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgb(44 26 6 / 42%) 0%, rgb(44 26 6 / 18%) 50%, rgba(44, 26, 6, 0.15) 100%);
  pointer-events: none;
}
@media screen and (max-width: 969px) {
  .concept-slideshow::after {
    background: linear-gradient(to bottom, rgb(44 26 6 / 0%) 0%, rgb(44 26 6 / 31%) 50%);
  }
}

/* ドットインジケーター */
.concept-slide-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.concept-dot {
  width: 0.35rem;
  height: 0.35rem;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transition: background 0.5s, transform 0.5s;
}
.concept-dot.active {
  background: var(--gold-light);
  transform: scale(1.4);
}


/* ─── PRODUCT CARD 購入モーダル連動 ─── */
.product-card {
  position: relative;
}
.product-card::before {
  content: '購入する';
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(44, 26, 6, 0.45);
  color: var(--gold-light);
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(.25,.46,.45,.94);
  pointer-events: none;
}
.product-card:hover::before {
  opacity: 1;
}
/* SP: タップ時にも分かるよう常時うっすら表示 */
@media screen and (max-width: 969px) {
  .product-card::before {
    opacity: 0.15;
  }
}


/* ==============================================
   ORAMEL — LINE POPUP
   style.css の末尾に追記してください
   ============================================== */

/* ── オーバーレイ ── */
.line-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(44, 26, 6, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s cubic-bezier(.25,.46,.45,.94),
              visibility 0.55s cubic-bezier(.25,.46,.45,.94);
}
.line-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ── モーダル本体 ── */
.line-popup {
  background: var(--warm-white);
  width: 100%;
  max-width: 36rem;
  position: relative;
  padding: 0 3rem 2.75rem;
  text-align: center;
  transform: translateY(2.5rem) scale(0.97);
  transition: transform 0.55s cubic-bezier(.25,.46,.45,.94);
  overflow: hidden;
}
.line-popup-overlay.active .line-popup {
  transform: translateY(0) scale(1);
}

/* ── 上部ゴールドライン ── */
.line-popup-top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  margin: 0 -3rem 2.5rem;
  position: relative;
}

/* ── 閉じるボタン ── */
.line-popup-close {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  background: none; border: none;
  cursor: pointer;
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  border: 1px solid rgba(201,168,76,0.3);
  transition: color 0.2s, transform 0.3s, border-color 0.2s;
}
.line-popup-close:hover {
  color: var(--brown);
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* ── eyebrow ── */
.line-popup-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.line-popup-eyebrow::before,
.line-popup-eyebrow::after {
  content: '';
  width: 1.5rem; height: 1px;
  background: var(--gold);
}

/* ── LINEアイコン ── */
.line-popup-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.line-popup-icon {
  width: 4rem; height: 4rem;
  background: #06C755;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0.5rem 1.5rem rgba(6,199,85,0.3);
}

/* ── タイトル ── */
.line-popup-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 0;
}
.line-popup-title span {
  color: var(--gold-dark);
  font-weight: 500;
}

/* ── 区切り ── */
.line-popup-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.line-popup-divider::before,
.line-popup-divider::after {
  content: '';
  flex: 1; height: 1px;
  background: rgba(201,168,76,0.25);
}
.line-popup-ornament {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--gold);
  line-height: 1;
}

/* ── 特典リスト ── */
.line-popup-benefits {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.line-popup-benefit {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  font-weight: 300;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 0.7rem 1rem;
}
.line-popup-benefit-icon {
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ── CTAボタン ── */
.line-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #06C755;
  color: #fff;
  text-decoration: none;
  padding: 1.1rem 2rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  margin-bottom: 1rem;
}
.line-popup-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.line-popup-cta:hover::before { transform: translateX(0); }
.line-popup-cta:hover {
  background: #05b34b;
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 2rem rgba(6,199,85,0.3);
}

/* ── 注意書き ── */
.line-popup-note {
  font-size: 0.72rem;
  color: rgba(122,96,69,0.55);
  letter-spacing: 0.08em;
  font-weight: 300;
}

/* ── SP ── */
@media screen and (max-width: 969px) {
  .line-popup {
    padding: 0 1.75rem 2.25rem;
    max-width: 100%;
  }
  .line-popup-top-bar { margin: 0 -1.75rem 2rem; }
  .line-popup-title { font-size: 1.2rem; }
  .line-popup-benefit { font-size: 0.84rem; }
  .line-popup-cta { font-size: 0.95rem; padding: 1rem 1.5rem; }
}


/* ==============================================
   ORAMEL — JOURNAL FEED セクション
   style.css の末尾に追記してください
   ============================================== */

/* ── セクション全体 ── */
.journal-feed {
  padding: 9rem 4rem;
  background: var(--cream);
}
.journal-feed-inner {
  max-width: 76rem;
  margin: 0 auto;
}
.journal-feed-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── 記事リスト ── */
.journal-feed-list {
  list-style: none;
  margin: 0 0 4rem;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.journal-feed-item {
  border-top: 1px solid rgba(201,168,76,0.2);
  transition: background 0.3s;
}
.journal-feed-item:last-child {
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.journal-feed-link {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.6rem 1rem;
  text-decoration: none;
  transition: background 0.25s;
  position: relative;
}
.journal-feed-link::after {
  content: '→';
  position: absolute;
  right: 1.25rem;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-0.4rem);
  transition: opacity 0.3s, transform 0.3s;
}
.journal-feed-item:hover .journal-feed-link {
  background: rgba(201,168,76,0.05);
}
.journal-feed-item:hover .journal-feed-link::after {
  opacity: 1;
  transform: translateX(0);
}

/* 連番 */
.journal-feed-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(201,168,76,0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
  text-align: right;
}

/* 区切り縦線 */
.journal-feed-line {
  width: 1px;
  height: 2.5rem;
  background: rgba(201,168,76,0.25);
  flex-shrink: 0;
}

/* 日付 */
.journal-feed-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 6rem;
}

/* タイトル */
.journal-feed-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--brown);
  flex: 1;
  transition: color 0.25s;
  padding-right: 2.5rem;
}
.journal-feed-item:hover .journal-feed-title {
  color: var(--gold-dark);
}

/* ── スケルトンローディング ── */
.journal-feed-skeleton {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 1.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.journal-feed-skeleton::before {
  content: '';
  display: block;
  width: 5rem; height: 0.8rem;
  background: linear-gradient(90deg, rgba(201,168,76,0.1) 25%, rgba(201,168,76,0.2) 50%, rgba(201,168,76,0.1) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  flex-shrink: 0;
  border-radius: 2px;
}
.journal-feed-skeleton::after {
  content: '';
  display: block;
  flex: 1; height: 0.8rem;
  background: linear-gradient(90deg, rgba(201,168,76,0.1) 25%, rgba(201,168,76,0.2) 50%, rgba(201,168,76,0.1) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite 0.2s;
  border-radius: 2px;
}
@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* エラー表示 */
.journal-feed-error {
  text-align: center;
  padding: 3rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ── フッター「すべて見る」ボタン ── */
.journal-feed-footer {
  text-align: center;
}
.journal-feed-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--brown);
  text-decoration: none;
  padding: 1rem 3rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.journal-feed-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.journal-feed-btn:hover::before { transform: translateX(0); }
.journal-feed-btn span,
.journal-feed-btn-arrow {
  position: relative; z-index: 1;
  transition: color 0.4s;
}
.journal-feed-btn:hover span,
.journal-feed-btn:hover .journal-feed-btn-arrow {
  color: var(--brown);
}
.journal-feed-btn-arrow { transition: transform 0.3s, color 0.4s; }
.journal-feed-btn:hover .journal-feed-btn-arrow { transform: translateX(0.4rem); }

/* ── SP ── */
@media screen and (max-width: 969px) {
  .journal-feed { padding: 5rem 2rem; }
  .journal-feed-header { margin-bottom: 2.5rem; }
  .journal-feed-list { margin-bottom: 2.5rem; }

  .journal-feed-link {
    gap: 1rem;
    padding: 1.25rem 0.5rem;
    flex-wrap: wrap;
  }
  .journal-feed-link::after { display: none; }

  .journal-feed-num { font-size: 1.2rem; width: 1.5rem; }
  .journal-feed-line { height: 1.5rem; }
  .journal-feed-date { font-size: 0.75rem; min-width: auto; }
  .journal-feed-title {
    font-size: 0.92rem;
    width: 100%;
    flex-basis: 100%;
    padding: 0.25rem 0 0 3.5rem;
    padding-right: 0;
  }

  .journal-feed-btn { padding: 0.9rem 2rem; font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════════════════
   RECIPE CLUB — トップページ追加セクション
═══════════════════════════════════════════════════════ */

/* ── レシピ一覧セクション ─────────────────────────────── */
.recipe-club {
  padding: 9rem 4rem;
  background: var(--warm-white);
  text-align: center;
}
.recipe-club-inner {
  max-width: 76rem;
  margin: 0 auto;
}
.recipe-club-header {
  margin-bottom: 4.5rem;
}
.recipe-club-lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 2.2;
  letter-spacing: 0.06em;
  margin-top: 1.5rem;
}

/* レシピグリッド */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}
@media (max-width: 900px) {
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .recipe-club { padding: 6rem 1.5rem; }
  .recipe-grid { grid-template-columns: 1fr; }
}

/* レシピカード */
.recipe-card {
  background: var(--cream);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s;
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.5rem 3rem rgba(44,26,6,0.12);
}
.recipe-card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.recipe-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1);
}
.recipe-card:hover .recipe-card-photo img {
  transform: scale(1.05);
}
.recipe-card-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(62,42,15,0.82);
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.8rem;
  backdrop-filter: blur(4px);
}
.recipe-card-body {
  padding: 1.5rem 1.8rem 2rem;
}
.recipe-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.recipe-card-intro {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.recipe-card-author {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  color: var(--gold-dark);
  letter-spacing: 0.15em;
}

/* ── レシピCTAバンド ──────────────────────────────────── */
.recipe-cta-band {
  background: var(--cream);
  padding: 8rem 4rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.recipe-cta-band-inner {
  max-width: 76rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 900px) {
  .recipe-cta-band { padding: 6rem 1.5rem; }
  .recipe-cta-band-inner { grid-template-columns: 1fr; gap: 4rem; }
  .recipe-cta-deco { order: -1; }
}

/* 左テキストエリア */
.recipe-cta-tag {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.recipe-cta-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: var(--brown);
  margin-bottom: 1.5rem;
}
.recipe-cta-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

/* メリットリスト */
.recipe-cta-merits {
  list-style: none;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.recipe-cta-merit {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}
.merit-icon {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.22rem;
  flex-shrink: 0;
}
.recipe-cta-merit strong {
  color: var(--brown);
  font-weight: 600;
}

/* CTAボタン */
.recipe-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--brown);
  color: var(--gold-light);
  text-decoration: none;
  padding: 1.1rem 2.8rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  transition: all 0.3s;
}
.recipe-cta-btn:hover {
  background: var(--brown-light);
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 2rem rgba(44,26,6,0.22);
}
.recipe-cta-btn-arrow {
  font-size: 1rem;
}
.recipe-cta-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* 右 デコエリア */
.recipe-cta-deco {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* メインカード */
.deco-card {
  background: var(--warm-white);
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
}
.deco-card--main {}
.deco-card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.deco-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deco-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
}
.deco-card-tag {
  font-family: "Cinzel", serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.deco-card-text {
  font-family: "Noto Serif JP", serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* サブカード（ポイント表示） */
.deco-card--sub {
  background: var(--brown);
  padding: 1.5rem 2rem;
}
.deco-merit-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.deco-merit-item {
  text-align: center;
  flex: 1;
}
.deco-merit-pt {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.deco-merit-icon {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.deco-merit-label {
  font-size: 0.7rem;
  color: rgba(232,201,122,0.7);
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.deco-merit-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(201,168,76,0.3);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════
   RECIPE OVERLAY — レシピ詳細オーバーレイ
═══════════════════════════════════════════════════════ */

/* ── 「すべてのレシピを見る」ボタン ── */
.recipe-club-footer {
  margin-top: 4rem;
  text-align: center;
}
.recipe-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(139,105,20,0.35);
  color: var(--brown);
  text-decoration: none;
  padding: 1rem 2.6rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  transition: all 0.3s;
  background: transparent;
}
.recipe-more-btn:hover {
  background: var(--brown);
  color: var(--gold-light);
  border-color: var(--brown);
  transform: translateY(-2px);
}
.recipe-more-arrow { font-size: 0.9rem; transition: transform 0.2s; }
.recipe-more-btn:hover .recipe-more-arrow { transform: translateX(4px); }

/* ── オーバーレイ本体 ── */
.recipe-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.recipe-overlay.open {
  pointer-events: auto;
  opacity: 1;
}

/* 背景ブラー */
.recipe-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 5, 0.58);
  backdrop-filter: blur(3px);
}

/* パネル本体（右から出てくるドロワー形式） */
.recipe-overlay-panel {
  position: relative;
  z-index: 1;
  width: min(580px, 95vw);
  height: 100vh;
  background: var(--warm-white);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
}
.recipe-overlay.open .recipe-overlay-panel {
  transform: translateX(0);
}
.recipe-overlay-panel::-webkit-scrollbar { width: 4px; }
.recipe-overlay-panel::-webkit-scrollbar-thumb { background: var(--gold-dark); opacity: 0.3; border-radius: 10px; }

/* 閉じるボタン */
.recipe-overlay-close {
  position: fixed;
  top: 1.4rem;
  right: min(595px, 96vw);
  z-index: 9001;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid rgba(139,105,20,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0;
  pointer-events: none;
}
.recipe-overlay.open .recipe-overlay-close {
  opacity: 1;
  pointer-events: auto;
}
.recipe-overlay-close:hover {
  background: var(--brown);
  border-color: var(--brown);
}
.recipe-overlay-close:hover svg { stroke: var(--gold-light); }

/* ローディング */
.recipe-overlay-loading {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recipe-overlay-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(201,168,76,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: roSpin 0.8s linear infinite;
}
@keyframes roSpin { to { transform: rotate(360deg); } }
.recipe-overlay-error {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 2rem;
}

/* ── パネル内コンテンツ ── */
/* ヒーロー画像 */
.ro-hero {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}
.ro-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ro-hero-cat {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(62,42,15,0.82);
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.8rem;
  backdrop-filter: blur(4px);
}

/* ボディ */
.ro-body {
  padding: 2.2rem 2.4rem 3rem;
  flex: 1;
}
.ro-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.ro-author {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.82rem;
  color: var(--gold-dark);
  letter-spacing: 0.15em;
  margin-bottom: 1.4rem;
}
.ro-intro {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(201,168,76,0.18);
}

/* セクション共通 */
.ro-section {
  margin-bottom: 2rem;
}
.ro-section-title {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

/* 材料 */
.ro-ingredients { list-style: none; }
.ro-ingredient {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(201,168,76,0.15);
  font-size: 0.88rem;
}
.ro-ingredient:last-child { border-bottom: none; }
.ro-ing-name { color: var(--text); letter-spacing: 0.03em; }
.ro-ing-amount { color: var(--text-muted); font-size: 0.82rem; }

/* 作り方 */
.ro-steps { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.ro-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ro-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--brown);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.ro-step-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.85;
  letter-spacing: 0.03em;
}

/* ポイント */
.ro-point {
  background: rgba(201,168,76,0.06);
  padding: 1.4rem 1.6rem;
  border-left: 2px solid var(--gold);
}
.ro-point .ro-section-title { margin-bottom: 0.8rem; }
.ro-point-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 2;
  letter-spacing: 0.03em;
}

/* サブ画像 */
.ro-sub-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.ro-sub-images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* フッター */
.ro-footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.18);
  text-align: center;
}
.ro-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--brown);
  color: var(--gold-light);
  text-decoration: none;
  padding: 0.9rem 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  transition: all 0.25s;
}
.ro-join-btn:hover {
  background: var(--brown-light);
  transform: translateY(-2px);
}

/* スマホ対応 */
@media (max-width: 640px) {
  .recipe-overlay-panel { width: 100vw; }
  .recipe-overlay-close { right: calc(100vw - 50px); }
  .ro-body { padding: 1.6rem 1.4rem 2.5rem; }
  .ro-sub-images { grid-template-columns: repeat(2, 1fr); }
}
