/* =============================
   Pâtisserie Noan — Nina's Style
   ============================= */

:root {
  --white:        #FFFFFF;
  --pink:         #FAE6EA;       /* メインのブラッシュピンク */
  --pink-light:   #FEF3F5;       /* 薄いピンク */
  --pink-deep:    #F2D4DA;       /* 少し濃いピンク */
  --pink-card:    #FDF5F7;       /* カード背景 */
  --rose:         #C0788A;       /* ローズアクセント */
  --rose-dark:    #8C4A5C;       /* 濃いローズ */
  --rose-pale:    #EED0D8;       /* 薄いローズ */
  --gold:         #B8973C;       /* ゴールド（リボン等） */
  --gold-light:   #D4B865;
  --brown:        #3A2020;       /* テキストダーク */
  --brown-mid:    #7A4848;       /* テキストミッド */
  --brown-light:  #A07878;       /* テキストライト */
  --text:         #3A2020;
  --text-mid:     #7A4848;
  --text-light:   #A09090;
}

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

body {
  font-family: 'Noto Serif JP', 'Georgia', serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.9;
}
html { overflow-x: hidden; }

a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.68; }
img { display: block; max-width: 100%; }

/* ===== BGM（テーマソング） ===== */
.bgm-intro {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 2000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(192, 120, 138, 0.3);
  box-shadow: 0 8px 32px rgba(140, 74, 92, 0.18);
  padding: 14px 22px;
  display: none;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}
.bgm-intro:not(.hidden) {
  display: block;
  animation: bgmIntroIn 0.5s ease forwards;
}
@keyframes bgmIntroIn {
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.bgm-intro.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
  display: none;
}
.bgm-intro-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.bgm-intro-icon {
  font-size: 18px;
  color: var(--rose);
  font-family: 'Cormorant Garamond', serif;
}
.bgm-intro-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.08em;
}
.bgm-intro-btn {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 7px 18px;
  border: 1px solid var(--rose);
  background: var(--rose);
  color: white;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.bgm-intro-btn:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}
.bgm-intro-btn-secondary {
  background: transparent;
  color: var(--rose);
}
.bgm-intro-btn-secondary:hover {
  background: var(--pink);
  color: var(--rose-dark);
}

.bgm-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--rose);
  color: var(--rose-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(140, 74, 92, 0.18);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.bgm-toggle:hover {
  transform: scale(1.07);
  background: var(--rose);
  color: white;
}
.bgm-toggle.playing {
  background: var(--rose);
  color: white;
}
.bgm-icon-play { position: relative; z-index: 2; line-height: 1; }
.bgm-icon-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--rose);
  opacity: 0;
  pointer-events: none;
}
.bgm-toggle.playing .bgm-icon-pulse {
  animation: bgmPulse 2.2s ease-out infinite;
}
@keyframes bgmPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}

@media (max-width: 600px) {
  .bgm-toggle { width: 46px; height: 46px; font-size: 19px; bottom: 18px; right: 18px; }
  .bgm-intro { bottom: 80px; padding: 12px 18px; max-width: calc(100% - 32px); }
  .bgm-intro-text { font-size: 12px; }
}

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(192, 120, 138, 0.18);
  height: 68px;
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(140, 74, 92, 0.1); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.nav-link:hover { opacity: 0.6; }

.nav-link .en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--brown);
}
.nav-link .ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--brown-mid);
}

.nav-center-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-center-logo:hover { opacity: 0.7; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--brown);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.99);
  border-top: 1px solid rgba(192, 120, 138, 0.15);
  padding: 8px 0 16px;
}
.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 13px 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--brown);
  border-bottom: 1px solid rgba(192, 120, 138, 0.1);
  transition: background 0.15s;
}
.mobile-link:hover { background: var(--pink); opacity: 1; }

/* ===== HERO ===== */
.hero { margin-top: 68px; }

.hero-img-wrap {
  position: relative;
  width: 100%;
  background: var(--pink-light);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  max-height: 88vh;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 80px 24px;
  background: linear-gradient(150deg, #FEF3F5 0%, #FAE6EA 45%, #F5D8DE 75%, #FAE6EA 100%);
  text-align: center;
}
.hero-fallback-inner { max-width: 520px; }

.fallback-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--brown-mid);
  margin-bottom: 40px;
}
.fallback-title-wrap { margin-bottom: 32px; }
.fallback-pre {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--rose);
  margin-bottom: 4px;
}
.fallback-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 14vw, 100px);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--brown);
  line-height: 1;
  margin: 4px 0 8px;
}
.fallback-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: var(--brown-mid);
}
.fallback-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--rose);
  line-height: 1.9;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.fallback-hint {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  opacity: 0.6;
}

/* ===== HERO CAPTION (NOAN / depuis 2019 — centered, in illustration frame) ===== */
.hero-img-wrap { position: relative; }
.hero-caption {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  z-index: 5;
  padding: 16px 32px;
  background: radial-gradient(ellipse at center, rgba(253,245,228,0.92) 0%, rgba(253,245,228,0.78) 60%, rgba(253,245,228,0) 100%);
  line-height: 1.15;
  max-width: min(380px, 38%);
}
.hero-caption-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #4A2E20;
  line-height: 1.1;
}
.hero-caption-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(9px, 0.85vw, 11px);
  font-weight: 400;
  letter-spacing: 0.32em;
  color: #6B4838;
  margin-top: 6px;
  line-height: 1.4;
}
.hero-caption-since {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.18em;
  color: #8C5C3E;
  margin-top: 8px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero-caption { max-width: 70%; top: 40%; padding: 12px 20px; }
}

/* ===== HERO SUBTITLE (small text line below hero image) ===== */
.hero-subtitle {
  text-align: center;
  padding: 14px 24px;
  background: var(--pink-light);
  border-top: 1px solid rgba(192, 120, 138, 0.15);
}
.hero-since {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.28em;
  color: var(--rose);
}

/* ===== HERO STRIP ===== */
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(192, 120, 138, 0.2);
  background: var(--pink);
}
.hero-strip.strip-5 {
  grid-template-columns: repeat(5, 1fr);
}
.strip-period, .strip-note {
  display: inline-block;
  font-size: 9.5px;
  color: var(--rose);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 16px;
  border-right: 1px solid rgba(192, 120, 138, 0.15);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  cursor: pointer;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--pink-deep); opacity: 1; }

.strip-icon-ring {
  width: 56px; height: 56px;
  border: 1.5px solid rgba(192, 120, 138, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.strip-item:hover .strip-icon-ring { border-color: var(--rose); }

.strip-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--brown);
  margin-bottom: 5px;
}
.strip-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 10.5px;
  font-weight: 300;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ===== SECTION COMMON ===== */
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 88px 36px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 18px;
}
.label-line {
  flex: 1;
  max-width: 72px;
  height: 1px;
  background: var(--rose);
  opacity: 0.4;
}
.label-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.44em;
  color: var(--rose);
}

.section-title-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 400;
  text-align: center;
  color: var(--brown);
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}
.section-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 12.5px;
  font-weight: 300;
  text-align: center;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  margin-bottom: 52px;
}

/* ===== CHEF'S CHOICE — シェフのおすすめ ===== */
.section-chef {
  background: var(--white);
  border-top: 1px solid rgba(192, 120, 138, 0.15);
}

.chef-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}

.chef-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--pink-light);
  border: 1px solid rgba(192, 120, 138, 0.2);
  display: flex; align-items: center; justify-content: center;
}
.chef-img-wrap.no-img { background: var(--pink-light); }
.chef-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.chef-img-wrap:hover .chef-img { transform: scale(1.03); }

.chef-text { padding: 0 12px; }

.chef-tag {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--rose);
  border-top: 1px solid var(--rose);
  border-bottom: 1px solid var(--rose);
  padding: 4px 12px;
  margin-bottom: 18px;
}

.chef-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin-bottom: 18px;
}

.chef-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text);
  line-height: 2.1;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.chef-note {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  font-weight: 300;
}

@media (max-width: 768px) {
  .chef-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .chef-text { text-align: center; padding: 0; }
}

/* Chef's Choice — Coming Soon */
.chef-coming {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: var(--pink-light);
  border: 1px solid rgba(192, 120, 138, 0.2);
}
.chef-coming-ornament {
  margin-bottom: 20px;
  animation: dandanBob 4s ease-in-out infinite;
}
.chef-coming-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--rose);
  margin-bottom: 10px;
}
.chef-coming-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--brown);
  margin-bottom: 16px;
}
.chef-coming-note {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ===== CONCEPT ===== */
.section-concept {
  background: var(--pink);
  border-top: 1px solid rgba(192, 120, 138, 0.15);
  border-bottom: 1px solid rgba(192, 120, 138, 0.15);
  /* subtle floral pattern overlay */
  background-image:
    radial-gradient(circle at 20% 30%, rgba(192,120,138,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(192,120,138,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3) 0%, transparent 60%);
}
.ornament-line { text-align: center; margin: 20px 0 36px; }

.concept-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  line-height: 2.4;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.concept-fr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  color: var(--rose);
  letter-spacing: 0.08em;
}

/* ===== PRODUCTS ===== */
.section-products { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.products-grid.products-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.products-grid.products-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== WHOLE CAKE ===== */
.section-whole {
  background: var(--pink);
  border-top: 1px solid rgba(192, 120, 138, 0.15);
  background-image:
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.4) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(192,120,138,0.05) 0%, transparent 50%);
}

.whole-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.whole-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(192, 120, 138, 0.2);
  display: flex; align-items: center; justify-content: center;
}
.whole-img-wrap.no-img { background: var(--white); }
.whole-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.whole-img-wrap:hover .whole-img { transform: scale(1.03); }

.whole-text { padding: 0 12px; }

.whole-tag {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--rose);
  border-top: 1px solid var(--rose);
  border-bottom: 1px solid var(--rose);
  padding: 4px 12px;
  margin-bottom: 18px;
}

.whole-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin-bottom: 18px;
}

.whole-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text);
  line-height: 2.1;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}

.whole-points {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}
.whole-points li {
  font-family: 'Noto Serif JP', serif;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--rose);
  letter-spacing: 0.08em;
  line-height: 2;
}

.whole-note {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  font-weight: 300;
}

@media (max-width: 768px) {
  .whole-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .whole-text { text-align: center; padding: 0; }
  .whole-points { display: inline-block; text-align: left; }
}

/* ===== KAKIGORI ===== */
.section-kakigori {
  background: var(--white);
  border-top: 1px solid rgba(192, 120, 138, 0.15);
}

.kakigori-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto 24px;
}

.kakigori-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--pink-light);
  border: 1px solid rgba(192, 120, 138, 0.2);
  display: flex; align-items: center; justify-content: center;
}
.kakigori-img-wrap.no-img { background: var(--pink-light); }
.kakigori-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.kakigori-img-wrap:hover .kakigori-img { transform: scale(1.03); }

.kakigori-text { padding: 0 12px; }

.kakigori-tag {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--rose);
  border-top: 1px solid var(--rose);
  border-bottom: 1px solid var(--rose);
  padding: 4px 12px;
  margin-bottom: 18px;
}

.kakigori-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin-bottom: 8px;
}

.kakigori-period {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}

.kakigori-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text);
  line-height: 2.1;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}

.kakigori-points {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kakigori-points li {
  font-family: 'Noto Serif JP', serif;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--rose);
  letter-spacing: 0.08em;
  line-height: 2;
}

@media (max-width: 768px) {
  .kakigori-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .kakigori-text { text-align: center; padding: 0; }
  .kakigori-points { display: inline-block; text-align: left; }
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(192, 120, 138, 0.15);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(140, 74, 92, 0.12); }

.product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap.no-img { background: var(--pink-light); }

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img { transform: scale(1.05); }

.product-img-alt {
  position: absolute;
  font-size: 10px;
  color: var(--brown-light);
  letter-spacing: 0.1em;
  pointer-events: none;
}
.product-img-wrap:not(.no-img) .product-img-alt { display: none; }

.product-info {
  padding: 16px 14px;
  border-top: 1px solid rgba(192, 120, 138, 0.12);
}
.product-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}
.product-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 10.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

.products-note {
  font-size: 10.5px;
  font-weight: 300;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.06em;
}

/* ===== 画像はイメージです（小さな注記） ===== */
.image-disclaimer {
  font-size: 9.5px;
  font-weight: 300;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.06em;
  margin-top: 8px;
  margin-bottom: -16px;
  opacity: 0.7;
  font-style: italic;
}

/* ===== BAKED (リボン型フィナンシェ) ===== */
.section-baked {
  background: var(--pink-light);
  border-top: 1px solid rgba(192, 120, 138, 0.15);
}

.baked-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}

.baked-hero-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--pink);
  border: 1px solid rgba(192, 120, 138, 0.2);
  display: flex; align-items: center; justify-content: center;
}
.baked-hero-img-wrap.no-img { background: var(--pink); }
.baked-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.baked-hero-img-wrap:hover .baked-hero-img { transform: scale(1.03); }

.baked-hero-text { padding: 0 12px; }
.baked-tag,
.baked-feature-tag {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--rose);
  border-top: 1px solid var(--rose);
  border-bottom: 1px solid var(--rose);
  padding: 4px 12px;
  margin-bottom: 18px;
}
.baked-title,
.baked-feature-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin-bottom: 18px;
}
.baked-body,
.baked-feature-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text);
  line-height: 2.1;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.baked-flavors {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin: 0;
  padding: 0;
}
.baked-flavors li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif JP', serif;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.1em;
}
.flavor-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.dot-matcha { background: #9DBE6A; }  /* ピスタチオ */
.dot-lemon  { background: #F2C94C; }  /* レモン */
.dot-berry  { background: #F7C5CE; border: 1px solid #E8A8B4; }  /* いちごミルク */
.dot-choco  { background: #6B3F2A; }  /* ショコラ */
.dot-rouge  { background: #C8425A; }  /* ルージュ */

.baked-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 32px;
}

.baked-feature-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--pink);
  border: 1px solid rgba(192, 120, 138, 0.2);
  display: flex; align-items: center; justify-content: center;
}
.baked-feature-img-wrap.no-img { background: var(--pink); }
.baked-feature-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.baked-feature-img-wrap:hover .baked-feature-img { transform: scale(1.03); }

.baked-feature-text { padding: 0 12px; }

@media (max-width: 768px) {
  .baked-hero,
  .baked-feature {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .baked-feature-text { order: -1; }
  .baked-hero-text,
  .baked-feature-text { text-align: center; padding: 0; }
  .baked-flavors { max-width: 320px; margin: 0 auto; }
}

/* ===== GIFT ===== */
.section-gift {
  background: var(--pink);
  border-top: 1px solid rgba(192, 120, 138, 0.15);
}
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gift-card { text-align: center; }

.gift-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(192, 120, 138, 0.18);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gift-img-wrap .product-img { width: 100%; height: 100%; object-fit: cover; }
.gift-img-wrap.no-img { background: var(--pink-light); }

.gift-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.gift-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 11.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ===== MEDIA (Theme Song + YouTube) ===== */
.section-media {
  background: var(--white);
  border-top: 1px solid rgba(192, 120, 138, 0.15);
  border-bottom: 1px solid rgba(192, 120, 138, 0.15);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.media-card {
  background: var(--pink-light);
  border: 1px solid rgba(192, 120, 138, 0.2);
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.2s;
}
a.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(140, 74, 92, 0.15);
  opacity: 1;
}
a.media-card:hover .dandan-bear { transform: scale(1.05) rotate(-2deg); }

.dandan-bear {
  margin: 8px 0 16px;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 6px 14px rgba(140, 74, 92, 0.12));
}
.dandan-bear svg {
  animation: dandanBob 4s ease-in-out infinite;
}
.dandan-photo {
  width: 170px;
  height: 170px;
  object-fit: contain;
  animation: dandanBob 4s ease-in-out infinite;
}
@keyframes dandanBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.media-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.18em;
  color: var(--rose);
  margin-top: -4px;
  margin-bottom: 12px;
}

.media-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 6px 14px;
  border-top: 1px solid var(--rose);
  border-bottom: 1px solid var(--rose);
}
.media-tag-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--rose);
}
.media-tag-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--brown-mid);
}

.music-visual {
  margin: 8px 0 20px;
  animation: musicSpin 16s linear infinite;
  filter: drop-shadow(0 6px 18px rgba(140, 74, 92, 0.15));
}
@keyframes musicSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.media-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.14em;
  line-height: 1.5;
  margin-bottom: 10px;
}
.media-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.theme-audio {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 12px;
  display: block;
  border-radius: 0;
  outline: 1px solid rgba(192, 120, 138, 0.3);
}

.media-credit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.18em;
  color: var(--rose);
  margin-top: 4px;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  border: 1px solid rgba(192, 120, 138, 0.2);
  background: var(--brown);
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.media-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 24px;
  border: 1px solid var(--rose);
  color: var(--rose-dark);
  font-family: 'Noto Serif JP', serif;
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.14em;
  transition: background 0.2s, color 0.2s;
}
.media-btn:hover {
  background: var(--rose);
  color: white;
  opacity: 1;
}

@media (max-width: 768px) {
  .media-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== ONLINE SHOP ===== */
.section-shop { background: var(--rose-dark); }
.shop-banner {
  max-width: 680px;
  margin: 0 auto;
  padding: 96px 36px;
  text-align: center;
}
.shop-label-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.44em;
  color: var(--rose-pale);
  margin-bottom: 14px;
}
.shop-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 300;
  color: #FFFFFF;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}
.shop-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 2.1;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.btn-shop {
  display: inline-block;
  padding: 15px 44px;
  border: 1px solid var(--rose-pale);
  color: var(--rose-pale);
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  transition: background 0.2s, color 0.2s;
}
.btn-shop:hover { background: var(--rose-pale); color: var(--rose-dark); opacity: 1; }

.btn-shop-disabled {
  display: inline-block;
  padding: 15px 44px;
  border: 1px solid rgba(238, 208, 216, 0.4);
  color: rgba(238, 208, 216, 0.65);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.22em;
  cursor: default;
  background: transparent;
}

.btn-shop-disabled {
  cursor: default;
  opacity: 0.55;
  font-style: italic;
}
.btn-shop-disabled:hover { background: transparent; color: var(--rose-pale); opacity: 0.55; }

/* ===== NEWS ===== */
.section-news {
  background: var(--pink);
  border-top: 1px solid rgba(192, 120, 138, 0.15);
}
.news-list { list-style: none; border-top: 1px solid rgba(192, 120, 138, 0.2); margin-top: 40px; }
.news-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(192, 120, 138, 0.12);
  flex-wrap: wrap;
}
.news-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--rose);
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-tag {
  font-size: 10px;
  font-weight: 300;
  padding: 2px 10px;
  border: 1px solid rgba(192, 120, 138, 0.45);
  color: var(--rose);
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.05em;
}

/* ===== ACCESS ===== */
.section-access {
  background: var(--white);
  border-top: 1px solid rgba(192, 120, 138, 0.15);
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 44px;
}
.access-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(192, 120, 138, 0.12);
  align-items: baseline;
}
.access-row:last-child { border-bottom: none; }
.access-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--rose);
  padding-top: 2px;
}
.access-value {
  font-family: 'Noto Serif JP', serif;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.9;
}
.access-note {
  font-size: 11px;
  color: var(--text-light);
}
.ig-link {
  display: inline-flex;
  align-items: center;
  color: var(--rose-dark);
  font-weight: 400;
  transition: color 0.2s;
}
.ig-link:hover { color: var(--rose); opacity: 1; }
.access-map-area {
  background: var(--pink-light);
  border: 1px solid rgba(192, 120, 138, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border-radius: 1px;
}
.map-placeholder { text-align: center; }
.btn-map {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid rgba(192, 120, 138, 0.45);
  color: var(--rose-dark);
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  transition: background 0.2s;
}
.btn-map:hover { background: var(--pink); opacity: 1; }

/* ===== FOOTER ===== */
#footer {
  background: var(--rose-dark);
  color: #fff;
  padding: 64px 36px 40px;
}
.footer-inner { max-width: 1080px; margin: 0 auto; text-align: center; }

.footer-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--rose-pale);
  margin-bottom: 4px;
}
.footer-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: rgba(238, 208, 216, 0.7);
  margin-bottom: 4px;
}
.footer-since {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(238, 208, 216, 0.6);
  margin-bottom: 28px;
}
.footer-ornament { margin-bottom: 24px; }
.footer-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(238, 208, 216, 0.65);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--rose-pale); opacity: 1; }
.footer-copyright {
  font-size: 10px;
  font-weight: 300;
  color: rgba(238, 208, 216, 0.35);
  letter-spacing: 0.1em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .new-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-strip.strip-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-center-logo { margin: 0 auto; }
  .hamburger { display: flex; }

  .hero-strip,
  .hero-strip.strip-5 { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: none; }

  .hero-caption { padding: 10px 16px; right: 12px; bottom: 12px; }
  .hero-caption-en { font-size: 11px; }

  .gift-grid { grid-template-columns: 1fr 1fr; }
  .new-grid { grid-template-columns: 1fr 1fr; }

  .access-grid { grid-template-columns: 1fr; }
  .access-map-area { min-height: 200px; }

  .section-inner { padding: 64px 24px; }
  .shop-banner { padding: 64px 24px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gift-grid { grid-template-columns: 1fr; }
  .new-grid { grid-template-columns: 1fr; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .access-row { grid-template-columns: 80px 1fr; gap: 12px; }
}
