/* ========================================
   Patisserie Rose Pale - Main Stylesheet
   ======================================== */

/* -- Reset & Base -- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-rose: #c9788a;
  --color-rose-light: #e8b4c0;
  --color-rose-pale: #f5dde3;
  --color-rose-dark: #9e5566;
  --color-cream: #fdf6f0;
  --color-white: #ffffff;
  --color-text: #3a2a2a;
  --color-text-light: #7a6a6a;
  --color-gold: #c9a96e;
  --color-gold-light: #e8d5b0;
  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-display: 'Allura', cursive;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   IMAGE PLACEHOLDERS
   ======================================== */
/* グレープレースホルダー共通 */
.img-placeholder {
  background: #c8c8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  letter-spacing: 0.15em;
  width: 100%;
}

.img-placeholder::after {
  content: 'PHOTO';
}

/* about-image 内のプレースホルダー */
.about-image .img-placeholder {
  height: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

/* product-card 内のプレースホルダー */
.product-card .img-placeholder {
  height: 240px;
}

/* gallery-item 内のプレースホルダー */
.gallery-item .img-placeholder {
  min-height: 280px;
  height: 100%;
  transition: transform 0.6s ease;
}

.gallery-item:hover .img-placeholder {
  transform: scale(1.08);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ========================================
   HEADER
   ======================================== */
#site-header {
  position: fixed;
  top: -90px; /* 初期状態では画面上部に隠す */
  left: 0;
  width: 100%;
  z-index: 1000;
  opacity: 0;
  pointer-events: none; /* 非表示時は操作不可にする */
  transition: top 0.4s cubic-bezier(0.25, 1, 0.3, 1), 
              opacity 0.4s cubic-bezier(0.25, 1, 0.3, 1), 
              background var(--transition), 
              box-shadow var(--transition);
}

#site-header.scrolled {
  top: 0; /* スクロール時にスッと降りてくる */
  opacity: 1;
  pointer-events: all;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo-img {
  height: 64px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease, height 0.3s ease;
}

#site-header.scrolled .site-logo-img {
  height: 48px; /* スクロール時にロゴを少し小さくしてスタイリッシュに */
}

.site-logo:hover .site-logo-img {
  transform: scale(1.03);
}

@media (max-width: 640px) {
  .site-logo-img {
    height: 48px; /* モバイル端末に最適化された少し大きめの高さ */
  }
  #site-header.scrolled .site-logo-img {
    height: 38px;
  }
}

/* Hamburger menu button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger-btn span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--color-text);
  transition: var(--transition);
  transform-origin: center;
}

#site-header.scrolled .hamburger-btn span {
  background: var(--color-text);
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* When header is transparent (top of page, hero section) */
.header-transparent .hamburger-btn span {
  background: var(--color-white);
}

.header-transparent .logo-en {
  color: var(--color-rose-light);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.header-transparent .logo-ja {
  color: rgba(255,255,255,0.8);
}

/* Navigation overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(253, 246, 240, 0.97);
  backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay nav ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}

.nav-overlay nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.nav-overlay nav ul li a .nav-en {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--color-rose);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-overlay nav ul li a .nav-ja {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--color-text-light);
}

.nav-overlay nav ul li a:hover .nav-en {
  color: var(--color-rose-dark);
  transform: scale(1.05);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-bg-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  animation: hero-slideshow-5 20s infinite;
  animation-fill-mode: both;
}

.hero-bg-slide:nth-child(1) { animation-delay: 0s; }
.hero-bg-slide:nth-child(2) { animation-delay: 4s; }
.hero-bg-slide:nth-child(3) { animation-delay: 8s; }
.hero-bg-slide:nth-child(4) { animation-delay: 12s; }
.hero-bg-slide:nth-child(5) { animation-delay: 16s; }

@keyframes hero-slideshow-5 {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  5% {
    opacity: 1;
  }
  15% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 0;
    transform: scale(0.98);
  }
  100% {
    opacity: 0;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 20, 25, 0.45) 0%,
    rgba(180, 100, 120, 0.25) 50%,
    rgba(50, 20, 25, 0.35) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 20px;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--color-rose-light);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.5s forwards;
  text-transform: uppercase;
}

.hero-title-en {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-title-ja {
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--color-rose-light);
  margin: 0 auto 16px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}

.hero-tagline {
  font-size: 24px; /* 16pxから拡大して目立たせる */
  font-weight: 500; /* 文字に中太の太さを持たせる */
  line-height: 1.8; /* 改行時のエレガントな行間 */
  letter-spacing: 0.3em; /* 文字間をさらに広げてプレミアムな質感に */
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6), 0 0 10px rgba(0, 0, 0, 0.3); /* シャドウを強めて視認性向上 */
  text-align: center;
  opacity: 0;
  transform: translateY(25px);
  filter: blur(8px);
  transition: opacity 2s cubic-bezier(0.25, 1, 0.3, 1), 
              transform 2s cubic-bezier(0.25, 1, 0.3, 1), 
              filter 2s cubic-bezier(0.25, 1, 0.3, 1);
  transition-delay: 1.2s; /* 1.2秒のディレイで上品に登場 */
}

.hero-section.loaded .hero-tagline {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite 2s;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@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; }
}

/* ========================================
   CALENDAR SECTION
   ======================================== */
.calendar-section {
  padding: 80px 40px 60px;
  background: var(--color-white);
  text-align: center;
}

/* 凡例 */
.cal-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--color-text);
}
.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cal-legend-dot {
  width: 24px;
  height: 18px;
  border-radius: 0;
  border: 1px solid #8c827e;
  flex-shrink: 0;
}
.cal-legend-closed {
  background: #ffaf40;
}

/* 2カラム月グリッド */
.cal-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 24px;
}

/* 月ブロック */
.cal-month-block {
  background: transparent;
  overflow: hidden;
}

/* 月ヘッダー */
.cal-month-header {
  font-family: var(--font-sans);
  color: var(--color-text);
  padding: 10px 4px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: left;
  margin-bottom: 8px;
}

/* テーブル全体の枠線 */
.cal-table {
  border-top: 1px solid #8c827e;
  border-left: 1px solid #8c827e;
  background: var(--color-white);
}

/* 曜日ヘッダー行 */
.cal-dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #f5f4f0;
}
.cal-dow-cell {
  padding: 10px 4px;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  border-right: 1px solid #8c827e;
  border-bottom: 1px solid #8c827e;
  color: #4a3a3a;
}
.cal-dow-cell.sun { color: #c95a75; }
.cal-dow-cell.sat { color: #e58ca3; }

/* 日付グリッド */
.cal-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

/* 個別日セル */
.cal-cell {
  aspect-ratio: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: normal;
  border-right: 1px solid #8c827e;
  border-bottom: 1px solid #8c827e;
  color: #4a3a3a;
  background: var(--color-white);
  position: relative;
}

.cal-cell.cal-empty {
  background: var(--color-white);
}

/* 日曜 */
.cal-cell.cal-sun .cal-day-num { color: #c95a75; }
/* 土曜 */
.cal-cell.cal-sat .cal-day-num { color: #e58ca3; }

/* 定休日 */
@keyframes calClosedFadeIn {
  from {
    background-color: var(--color-white);
  }
  to {
    background-color: #ffaf40;
  }
}

.cal-cell.cal-closed {
  animation: calClosedFadeIn 0.5s ease-out forwards;
}
.cal-cell.cal-closed .cal-day-num {
  color: #4a3a3a;
}

/* 今日（数字を丸で囲む） */
.cal-cell.cal-today .cal-day-num {
  border: 2px solid var(--color-rose);
  background: var(--color-rose-pale);
  color: var(--color-rose-dark);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.cal-day-num {
  font-size: 14px;
  line-height: 1;
}

/* レスポンシブ */
@media (max-width: 760px) {
  .cal-grid-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .calendar-section {
    padding: 60px 20px;
  }
}
@media (max-width: 480px) {
  .cal-cell {
    font-size: 13px;
  }
  .cal-dow-cell {
    font-size: 13px;
    padding: 8px 2px;
  }
}


/* ========================================
   SECTION TITLES
   ======================================== */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .title-en {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  color: var(--color-rose);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.section-title .title-ja {
  display: block;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--color-text-light);
}

.section-title .title-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-rose-light);
  margin: 12px auto 0;
}

/* White text variant */
.section-title.white .title-en { color: var(--color-rose-light); }
.section-title.white .title-ja { color: rgba(255,255,255,0.7); }
.section-title.white .title-line { background: rgba(255,255,255,0.5); }

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 100px 40px;
  background: var(--color-cream);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--color-rose-light);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-image img { position: relative; z-index: 1; }

.about-text .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.about-description {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

.about-signature {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-rose);
  margin-bottom: 30px;
}

/* アバウトセクション（写真なし・中央揃え） */
.about-inner.about-centered {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-inner.about-centered .about-text {
  max-width: 100%;
}

.about-inner.about-centered .about-text .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.about-inner.about-centered .about-text .section-title .title-line {
  margin: 12px auto 0;
}

.about-inner.about-centered .about-signature {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--color-rose);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-align: center;
}

.about-inner.about-centered .about-description {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text-light);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--color-rose);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 0.2em;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201, 120, 138, 0.3);
}

.btn-primary:hover {
  background: var(--color-rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 120, 138, 0.4);
}

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--color-rose);
  color: var(--color-rose);
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 0.2em;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--color-rose);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #3a2a2a 0%, #5a3040 100%);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,120,138,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

/* ── ギャラリースライダースタイル ── */
.gallery-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.gallery-slider {
  position: relative;
  height: 480px;
  width: 100%;
  background: #231818;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}

.gallery-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

/* スライド切り替え時の微小なズーム（Ken Burns効果） */
.gallery-slide.active img {
  transform: scale(1.06);
}

/* キャプション（グラデーションオーバーレイと文字） */
.gallery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(20, 10, 12, 0.85) 0%, rgba(20, 10, 12, 0.3) 60%, transparent 100%);
  padding: 40px 60px 50px;
  color: var(--color-white);
  text-align: center;
  z-index: 3;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.gallery-slide.active .gallery-slide-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-slide-caption h3 {
  font-family: var(--font-display), var(--font-sans);
  font-size: clamp(20px, 3.5vw, 26px);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.gallery-slide-caption p {
  font-size: 13px;
  opacity: 0.85;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

/* 矢印ボタン */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s, transform 0.3s, border-color 0.3s;
}

.slider-btn:hover {
  background: var(--color-rose);
  border-color: var(--color-rose-light);
  transform: translateY(-50%) scale(1.08);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.prev-btn { left: 24px; }
.next-btn { right: 24px; }

/* ドットインジケーター */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
  background: var(--color-rose);
  transform: scale(1.25);
}

@media (max-width: 600px) {
  .gallery-slider {
    height: 360px;
  }
  .gallery-slide-caption {
    padding: 30px 24px 40px;
  }
  .slider-btn {
    width: 36px;
    height: 36px;
  }
  .slider-btn svg {
    width: 16px;
    height: 16px;
  }
  .prev-btn { left: 12px; }
  .next-btn { right: 12px; }
}

/* ========================================
   SHOP INFO / FOOTER
   ======================================== */
.info-section {
  padding: 80px 40px 60px;
  background: var(--color-cream);
}

.info-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.info-logo-block {
  text-align: center;
}

.info-logo-block .logo-en {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--color-rose);
  line-height: 1;
  margin-bottom: 8px;
}

.info-logo-block .logo-ja {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

.info-divider {
  width: 40px;
  height: 1px;
  background: var(--color-rose-light);
  margin: 0 auto 30px;
}

.info-tel {
  font-size: 28px;
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
  color: var(--color-rose);
  margin-bottom: 6px;
}

.info-tel a {
  color: inherit;
}

.info-sns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 24px;
}

.info-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-rose-light);
  border-radius: 50%;
  color: var(--color-rose);
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}

.info-sns a:hover {
  background: var(--color-rose);
  border-color: var(--color-rose);
  color: var(--color-white);
  transform: translateY(-2px);
}

.info-table {
  width: 100%;
}

.info-table tr {
  border-bottom: 1px solid var(--color-rose-pale);
}

.info-table td {
  padding: 16px 0;
  font-size: 14px;
  line-height: 1.8;
  vertical-align: top;
}

.info-table td:first-child {
  width: 120px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--color-rose);
  padding-right: 20px;
  padding-top: 18px;
}

.map-embed {
  margin-top: 30px;
}

.map-embed iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: var(--radius-md);
  filter: grayscale(20%);
}

/* ========================================
   FOOTER BAR
   ======================================== */
.footer-bar {
  background: var(--color-text);
  padding: 24px 40px;
  text-align: center;
}

.footer-bar p {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

/* ========================================
   MOBILE SP BOTTOM BAR
   ======================================== */
.sp-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: var(--color-white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
}

.sp-bottom-bar ul {
  display: flex;
}

.sp-bottom-bar ul li {
  flex: 1;
}

.sp-bottom-bar ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  gap: 4px;
  color: var(--color-rose);
  font-size: 10px;
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.sp-bottom-bar ul li a:hover {
  background: var(--color-rose-pale);
}

.sp-bottom-bar ul li a svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  height: 55vh;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: #b0b0b0;
  background-size: cover;
  background-position: center;
  margin-top: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(50,20,25,0.55), rgba(180,100,120,0.35));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.page-hero-content .page-title-en {
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 80px);
  color: var(--color-white);
  line-height: 1;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.page-hero-content .page-title-ja {
  font-size: 13px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}

/* ========================================
   PRODUCT PAGES
   ======================================== */
.product-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-light);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 24px;
}

.product-card-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.product-card-name-en {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--color-rose);
  margin-bottom: 12px;
  display: block;
}

.product-card-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ========================================
   SHOP PAGE
   ======================================== */
.shop-section {
  padding: 80px 40px;
}

.shop-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.shop-info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 60px;
  margin-bottom: 40px;
}

.shop-info-title {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--color-rose);
  margin-bottom: 40px;
  text-align: center;
}

.shop-info-table {
  width: 100%;
  border-collapse: collapse;
}

.shop-info-table tr {
  border-bottom: 1px solid var(--color-rose-pale);
}

.shop-info-table td {
  padding: 20px 0;
  font-size: 15px;
  line-height: 1.8;
  vertical-align: top;
}

.shop-info-table td:first-child {
  width: 140px;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--color-rose);
  font-weight: 500;
  padding-top: 22px;
}

.shop-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.shop-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   FADE ANIMATIONS
   ======================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 960px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-text .section-title {
    text-align: center;
  }

  .about-image::before {
    display: none;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 1;
  }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 640px) {
  .hero-section {
    height: auto;
    min-height: auto;
    aspect-ratio: 4 / 3;
  }
  .hero-bg-slide {
    transform: none !important;
  }
  .hero-scroll {
    display: none;
  }
  .hero-tagline {
    font-size: 17px;
    letter-spacing: 0.18em;
    line-height: 1.7;
  }

  .header-inner {
    padding: 16px 20px;
  }

  .site-logo .logo-en {
    font-size: 22px;
  }

  .about-section,
  .gallery-section,
  .info-section,
  .product-section,
  .shop-section {
    padding: 60px 20px;
  }

  .calendar-section {
    padding: 60px 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }

  .shop-info-card {
    padding: 30px 24px;
  }

  .sp-bottom-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }

  .footer-bar {
    padding-bottom: 80px;
  }
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
  padding: 16px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: var(--color-rose);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-rose-dark);
}

.breadcrumb span {
  color: var(--color-rose-light);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
#back-to-top {
  position: fixed;
  bottom: 80px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--color-rose);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 800;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--color-rose-dark);
  transform: translateY(-3px);
}

#back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   NAMAGASHI SPECIFIC STYLES
   ======================================== */
@media (max-width: 960px) {
  .namagashi-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .namagashi-grid .product-card-img {
    aspect-ratio: 1 / 1;
    height: auto;
  }
}

@media (max-width: 640px) {
  .namagashi-grid {
    max-width: 100%;
  }
}
