/* ==========================================================================
   BAKERY BBLinks - Main Design System & Stylesheet
   flore.tokyo Arch Screen Replication with Golden Ratio Vertical Arch Window
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
  /* Color Palette */
  --bg-flore: #E59A60;          /* TOP Color: Warm Terracotta Caramel */
  --bg-yellow: #F7DA69;         /* Gentle Sunshine Yellow */
  --bg-pink: #F7C0C7;           /* Gentle Sweet Pink */
  
  --primary-color: #E59A60;
  --secondary-color: #E87A5D;
  --accent-yellow: #FFD24C;
  
  --text-main: #4A3022;          /* Deep Warm Brown */
  --text-muted: #7A5F50;
  --text-flore-dark: #3D261A;
  --text-light: #FFFFFF;
  
  --border-color: rgba(90, 67, 54, 0.15);
  --border-flore: #4A3022;
  --border-radius-sm: 14px;
  --border-radius-md: 24px;
  --border-radius-lg: 36px;
  --border-radius-pill: 9999px;
  
  --shadow-soft: 0 10px 30px rgba(74, 48, 34, 0.08);
  --shadow-hover: 0 16px 40px rgba(74, 48, 34, 0.16);
  
  --font-heading: 'Zen Maru Gothic', sans-serif;
  --font-body: 'Noto Sans JP', 'Zen Maru Gothic', sans-serif;
  
  --max-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Animated Changing Background */
body {
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.85;
  letter-spacing: 0.03em;
  overflow-x: hidden;
  animation: animateBgCycle 18s ease-in-out infinite;
}

body.modal-open {
  overflow: hidden;
}

@keyframes animateBgCycle {
  0%, 100% {
    background-color: var(--bg-flore);  /* TOP Color: Caramel Terracotta */
  }
  33% {
    background-color: var(--bg-yellow); /* Gentle Sunshine Yellow */
  }
  66% {
    background-color: var(--bg-pink);   /* Gentle Sweet Pink */
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.4;
}

.section-title {
  position: relative;
  z-index: 0;
  min-height: clamp(220px, 26vh, 320px);
  margin-bottom: clamp(2.6rem, 5vw, 5.2rem);
  padding-right: clamp(0.2rem, 1vw, 0.7rem);
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: clamp(0.5rem, 0.9vw, 0.8rem);
  row-gap: clamp(0.45rem, 0.8vw, 0.8rem);
  justify-content: end;
  align-items: start;
  text-align: left;
}

.section-title .en {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.85rem;
  color: var(--text-flore-dark);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background-color: transparent;
  padding: 0 0 0 0.55rem;
  border-left: 1px solid rgba(61, 38, 26, 0.36);
  border-right: none;
  border-radius: 0;
  margin: 0.65rem 0 0;
  box-shadow: none;
  opacity: 0.78;
  position: relative;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  z-index: 2;
}

.section-title .ja {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  position: relative;
  display: inline-block;
  color: var(--text-flore-dark);
  margin-top: 0;
  text-shadow: none;
  letter-spacing: 0.16em;
  line-height: 1.15;
  grid-column: 1;
  grid-row: 2;
  z-index: 2;
}

.section-title .ja::after {
  content: none;
  display: none;
}

.section-title::before {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  font-family: var(--font-heading);
  font-size: clamp(2.45rem, 3.7vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
  color: var(--text-flore-dark);
  -webkit-text-stroke: 0;
  z-index: 2;
}

.section-title::after {
  content: '';
  position: absolute;
  top: clamp(7.8rem, 10vw, 10.7rem);
  right: clamp(3.9rem, 4.6vw, 5.1rem);
  width: clamp(76px, 7.5vw, 112px);
  height: clamp(96px, 10vw, 140px);
  background-image: radial-gradient(circle, rgba(61, 38, 26, 0.38) 0 2px, transparent 2.5px);
  background-size: 16px 16px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.news-section .section-title::before {
  content: '01';
}

.featured-section .section-title::before {
  content: '02';
}

.store-info-section .section-title::before {
  content: '03';
}

.contact-section .section-title::before {
  content: '04';
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 6rem 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-infinity-list-left,
  .scroll-infinity-list-right {
    animation: none;
  }
}

@keyframes firstViewFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes firstViewFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: var(--first-view-opacity, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .flore-top-bar,
  .flore-center-arch-frame,
  .flore-right-badge-area,
  .flore-hero-footer {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .flore-side-arch {
    opacity: 1;
    animation: none;
  }

  .flore-side-dots {
    opacity: var(--first-view-opacity, 0.62);
    animation: none;
  }
}

/* ==========================================================================
   Hero Section - Golden Ratio Vertical Arch Window (flore.tokyo Replication)
   ========================================================================== */
.flore-hero-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: var(--hero-fixed-height, 100vh);
  padding: 1.5rem 2rem 1.4rem;
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 0;
  will-change: opacity;
}

.flore-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 20;
  max-width: 1800px;
  width: 100%;
  margin: 0 auto 1rem;
  opacity: 0;
  animation: firstViewFadeUp 0.9s ease 0.08s forwards;
}

.flore-hero-section > .flore-top-bar {
  visibility: hidden;
}

.site-floating-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  max-width: none;
  width: 100%;
  padding: 1.5rem 2rem 0;
  background: transparent;
  visibility: visible;
  opacity: 1;
  transform: none;
  animation: none;
  pointer-events: none;
}

.site-floating-header .flore-logo-area,
.site-floating-header nav,
.site-floating-header .flore-mobile-toggle {
  pointer-events: auto;
}

.flore-logo-area {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text-flore-dark);
}

.flore-logo-area img {
  height: clamp(72px, 5.2vw, 96px);
  width: auto;
}

.flore-logo-title {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 1.8vw, 1.95rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text-flore-dark);
  white-space: nowrap;
}

.flore-nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.flore-nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-flore-dark);
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}

.flore-nav-link:hover {
  opacity: 0.75;
}

/* Side Decorative Arch Background Shapes */
.flore-side-arch {
  position: absolute;
  top: 10%;
  bottom: 5%;
  width: 160px;
  background-color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: firstViewFadeIn 1.1s ease 0.22s forwards;
}

.flore-side-arch-left {
  left: -80px;
  border-radius: 0 150px 150px 0;
}

.flore-side-arch-right {
  right: -80px;
  border-radius: 150px 0 0 150px;
}

.flore-side-dots {
  position: absolute;
  pointer-events: none;
  z-index: 7;
}

.flore-side-dots {
  width: clamp(120px, 10vw, 190px);
  height: clamp(210px, 28vh, 320px);
  --first-view-opacity: 0.62;
  background-image:
    radial-gradient(circle, rgba(61, 38, 26, 0.48) 0 3px, transparent 3.5px),
    radial-gradient(circle, rgba(255, 253, 248, 0.55) 0 2px, transparent 2.5px);
  background-position: 0 0, 17px 17px;
  background-size: 34px 34px;
  opacity: 0;
  animation: firstViewFadeIn 1s ease 0.52s forwards;
}

.flore-side-dots-left {
  left: clamp(14px, 4vw, 72px);
  top: 22%;
  transform: rotate(-7deg);
}

.flore-side-dots-right {
  right: clamp(14px, 4vw, 72px);
  bottom: 15%;
  transform: rotate(7deg);
}

/* Main Hero Stage - Perfect flore.tokyo Screenshot Layout */
.flore-hero-stage {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(0.75rem, 1.5vw, 1.6rem);
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  padding: 0.5rem 0;
  flex-grow: 1;
}

/* Left Vertical Copy ("自分にも、家族にも、やさしく。") */
.flore-left-copy {
  position: absolute;
  left: clamp(28px, 4vw, 68px);
  bottom: clamp(34px, 5vh, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 0;
  z-index: 16;
  width: auto;
  pointer-events: none;
}

.flore-vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  line-height: 1.8;
  color: #FFFFFF;
  text-shadow: 0 3px 14px rgba(45, 25, 15, 0.72), 0 1px 3px rgba(45, 25, 15, 0.55);
}

/* Golden Ratio Vertical Arch Window Photo Frame (Exact flore.tokyo proportion) */
.flore-center-arch-frame {
  position: relative;
  width: min(78vw, 1480px);
  height: clamp(670px, 83vh, 920px);
  border-radius: 50% 50% 0 0 / 49% 49% 0 0;
  border: 3.5px solid var(--border-flore);
  background-color: #FFFDF8;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(74, 48, 34, 0.15);
  margin: 0 auto;
  opacity: 0;
  animation: firstViewFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards;
}

.flore-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.arch-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 10s linear;
  transform: scale(1.05);
  pointer-events: none;
}

.arch-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.arch-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flore-char-decoration {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 80px;
  height: 80px;
  z-index: 15;
  animation: floatBounce 4s ease-in-out infinite;
}

.flore-char-decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Right Stamp Badge ("DEBUT! BBLINKS") */
.flore-right-badge-area {
  position: absolute;
  top: clamp(118px, 16vh, 164px);
  right: calc((100% - min(78vw, 1480px)) / 2 + clamp(32px, 4.2vw, 78px));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
  z-index: 17;
  width: auto;
  pointer-events: none;
  opacity: 0;
  animation: firstViewFadeUp 0.85s ease 0.68s forwards;
}

.flore-circle-badge {
  width: clamp(104px, 8vw, 145px);
  height: clamp(104px, 8vw, 145px);
  border: 2px dashed var(--text-flore-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-flore-dark);
  text-align: center;
  padding: 10px;
  transform: rotate(-8deg);
  background-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.flore-circle-badge .sub {
  font-size: clamp(0.6rem, 0.75vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.flore-circle-badge .main-txt {
  font-family: var(--font-heading);
  font-size: clamp(0.92rem, 1.15vw, 1.25rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0.2rem 0;
}

.flore-hero-footer {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  opacity: 0;
  animation: firstViewFadeUp 0.8s ease 0.82s forwards;
}

.page-contents {
  position: relative;
  z-index: 5;
  margin-top: calc(var(--hero-fixed-height, 100vh) + 100px);
  background-color: var(--bg-flore);
  animation: animateBgCycle 18s ease-in-out infinite;
  overflow: visible;
}

.arch-slider-dots {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(74, 48, 34, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
}

.dot.active {
  background-color: var(--text-flore-dark);
  width: 34px;
  border-radius: 6px;
}

.flore-hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

.btn-flore {
  background-color: #FFFDF8;
  color: var(--text-flore-dark);
  padding: 0.85rem 2.5rem;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.btn-flore:hover {
  transform: translateY(-3px);
  background-color: #FFF5EA;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.flore-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-flore-dark);
  cursor: pointer;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.news-section {
  padding: 4.5rem 0;
  background: transparent;
}

.news-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 2px dashed var(--text-flore-dark);
  border-radius: var(--border-radius-md);
  padding: 2.2rem 2.5rem;
  box-shadow: var(--shadow-soft);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.news-card::before {
  content: 'NEWS';
  position: absolute;
  top: -14px;
  left: 30px;
  background: var(--text-flore-dark);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.1rem 0.8rem;
  border-radius: var(--border-radius-pill);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px dashed rgba(74, 48, 34, 0.15);
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.news-tag {
  background-color: var(--text-flore-dark);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.9rem;
  border-radius: var(--border-radius-pill);
  white-space: nowrap;
  justify-self: start;
}

.news-content {
  flex: 1;
  min-width: 0;
}

.news-text {
  display: inline-block;
  font-size: 0.98rem;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.65;
}

.news-text:hover {
  opacity: 0.75;
}

.news-excerpt {
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-popup-trigger {
  cursor: pointer;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.news-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(61, 38, 26, 0.52);
  backdrop-filter: blur(6px);
}

.news-modal-dialog {
  position: relative;
  width: min(620px, 100%);
  min-height: 330px;
  overflow: hidden;
  background: #FFFDF8;
  border: 2px solid rgba(61, 38, 26, 0.22);
  border-radius: var(--border-radius-md);
  box-shadow: 0 24px 70px rgba(61, 38, 26, 0.28);
  padding: 2.4rem 2.5rem 7.4rem;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.3s ease;
}

.news-modal.is-open .news-modal-dialog {
  transform: translateY(0) scale(1);
}

.news-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(61, 38, 26, 0.1);
  color: var(--text-flore-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.news-modal-close:hover {
  background: rgba(61, 38, 26, 0.18);
}

.news-modal-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding-right: 3rem;
}

.news-modal-date {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.news-modal-tag {
  background: var(--text-flore-dark);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.22rem 0.8rem;
  border-radius: var(--border-radius-pill);
}

.news-modal-title {
  color: var(--text-main);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  padding-right: 1rem;
}

.news-modal-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 2;
  padding-right: 4.2rem;
}

.news-modal-character {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  width: clamp(92px, 18vw, 142px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(61, 38, 26, 0.18));
  pointer-events: none;
}

/* ==========================================================================
   Concept Section
   ========================================================================== */
.concept-section {
  min-height: 78vh;
  padding: 6rem 0 18vh;
  position: relative;
  z-index: 1;
}

.concept-title-rail {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.concept-copy-area {
  writing-mode: vertical-rl;
  position: sticky;
  top: clamp(6.2rem, 13vh, 8.8rem);
  width: max-content;
  margin-left: auto;
  margin-right: clamp(4%, 8vw, 10%);
  margin-top: clamp(5rem, 11vh, 7.4rem);
}

.concept-copy-en {
  margin-top: 0.2rem;
  margin-left: 1.8rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--text-flore-dark);
}

.concept-copy {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1.55;
  letter-spacing: 0.08em;
  color: var(--text-flore-dark);
}

.concept-text {
  width: min(720px, 70%);
  margin-left: 10%;
  padding-top: 45vh;
  position: relative;
}

.concept-text p {
  margin-bottom: 3.6rem;
  margin-top: -0.8rem;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 2.35;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--text-flore-dark);
}

.concept-text p:last-child {
  margin-bottom: 0;
}

.concept-points-inline {
  width: min(980px, 70%);
  margin: clamp(4.5rem, 9vh, 7rem) 0 0 8%;
  position: relative;
  z-index: 2;
}

.concept-points-inline .points-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.7vw, 1.6rem);
}

.concept-points-inline .arch-point-card {
  padding: 2.7rem 1.35rem 1.9rem;
  text-align: left;
  align-items: flex-start;
}

.concept-points-inline .point-num-badge {
  margin-left: 0;
}

.concept-imgarea {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(5rem, 11vh, 8rem);
  overflow: hidden;
}

@media (min-width: 769px) {
  .concept-imgarea {
    height: 100vh;
    min-height: 720px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    gap: 6px;
  }

  .concept-imgarea .scroll-infinity-wrap {
    height: calc((100vh - 6px) / 2);
    min-height: 357px;
    flex: 1 1 0;
  }

  .concept-imgarea .scroll-infinity-wrap + .scroll-infinity-wrap {
    margin-top: 0;
  }

  .concept-imgarea .scroll-infinity-list {
    height: 100%;
  }

  .concept-imgarea .scroll-infinity-item {
    width: max(42vw, 640px);
    height: 100%;
  }

  .concept-imgarea .scroll-infinity-item img {
    height: 100%;
    aspect-ratio: auto;
  }
}

.scroll-infinity-wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity-wrap + .scroll-infinity-wrap {
  margin-top: 6px;
}

.scroll-infinity-list {
  display: flex;
  min-width: max-content;
  gap: 6px;
  will-change: transform;
}

.scroll-infinity-list-left {
  animation: infinityScrollLeft 48s infinite linear both;
}

.scroll-infinity-list-right {
  animation: infinityScrollRight 48s infinite linear both;
}

.scroll-infinity-item {
  width: min(36vw, 560px);
  padding-right: 0;
  flex: 0 0 auto;
}

.scroll-infinity-item img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

@keyframes infinityScrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes infinityScrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.concept-points-section {
  padding-top: 2rem;
  padding-bottom: 7rem;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.arch-point-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 120px 120px 24px 24px;
  padding: 3.2rem 1.8rem 2.2rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(74, 48, 34, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.arch-point-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--text-flore-dark);
}

.point-num-badge {
  width: 68px;
  height: 68px;
  background-color: var(--text-flore-dark);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.point-sub {
  font-size: 0.92rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.point-title {
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.point-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  text-align: left;
}

/* ==========================================================================
   Full Screen Fixed Photo
   ========================================================================== */
.bakery-immersive-section {
  position: relative;
  min-height: 100vh;
  margin: 0;
}

.bakery-immersive-fixed {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  isolation: isolate;
  background-image: url('../images/店内_ガラスケースのアップ写真.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.bakery-immersive-fixed::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(61, 38, 26, 0.68), rgba(61, 38, 26, 0.12) 58%, rgba(61, 38, 26, 0.36)),
    linear-gradient(180deg, rgba(61, 38, 26, 0.14), rgba(61, 38, 26, 0.22));
  z-index: 1;
}

.bakery-immersive-fixed::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--bg-flore);
  mix-blend-mode: multiply;
  opacity: 0.22;
  animation: animateBgCycle 18s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.bakery-immersive-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 3rem));
  margin-left: clamp(1.5rem, 8vw, 8rem);
  color: #FFFFFF;
  text-shadow: 0 4px 18px rgba(45, 25, 15, 0.54);
}

.bakery-immersive-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bakery-immersive-copy h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1.35;
  margin-bottom: 1.2rem;
}

.bakery-immersive-copy p {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 2;
  max-width: 34em;
}

.bakery-immersive-scroll {
  position: absolute;
  right: clamp(1.4rem, 4vw, 4rem);
  bottom: clamp(1.4rem, 5vh, 3rem);
  z-index: 2;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

/* ==========================================================================
   Recommendation / Menu Cards
   ========================================================================== */
.featured-section {
  padding: 5.5rem 0;
  background: transparent;
}

.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
  margin-bottom: 3.5rem;
}

.menu-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(74, 48, 34, 0.12);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--text-flore-dark);
}

.menu-card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: rgba(255,255,255,0.5);
}

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

.menu-card:hover .menu-card-img {
  transform: scale(1.06);
}

.menu-card-body {
  padding: 1.45rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-title {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
  flex-grow: 1;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(74, 48, 34, 0.12);
  padding-top: 0.9rem;
  margin-top: auto;
}

.menu-card-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-flore-dark);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.2rem 0.9rem;
  border-radius: var(--border-radius-pill);
  border: 1px solid rgba(74, 48, 34, 0.1);
}

.btn-center-wrap {
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--text-flore-dark);
  color: white;
  padding: 0.9rem 2.6rem;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

/* Store Info Section */
.store-info-section {
  background: transparent;
}

.store-card-wrapper {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(74, 48, 34, 0.12);
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.store-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.store-detail-table th,
.store-detail-table td {
  padding: 1.1rem 0.8rem;
  border-bottom: 1px solid rgba(74, 48, 34, 0.1);
  text-align: left;
}

.store-detail-table th {
  width: 32%;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-flore-dark);
  font-weight: 700;
  vertical-align: top;
}

.store-detail-table td {
  font-size: 0.98rem;
  color: var(--text-main);
}

.store-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
  border: 2px solid white;
}

/* Contact Form Section */
.contact-section {
  background: transparent;
  padding-bottom: 7rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 2px solid rgba(74, 48, 34, 0.12);
}

.contact-info-box {
  background: rgba(255, 255, 255, 0.6);
  padding: 3.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(74, 48, 34, 0.08);
}

.contact-info-title {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.contact-info-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-direct-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.contact-direct-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-flore-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.contact-direct-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-direct-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.contact-form-box {
  padding: 3.5rem 2.8rem;
}

.form-group {
  margin-bottom: 1.6rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-label .required {
  background-color: var(--text-flore-dark);
  color: white;
  font-size: 0.75rem;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(74, 48, 34, 0.2);
  border-radius: var(--border-radius-sm);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--text-flore-dark);
  box-shadow: 0 0 0 3px rgba(74, 48, 34, 0.15);
  background-color: white;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* Footer Section */
.site-footer {
  background-color: #382216;
  color: #F7EFE9;
  padding: 4rem 0 2rem;
  margin-top: 0;
  position: relative;
  z-index: 10;
}

@media (min-width: 769px) {
  .news-section .container,
  .featured-section .container,
  .store-info-section .container,
  .contact-section .container {
    position: relative;
    display: flow-root;
  }

  .news-section .section-title,
  .featured-section .section-title,
  .store-info-section .section-title,
  .contact-section .section-title {
    position: absolute;
    top: clamp(0.9rem, 1.8vw, 1.5rem);
    right: clamp(-6.2rem, -7vw, -4.6rem);
    left: auto;
    width: max-content;
    min-height: auto;
    margin-bottom: 0;
    padding-right: 0;
  }

  .concept-text {
    margin-left: 8%;
  }

  .news-card,
  .menu-cards-grid,
  .store-card-wrapper,
  .contact-wrapper {
    position: relative;
    left: clamp(-138px, -7vw, -76px);
    margin-top: clamp(4.8rem, 6vw, 5.8rem);
  }

  .btn-center-wrap {
    position: relative;
    left: clamp(-138px, -7vw, -76px);
  }

  .menu-cards-grid,
  .store-card-wrapper,
  .contact-wrapper {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }

  .featured-section .menu-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.2rem, 2vw, 1.7rem);
    max-width: 1060px;
    margin-top: clamp(6.8rem, 8.4vw, 7.6rem);
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .news-section .section-title,
  .featured-section .section-title,
  .store-info-section .section-title,
  .contact-section .section-title {
    right: -3.4rem;
  }

  .featured-section .menu-cards-grid {
    max-width: min(940px, calc(100vw - 9rem));
    gap: 1.2rem;
  }

  .store-card-wrapper,
  .contact-wrapper {
    max-width: min(860px, calc(100vw - 13rem));
  }

  .news-card,
  .menu-cards-grid,
  .store-card-wrapper,
  .contact-wrapper,
  .btn-center-wrap {
    left: clamp(-96px, -6vw, -58px);
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-desc {
  font-size: 0.9rem;
  color: #D6C8BE;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 3.5rem;
}

.footer-links-col h4 {
  font-size: 1rem;
  color: var(--bg-yellow);
  margin-bottom: 1rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-list a {
  color: #D6C8BE;
  font-size: 0.9rem;
}

.footer-nav-list a:hover {
  color: var(--bg-yellow);
}

.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #A39286;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .flore-hero-stage {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .flore-vertical-text {
    writing-mode: horizontal-tb;
    font-size: 1.4rem;
  }

  .flore-center-arch-frame {
    width: 92vw;
    height: clamp(430px, 68vw, 560px);
    border-radius: 50% 50% 0 0 / 42% 42% 0 0;
  }

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

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    min-height: auto;
    margin-bottom: 2.4rem;
    padding-right: 0;
    display: block;
    text-align: left;
  }

  .section-title .en {
    display: inline-block;
    writing-mode: horizontal-tb;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    background: rgba(255, 253, 248, 0.78);
    border: 1px solid rgba(61, 38, 26, 0.18);
    border-radius: var(--border-radius-pill);
    padding: 0.18rem 0.9rem;
    margin-bottom: 0.65rem;
  }

  .section-title .ja {
    display: block;
    writing-mode: horizontal-tb;
    font-size: 1.58rem;
    line-height: 1.45;
    letter-spacing: 0.06em;
  }

  .section-title::before {
    top: -0.35rem;
    right: 0;
    font-size: 3.4rem;
  }

  .section-title::after {
    top: 0.8rem;
    right: -0.5rem;
    width: 58px;
    height: 58px;
    background-size: 15px 15px;
    opacity: 0.26;
  }

  .news-card {
    padding: 2rem 1.3rem 1.6rem;
  }

  .news-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.45rem 0.75rem;
    padding-bottom: 1.25rem;
  }

  .news-content {
    grid-column: 1 / -1;
  }

  .news-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .news-excerpt {
    font-size: 0.84rem;
    line-height: 1.7;
    -webkit-line-clamp: 3;
  }

  .flore-hero-section {
    padding: 1rem 1rem 1.1rem;
  }

  .page-contents {
    margin-top: calc(var(--hero-fixed-height, 100vh) + 64px);
  }

  .flore-logo-area {
    gap: 0.55rem;
  }

  .flore-logo-area img {
    height: 58px;
  }

  .flore-logo-title {
    font-size: 1.42rem;
    letter-spacing: 0.08em;
  }

  .flore-side-dots {
    width: 96px;
    height: 170px;
    --first-view-opacity: 0.36;
    background-size: 28px 28px;
    background-position: 0 0, 14px 14px;
  }

  .flore-side-dots-left {
    left: -22px;
    top: 28%;
  }

  .flore-side-dots-right {
    right: -22px;
    bottom: 20%;
  }

  .concept-section {
    min-height: auto;
    padding: 4rem 0 5rem;
  }

  .concept-title-rail {
    position: relative;
    inset: auto;
    pointer-events: auto;
  }

  .concept-copy-area {
    position: relative;
    top: auto;
    right: auto;
    width: min(320px, 84%);
    margin: 0 8% 3rem auto;
  }

  .concept-text {
    width: 84%;
    margin: 0 auto;
    padding-top: 0;
  }

  .concept-points-inline {
    width: 84%;
    margin: 3rem auto 0;
  }

  .concept-points-inline .points-grid {
    grid-template-columns: 1fr;
  }

  .concept-text p {
    margin-bottom: 2.4rem;
  }

  .pc-only {
    display: none;
  }

  .scroll-infinity-item {
    width: 78vw;
  }

  .scroll-infinity-item img {
    border-radius: 0;
  }

  .concept-points-section {
    padding-top: 0;
    padding-bottom: 5rem;
  }

  .bakery-immersive-section {
    min-height: 92vh;
  }

  .bakery-immersive-fixed {
    height: 92vh;
    background-attachment: scroll;
  }

  .bakery-immersive-copy {
    width: calc(100% - 2rem);
    margin: 0 auto;
    align-self: flex-end;
    padding-bottom: 5rem;
  }

  .bakery-immersive-copy h2 {
    font-size: 2.1rem;
  }

  .flore-nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    padding: 1.5rem;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  #mainNav.open .flore-nav-list,
  .flore-top-bar nav.open .flore-nav-list {
    display: flex;
  }

  .flore-mobile-toggle {
    display: block;
  }

  .footer-content {
    flex-direction: column;
  }
}
