/* =========================
   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 JOURNAL — style.css 追記分
   ============================================== */

/* ============================================================
   JOURNAL HERO（一覧ページ）
   ============================================================ */
.journal-hero {
  background: var(--cream);
  padding: 10rem 4rem 5rem;
  text-align: center;
  position: relative;
}
.journal-hero-inner {
  max-width: 52rem;
  margin: 0 auto;
}
.journal-hero-tag {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.journal-hero-tag::before,
.journal-hero-tag::after {
  content: '';
  width: 2rem; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.journal-hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--brown);
  margin-bottom: 1.25rem;
}
.journal-hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-weight: 300;
  line-height: 2;
}
.journal-hero-line {
  width: 3rem; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 3rem auto 0;
}

/* ============================================================
   JOURNAL GRID（記事一覧）
   ============================================================ */
.journal-list-section {
  background: var(--warm-white);
  padding: 6rem 4rem 8rem;
}
.journal-container {
  max-width: 76rem;
  margin: 0 auto;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.journal-card {
  background: var(--cream);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(.16,1,.3,1), box-shadow 0.45s;
}
.journal-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 3.5rem rgba(44,26,6,0.1);
}
.journal-card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}
.journal-card-photo {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.journal-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 7s ease;
}
.journal-card:hover .journal-card-photo img { transform: scale(1.06); }
.journal-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(201,168,76,0.12) 100%);
}
.journal-card-cat {
  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.8rem;
}
.journal-card-body {
  padding: 1.5rem 1.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.15);
  border-top: none;
}
.journal-card-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  margin-bottom: 0.6rem;
}
.journal-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.75;
  color: var(--brown);
  margin-bottom: 0.75rem;
}
.journal-card-excerpt {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.journal-card-more {
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}
.journal-card:hover .journal-card-more { gap: 0.7rem; }
.journal-card-arrow { transition: transform 0.3s; }
.journal-card:hover .journal-card-arrow { transform: translateX(0.3rem); }

/* ── PAGINATION ── */
.journal-pagination {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}
.journal-pagination .page-numbers {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0; padding: 0;
}
.journal-pagination .page-numbers li a,
.journal-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid rgba(201,168,76,0.35);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}
.journal-pagination .page-numbers li a:hover,
.journal-pagination .page-numbers li span.current {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.journal-empty {
  text-align: center;
  padding: 6rem 0;
}
.journal-empty-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ============================================================
   JOURNAL CTA BANNER（一覧・詳細共通）
   ============================================================ */
.journal-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 7rem 4rem;
  text-align: center;
  background: var(--gold);
}
.journal-cta-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;
}
.journal-cta-content { position: relative; z-index: 1; }
.journal-cta-label {
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 0.45em;
  color: rgba(62,42,15,0.65);
  margin-bottom: 1rem;
}
.journal-cta-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 2.5rem;
}
.journal-cta-btn {
  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;
}
.journal-cta-btn:hover {
  background: var(--brown-light);
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 2rem rgba(44,26,6,0.25);
}

/* ============================================================
   SINGLE — HERO
   ============================================================ */
.single-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--brown);
}
.single-hero-photo {
  position: absolute;
  inset: 0;
}
.single-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.single-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(44,26,6,0.85) 0%,
    rgba(44,26,6,0.35) 55%,
    rgba(44,26,6,0.1)  100%
  );
}
.single-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 9% 5rem;
  max-width: 72rem;
}
.single-cat {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  font-family: "Noto Serif JP", serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  padding: 0.2rem 0.85rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.single-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 40rem;
}
.single-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: rgba(232,201,122,0.8);
}

/* ============================================================
   SINGLE — 2カラム本文 + サイドバー
   ============================================================ */
.single-wrap {
  background: var(--warm-white);
  padding: 6rem 4rem 7rem;
}
.single-container {
  max-width: 76rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 22rem;
  gap: 5rem;
  align-items: start;
}
.single-article {
  background: var(--cream);
  padding: 3.5rem 4rem 4rem;
  border: 1px solid rgba(201,168,76,0.12);
}
.single-content {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  line-height: 2.5;
  color: var(--text);
  letter-spacing: 0.05em;
  font-weight: 300;
}
.single-content h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.07em;
  margin: 3rem 0 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  line-height: 1.75;
}
.single-content h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown);
  margin: 2.5rem 0 1rem;
  letter-spacing: 0.06em;
}
.single-content p { margin-bottom: 1.75rem; }
.single-content img { width: 100%; margin: 2.5rem 0; display: block; }
.single-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  transition: color 0.2s;
}
.single-content a:hover { color: var(--amber); }
.single-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.05);
  color: var(--text-muted);
  font-style: italic;
}
.single-content ul,
.single-content ol {
  margin: 1.5rem 0 1.75rem 1.5rem;
  line-height: 2.4;
}
.single-content ul li { list-style: disc; }
.single-content ol li { list-style: decimal; }

/* タグ */
.single-tags {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.single-tag {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--text-muted);
  font-family: "Noto Serif JP", serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
}
.single-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* SNSシェア */
.single-share {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.single-share-label {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
}
.single-share-btn {
  width: 2.2rem; height: 2.2rem;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}
.single-share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================================
   SINGLE — SIDEBAR
   ============================================================ */
.single-sidebar {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.sidebar-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.7rem 1.2rem;
  transition: all 0.3s;
}
.sidebar-back-btn:hover { border-color: var(--gold); color: var(--gold); }
.sidebar-widget {
  background: var(--cream);
  padding: 1.75rem;
  border: 1px solid rgba(201,168,76,0.12);
}
.sidebar-widget-title {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sidebar-widget-title::after {
  content: '';
  flex: 1; height: 1px;
  background: rgba(201,168,76,0.25);
}
.sidebar-recent { list-style: none; margin: 0; padding: 0; }
.sidebar-recent-item + .sidebar-recent-item {
  border-top: 1px solid rgba(201,168,76,0.12);
  margin-top: 1rem;
  padding-top: 1rem;
}
.sidebar-recent-link {
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  align-items: flex-start;
  transition: opacity 0.2s;
}
.sidebar-recent-link:hover { opacity: 0.7; }
.sidebar-recent-thumb {
  width: 4rem; height: 4rem;
  flex-shrink: 0;
  overflow: hidden;
}
.sidebar-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-recent-date {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.sidebar-recent-title {
  font-family: "Noto Serif JP", serif;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--brown);
  font-weight: 400;
}
.sidebar-cats { list-style: none; margin: 0; padding: 0; }
.sidebar-cat-item + .sidebar-cat-item {
  border-top: 1px solid rgba(201,168,76,0.1);
}
.sidebar-cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.sidebar-cat-link:hover { color: var(--gold); }
.sidebar-cat-count {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  color: rgba(201,168,76,0.6);
}

/* ============================================================
   SINGLE — PREV / NEXT NAV
   ============================================================ */
.single-nav {
  background: var(--cream);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 4rem;
}
.single-nav-inner {
  max-width: 76rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.single-nav-prev,
.single-nav-next { flex: 1; }
.single-nav-next { text-align: right; }
.single-nav-link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  text-decoration: none;
  transition: opacity 0.25s;
}
.single-nav-link:hover { opacity: 0.65; }
.single-nav-dir {
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--gold);
}
.single-nav-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 0.9rem;
  color: var(--brown);
  letter-spacing: 0.05em;
  line-height: 1.6;
  max-width: 22rem;
}
.single-nav-link--next .single-nav-ttl { margin-left: auto; }
.single-nav-list {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}
.single-nav-list:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ============================================================
   RESPONSIVE — SP ( max-width: 969px )
   ============================================================ */
@media screen and (max-width: 969px) {

  .journal-hero { padding: 7rem 2rem 3.5rem; }
  .journal-hero-title { font-size: 1.55rem; }

  .journal-list-section { padding: 4rem 2rem 5rem; }
  .journal-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .journal-cta-banner { padding: 4.5rem 2rem; }
  .journal-cta-heading { font-size: 1.2rem; }

  .single-hero { min-height: 50vw; padding-top: 7.5rem;}
  .single-hero-content { padding: 0 2rem 3.5rem; }
  .single-title { font-size: 1.5rem; }

  .single-wrap { padding: 3rem 2rem 4rem; }
  .single-container { grid-template-columns: 1fr; gap: 3rem; }
  .single-article { padding: 2rem 1.5rem 2.5rem; }
  .single-content { font-size: 0.95rem; }

  .single-sidebar { position: static; }

  .single-nav { padding: 2rem; }
  .single-nav-inner { flex-direction: column; gap: 1.5rem; }
  .single-nav-prev,
  .single-nav-next { width: 100%; text-align: left; }
  .single-nav-link--next .single-nav-ttl { margin-left: 0; }

}


/* ==============================================
   ORAMEL JOURNAL — 追加修正分
   journal_diff.css の末尾に追記してください
   ============================================== */

/* ── Journal全ページ共通: ヘッダーを初期状態からスクロール済みスタイルに ── */
/* トップページはヒーロー画像上で透明が正しいが、
   Journalページはクリーム背景なので最初から白背景・ダーク文字にする */
.journal-page header,
.single-page header {
  background: rgba(255,253,248,0.96) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}
.journal-page header .logo,
.single-page header .logo {
  color: var(--gold-dark) !important;
}
.journal-page header .logo-ruby,
.single-page header .logo-ruby {
  color: var(--text-muted) !important;
}
.journal-page header nav a,
.single-page header nav a {
  color: var(--text-muted) !important;
}
.journal-page header nav a:hover,
.single-page header nav a:hover {
  color: var(--gold) !important;
}

/* ── 記事詳細ページ: ローダーを非表示 ── */
.single-page #loader {
  display: none !important;
}


/* ==============================================
   ORAMEL JOURNAL — 記事本文スタイル追記分
   既存 style.css の末尾に追記してください
   ============================================== */

/* ============================================================
   SINGLE CONTENT — 本文要素スタイル詳細
   ============================================================ */

/* ── リード文（最初のp） ── */
.single-content > p:first-of-type {
  font-size: 1.05rem;
  line-height: 2.7;
  color: var(--text);
  border-left: 3px solid var(--gold-light);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

/* ── H2 見出し ── */
.single-content h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin: 4rem 0 1.5rem;
  padding: 1.1rem 1.5rem;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
}
.single-content h2::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 4rem; height: 2px;
  background: var(--gold);
}

/* ── H3 見出し ── */
.single-content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.07em;
  line-height: 1.8;
  margin: 2.5rem 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.single-content h3::before {
  content: '';
  display: inline-block;
  width: 0.5rem; height: 0.5rem;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── 段落 ── */
.single-content p {
  font-size: 1rem;
  line-height: 2.65;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

/* ── 画像 ── */
.single-content img {
  width: 100%;
  display: block;
  margin: 2.5rem 0;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ── インラインリンク ── */
.single-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-color: rgba(139,105,20,0.4);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.single-content a:hover {
  color: var(--amber);
  text-decoration-color: var(--amber);
}

/* ── CTAリンク（まとめ下のリンク） ── */
.single-content p > a[href*="oramel"] {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  background: var(--gold);
  color: var(--brown);
  padding: 0.9rem 2.2rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.single-content p > a[href*="oramel"]::after {
  content: '→';
  font-size: 1rem;
}
.single-content p > a[href*="oramel"]:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(201,168,76,0.3);
}

/* ── まとめセクション（最後のH2以降） ── */
.single-content h2:last-of-type {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  color: var(--gold-light);
  border-left-color: var(--gold-light);
}
.single-content h2:last-of-type::before {
  background: var(--gold-light);
}

/* ── FAQ形式: H3が質問、次のpが回答 ── */
.single-content h3 + p {
  background: var(--warm-white);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 1.25rem 1.5rem;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  line-height: 2.3;
}

/* ── 注意点セクション用 blockquote ── */
.single-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.05);
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 2.3;
}

/* ── ul / ol ── */
.single-content ul,
.single-content ol {
  margin: 1.5rem 0 2rem;
  padding-left: 0;
  list-style: none;
}
.single-content ul li,
.single-content ol li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.75rem;
  font-size: 0.97rem;
  line-height: 2.1;
  color: var(--text-muted);
  font-weight: 300;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.single-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 0.4rem; height: 0.4rem;
  background: var(--gold);
  border-radius: 50%;
}
.single-content ol {
  counter-reset: ol-counter;
}
.single-content ol li {
  counter-increment: ol-counter;
}
.single-content ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0; top: 0.6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

/* ── strong / em ── */
.single-content strong {
  color: var(--brown);
  font-weight: 600;
}
.single-content em {
  font-style: italic;
  color: var(--text-muted);
}

/* ── 区切り線 ── */
.single-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  margin: 3.5rem 0;
}

/* ── テーブル ── */
.single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5rem 0;
  font-size: 0.9rem;
}
.single-content th {
  background: var(--cream);
  color: var(--brown);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(201,168,76,0.2);
  text-align: left;
}
.single-content td {
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--text-muted);
  line-height: 2;
  font-weight: 300;
}
.single-content tr:nth-child(even) td {
  background: rgba(201,168,76,0.04);
}

/* ============================================================
   RESPONSIVE — SP
   ============================================================ */
@media screen and (max-width: 969px) {

  .single-content > p:first-of-type {
    font-size: 0.97rem;
    line-height: 2.4;
    padding-left: 1rem;
  }

  .single-content h2 {
    font-size: 1.15rem;
    padding: 0.9rem 1.1rem;
    margin: 3rem 0 1.25rem;
  }

  .single-content h3 {
    font-size: 0.97rem;
  }

  .single-content p {
    font-size: 0.93rem;
    line-height: 2.4;
  }

  .single-content img {
    margin: 1.75rem 0;
  }

  .single-content p > a[href*="oramel"] {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.85rem 1.5rem;
  }

  .single-content h3 + p {
    padding: 1rem 1.1rem;
  }

  .single-content table {
    font-size: 0.82rem;
  }
  .single-content th,
  .single-content td {
    padding: 0.65rem 0.75rem;
  }
}


/* ==============================================
   ORAMEL JOURNAL — taxonomy / 404 / breadcrumb 追記分
   既存 style.css の末尾に追記してください
   ============================================== */

/* ============================================================
   BREADCRUMB — パンくずリスト
   ============================================================ */
.breadcrumb-wrap {
  background: var(--warm-white);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 0.85rem 4rem;
}
.breadcrumb {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 76rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.breadcrumb-item a {
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-current span {
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
}
.breadcrumb-sep {
  font-size: 0.75rem;
  color: rgba(201,168,76,0.5);
  line-height: 1;
  margin: 0 0.1rem;
}

@media screen and (max-width: 969px) {
  .breadcrumb-wrap { padding: 0.75rem 1.5rem; }
  .breadcrumb-item a,
  .breadcrumb-current span { font-size: 0.68rem; }
}

/* ============================================================
   SIDEBAR — TAGS ウィジェット
   ============================================================ */
.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sidebar-tag-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--text-muted);
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.7rem;
  text-decoration: none;
  transition: all 0.3s;
}
.sidebar-tag-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.sidebar-tag-count {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.72rem;
  color: rgba(201,168,76,0.55);
  transition: color 0.3s;
}
.sidebar-tag-link:hover .sidebar-tag-count { color: rgba(255,255,255,0.7); }

/* ============================================================
   ARCHIVE HERO — カテゴリー・タグ一覧ページ
   ============================================================ */
.archive-hero {
  background: var(--cream);
  padding: 10rem 4rem 5rem;
  text-align: center;
}
.archive-hero-inner { max-width: 52rem; margin: 0 auto; }

.archive-hero-type {
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  letter-spacing: 0.55em;
  color: rgba(201,168,76,0.6);
  display: block;
  margin-bottom: 1rem;
}
.archive-hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--brown);
  margin-bottom: 1rem;
  /* カテゴリー名の前後にゴールドの装飾 */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.archive-hero-title::before,
.archive-hero-title::after {
  content: '';
  width: 2rem; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.archive-hero-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-weight: 300;
  line-height: 2;
  margin-bottom: 1rem;
}
.archive-hero-count {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.archive-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.7rem 1.4rem;
  transition: all 0.3s;
}
.archive-back-btn:hover { border-color: var(--gold); color: var(--gold); }

@media screen and (max-width: 969px) {
  .archive-hero { padding: 7rem 2rem 3.5rem; }
  .archive-hero-title { font-size: 1.5rem; }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.notfound-section {
  background: var(--warm-white);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 4rem 8rem;
}
.notfound-inner {
  max-width: 52rem;
  width: 100%;
  text-align: center;
}
.notfound-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 9rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(201,168,76,0.18);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.notfound-tag {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.55em;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.notfound-tag::before,
.notfound-tag::after {
  content: '';
  width: 2rem; height: 1px;
  background: var(--gold);
}
.notfound-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--brown);
  margin-bottom: 1.25rem;
}
.notfound-body {
  font-size: 0.95rem;
  line-height: 2.4;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}
.notfound-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem auto;
  max-width: 20rem;
}
.notfound-divider::before,
.notfound-divider::after {
  content: '';
  flex: 1; height: 1px;
  background: rgba(201,168,76,0.3);
}
.notfound-ornament {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--gold);
}
.notfound-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.notfound-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  padding: 1rem 2.2rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  transition: all 0.3s;
}
.notfound-btn--primary {
  background: var(--gold);
  color: var(--brown);
}
.notfound-btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(201,168,76,0.3);
}
.notfound-btn--secondary {
  border: 1px solid rgba(62,42,15,0.25);
  color: var(--brown);
}
.notfound-btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* 最近の記事 */
.notfound-recent { text-align: left; }
.notfound-recent-label {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.notfound-recent-label::after {
  content: '';
  flex: 1; height: 1px;
  background: rgba(201,168,76,0.25);
}
.notfound-recent-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.notfound-recent-item {
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
}
.notfound-recent-link {
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.85rem;
  align-items: flex-start;
  transition: opacity 0.2s;
}
.notfound-recent-link:hover { opacity: 0.7; }
.notfound-recent-thumb {
  width: 4.5rem; height: 4.5rem;
  flex-shrink: 0;
  overflow: hidden;
}
.notfound-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.notfound-recent-date {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.notfound-recent-title {
  font-family: "Noto Serif JP", serif;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--brown);
  font-weight: 400;
}

@media screen and (max-width: 969px) {
  .notfound-section { padding: 8rem 2rem 5rem; }
  .notfound-num { font-size: 6rem; }
  .notfound-title { font-size: 1.35rem; }
  .notfound-recent-list { grid-template-columns: 1fr; }
  .notfound-actions { flex-direction: column; align-items: center; }
  .notfound-btn { width: 100%; justify-content: center; }
}


/* ==============================================
   ORAMEL JOURNAL — archive 説明文 追記分
   既存 style.css の末尾に追記してください
   ============================================== */

/* ── 説明文ありの場合、ヒーローのpadding下を広げる ── */
.archive-hero--has-desc {
  padding-bottom: 6rem;
}

/* ── 説明文ブロック ── */
.archive-desc-block {
  max-width: 46rem;
  margin: 0 auto;
  text-align: left;
}

/* 区切りライン */
.archive-desc-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem 0 2rem;
}
.archive-desc-divider::before,
.archive-desc-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.3);
}
.archive-desc-ornament {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--gold);
  line-height: 1;
}

/* 説明文本文 */
.archive-desc-text {
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  line-height: 2.6;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  font-weight: 300;
}
.archive-desc-text p {
  margin-bottom: 1.5rem;
}
.archive-desc-text p:last-child {
  margin-bottom: 0;
}

/* 件数カウント */
.archive-hero-count {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.88rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}
.archive-hero-count span {
  font-size: 1.15rem;
  color: var(--gold-dark);
}

/* SP */
@media screen and (max-width: 969px) {
  .archive-hero--has-desc { padding-bottom: 4rem; }
  .archive-desc-text { font-size: 0.9rem; line-height: 2.3; }
  .archive-desc-block { text-align: left; }
  .archive-desc-divider { margin: 2rem 0 1.5rem; }
}

/* single.php の追記分 末尾 @media (max-width: 969px) 内に追加 */
@media screen and (max-width: 969px) {

  /* タイトルが長い場合の文字サイズ調整 */
  .single-title {
    font-size: 1.35rem;
    line-height: 1.65;
  }

}