/* =============================================
   s-flowme Brand Page — style.css
   Design: High-key, warm, airy, editorial
   Colors: Deeper brown / warm tones
   ============================================= */

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

:root {
  /* Brand Palette — ブラウン系暖色（濃いめ） */
  --clr-bg: #FAF6F1;
  /* ページ背景：温かみのあるオフホワイト */
  --clr-bg-warm: #F3EBE0;
  /* セクション背景：やわらかベージュ */
  --clr-bg-card: #FFFFFF;
  /* カード背景 */
  --clr-accent: #B5673A;
  /* メインアクセント：バーントシェンナ / ブラウンオレンジ */
  --clr-accent-lt: #D4976A;
  /* 明るいアクセント：キャメル */
  --clr-accent-bg: #F0E0D0;
  /* アクセント背景：ウォームサンド */
  --clr-text: #4A3C32;
  /* 本文テキスト：ディープブラウン */
  --clr-text-lt: #8C7B6D;
  /* サブテキスト：ウォームグレー */
  --clr-heading: #332518;
  /* 見出し：ダークエスプレッソ */
  --clr-white: #FFFFFF;
  --clr-line: #E0D5C8;
  /* ボーダー：ウォームベージュ */

  /* Typography */
  --ff-display: 'Cormorant Garamond', 'Georgia', serif;
  --ff-body: 'Noto Sans JP', 'Outfit', sans-serif;
  --ff-accent: 'Outfit', sans-serif;

  /* Spacing & Radius */
  --space-section: clamp(80px, 12vw, 160px);
  --radius: 20px;
  --radius-sm: 12px;
}

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

body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.container-narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* sp-only / pc-only helpers */
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}


/* =============================================
   HEADER
   ============================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background .4s ease, box-shadow .4s ease;
}

#header.scrolled {
  background: rgba(250, 246, 241, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(74, 60, 50, .08);
}

.header-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 32px;
  width: auto;
}

.header-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.header-links a {
  font-family: var(--ff-accent);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-text-lt);
  text-decoration: none;
  position: relative;
  transition: color .3s;
}

.header-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-accent);
  transition: width .3s ease;
}

.header-links a:hover {
  color: var(--clr-accent);
}

.header-links a:hover::after {
  width: 100%;
}


/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  /* 背景画像（朝の木漏れ日・ガーデンキッチン） + オーバーレイ */
  background:
    linear-gradient(175deg, rgba(250, 246, 241, .45) 0%, rgba(243, 235, 224, .35) 40%, rgba(240, 224, 208, .40) 100%),
    url('assets/hero-bg.png') center/cover no-repeat;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(181, 103, 58, .08) 0%, transparent 70%);
  pointer-events: none;
}

/* 木漏れ日パーティクル */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 151, 106, .35) 0%, transparent 70%);
  animation: float-particle linear infinite;
}

.hero-particles span:nth-child(1) {
  width: 180px;
  height: 180px;
  top: 10%;
  left: 15%;
  animation-duration: 18s;
}

.hero-particles span:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 30%;
  left: 60%;
  animation-duration: 22s;
  animation-delay: -3s;
}

.hero-particles span:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 55%;
  left: 25%;
  animation-duration: 25s;
  animation-delay: -8s;
}

.hero-particles span:nth-child(4) {
  width: 90px;
  height: 90px;
  top: 20%;
  left: 80%;
  animation-duration: 20s;
  animation-delay: -5s;
}

.hero-particles span:nth-child(5) {
  width: 160px;
  height: 160px;
  top: 65%;
  left: 70%;
  animation-duration: 28s;
  animation-delay: -12s;
}

.hero-particles span:nth-child(6) {
  width: 100px;
  height: 100px;
  top: 8%;
  left: 45%;
  animation-duration: 19s;
  animation-delay: -7s;
}

.hero-particles span:nth-child(7) {
  width: 140px;
  height: 140px;
  top: 40%;
  left: 5%;
  animation-duration: 24s;
  animation-delay: -2s;
}

.hero-particles span:nth-child(8) {
  width: 80px;
  height: 80px;
  top: 75%;
  left: 40%;
  animation-duration: 21s;
  animation-delay: -10s;
}

.hero-particles span:nth-child(9) {
  width: 220px;
  height: 220px;
  top: 45%;
  left: 50%;
  animation-duration: 30s;
  animation-delay: -15s;
}

.hero-particles span:nth-child(10) {
  width: 60px;
  height: 60px;
  top: 85%;
  left: 15%;
  animation-duration: 17s;
  animation-delay: -4s;
}

.hero-particles span:nth-child(11) {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 35%;
  animation-duration: 23s;
  animation-delay: -9s;
}

.hero-particles span:nth-child(12) {
  width: 70px;
  height: 70px;
  top: 60%;
  left: 85%;
  animation-duration: 26s;
  animation-delay: -6s;
}

@keyframes float-particle {
  0% {
    opacity: .25;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: .5;
    transform: translateY(-30px) scale(1.1);
  }

  100% {
    opacity: .25;
    transform: translateY(0) scale(1);
  }
}

/* Hero Content */
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  letter-spacing: .2em;
  color: var(--clr-accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s ease .3s forwards;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--clr-heading);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease .5s forwards;
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  line-height: 2;
  color: var(--clr-text-lt);
  opacity: 0;
  animation: fadeUp 1s ease .8s forwards;
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--clr-accent), transparent);
  animation: scroll-pulse 2s ease infinite;
}

.scroll-text {
  font-family: var(--ff-accent);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-text-lt);
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: .4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}


/* =============================================
   PROLOGUE
   ============================================= */
#prologue {
  padding: var(--space-section) 0;
  text-align: center;
}

.prologue-kicker {
  font-family: var(--ff-accent);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1.5rem;
}

.prologue-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--clr-heading);
  margin-bottom: 3rem;
  letter-spacing: .05em;
}

.prologue-body {
  position: relative;
  padding: 3rem 0;
}

.prologue-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--clr-accent-lt);
}

.prologue-body p {
  font-size: clamp(.95rem, 2vw, 1.05rem);
  line-height: 2.2;
  margin-bottom: 2rem;
  color: var(--clr-text);
}

.prologue-body em {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--clr-accent);
  font-size: 1.1em;
}

.prologue-body strong {
  font-weight: 500;
  color: var(--clr-heading);
}


/* =============================================
   BRAND STORY — S.F.L.O.W.M.E. Cards
   ============================================= */
#brand-story {
  padding: var(--space-section) 0;
  background: var(--clr-bg-warm);
}

.section-kicker {
  font-family: var(--ff-accent);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--clr-accent);
  text-align: center;
  margin-bottom: .8rem;
}

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  text-align: center;
  color: var(--clr-heading);
  letter-spacing: .06em;
  margin-bottom: .5rem;
}

.section-sub {
  font-size: .9rem;
  text-align: center;
  color: var(--clr-text-lt);
  margin-bottom: 4rem;
  letter-spacing: .05em;
}

/* Card Grid */
.story-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.story-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 2px 24px rgba(92, 74, 61, .04);
  transition: transform .4s ease, box-shadow .4s ease;
  /* Staggered entrance animation */
  opacity: 0;
  transform: translateY(30px);
}

.story-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease calc(var(--delay, 0s)),
    transform .6s ease calc(var(--delay, 0s)),
    box-shadow .4s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(181, 103, 58, .14);
}

.card-letter {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-accent-bg);
  color: var(--clr-accent);
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.card-body h3 {
  font-family: var(--ff-accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--clr-heading);
  margin-bottom: .15rem;
}

.card-sub {
  font-size: .78rem;
  color: var(--clr-text-lt);
  margin-bottom: .6rem;
  letter-spacing: .03em;
}

.card-body p:last-child {
  font-size: .92rem;
  line-height: 1.8;
}


/* =============================================
   OUR ACTIONS — 私たちの取り組み ～Small Loop～
   ============================================= */
.actions-section {
  padding: var(--space-section) 0;
}

/* -- Intro: テキスト + 写真 横並び -- */
.actions-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.actions-intro-text p {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  line-height: 2.2;
  color: var(--clr-text);
}

.actions-intro-img {
  border-radius: var(--radius);
  overflow: hidden;
}

.actions-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .6s ease;
}

.actions-intro-img:hover img {
  transform: scale(1.03);
}

/* -- Green Letter Badge -- */
.card-letter--green {
  background: #E4EDDF;
  color: #5A7A4A;
}

/* Outdoor — アース系 */
.card-letter--earth {
  background: #EDE5DA;
  color: #8B6F47;
}

/* Lifestyle — インディゴ系 */
.card-letter--indigo {
  background: #E0E3ED;
  color: #4A5578;
}


/* =============================================
   FOOTER
   ============================================= */
#footer {
  padding: 4rem 0 3rem;
  text-align: center;
  border-top: 1px solid var(--clr-line);
  margin-top: 2rem;
}

.footer-brand {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--clr-accent);
  letter-spacing: .06em;
  margin-bottom: .6rem;
}

.footer-concept {
  font-size: .85rem;
  color: var(--clr-text-lt);
  margin-bottom: 2rem;
  letter-spacing: .04em;
}

.footer-copy {
  font-size: .75rem;
  color: var(--clr-line);
  letter-spacing: .04em;
}


/* =============================================
   VISUAL BREAK — 写真帯セクション
   ============================================= */
.visual-break {
  position: relative;
  height: clamp(300px, 45vw, 500px);
  overflow: hidden;
}

.visual-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.visual-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(250, 246, 241, 1) 0%,
      rgba(250, 246, 241, 0) 15%,
      rgba(250, 246, 241, 0) 85%,
      rgba(243, 235, 224, 1) 100%);
  pointer-events: none;
}

.visual-break-text {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.visual-break-text p {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--clr-white);
  letter-spacing: .06em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5), 0 0 40px rgba(0, 0, 0, .25);
  background: rgba(0, 0, 0, .2);
  padding: .6rem 2rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}


/* =============================================
   LOGO SHOWCASE — ロゴ表示 + ボタン
   ============================================= */
.logo-showcase {
  padding: var(--space-section) 0;
  text-align: center;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ロゴ画像の高さを揃えるコンテナ */
.logo-item img {
  width: 100%;
  max-width: 280px;
  height: 100px;
  object-fit: contain;
  transition: transform .4s ease;
}

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

.logo-label {
  font-family: var(--ff-accent);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-text-lt);
}

.logo-desc {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--clr-accent);
  letter-spacing: .04em;
}

.logo-cta {
  display: inline-block;
  font-family: var(--ff-accent);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--clr-accent);
  border: 1px solid var(--clr-accent);
  border-radius: 100px;
  padding: .6rem 2rem;
  text-decoration: none;
  margin-top: auto;
  transition: background .3s, color .3s;
}

.logo-cta:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
}


/* =============================================
   SUB-PAGE — 共通スタイル（outdoor / lifestyle）
   ============================================= */

/* Sub-page Hero */
.sub-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}

.sub-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sub-hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  background: rgba(250, 246, 241, .65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  max-width: 780px;
}

.sub-hero-inner .hero-eyebrow {
  animation-delay: .2s;
  color: var(--clr-accent);
}

.sub-hero-inner .hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--clr-heading);
}

.sub-hero-inner .hero-lead {
  max-width: 600px;
  margin: 0 auto;
  color: var(--clr-text);
}

/* -- Outdoor Hero -- */
.sub-hero--outdoor {
  background:
    linear-gradient(175deg, rgba(250, 246, 241, .55) 0%, rgba(224, 213, 200, .45) 100%),
    url('assets/hero-bg.png') center/cover no-repeat;
}

/* -- Lifestyle Hero -- */
.sub-hero--lifestyle {
  background:
    linear-gradient(175deg, rgba(250, 246, 241, .6) 0%, rgba(243, 235, 224, .5) 100%),
    url('assets/hero-garden.png') center/cover no-repeat;
}

/* Sub-page Intro — ロゴ + リード文 */
.sub-intro {
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}

.sub-intro-logo {
  margin-bottom: 2rem;
}

.sub-intro-logo img {
  max-width: 200px;
  height: 60px;
  object-fit: contain;
}

.sub-intro-text {
  font-size: clamp(.92rem, 2vw, 1.05rem);
  line-height: 2.2;
  color: var(--clr-text);
  max-width: 680px;
  margin: 0 auto;
}

.sub-intro-text em {
  color: var(--clr-accent);
  font-style: italic;
}

/* Sub-page Concept Section */
.concept-section {
  padding: var(--space-section) 0;
  background: var(--clr-bg-warm);
}

/* Sub-page Product Gallery */
.gallery-section {
  padding: var(--space-section) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--clr-bg-card);
  box-shadow: 0 2px 24px rgba(74, 60, 50, .05);
  transition: transform .4s ease, box-shadow .4s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(181, 103, 58, .12);
}

.product-card-img {
  height: 200px;
  background: var(--clr-accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-accent);
  font-size: .8rem;
  color: var(--clr-text-lt);
  letter-spacing: .1em;
}

.product-card-body {
  padding: 1.5rem;
  text-align: center;
}

.product-card-body h4 {
  font-family: var(--ff-accent);
  font-size: .95rem;
  font-weight: 500;
  color: var(--clr-heading);
  letter-spacing: .04em;
}

/* Collection Grid — カテゴリカード */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.collection-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 24px rgba(74, 60, 50, .05);
  text-align: center;
  transition: transform .4s ease, box-shadow .4s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(181, 103, 58, .1);
}

.collection-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  color: var(--clr-accent);
}

.collection-card-icon svg {
  width: 100%;
  height: 100%;
}

.collection-card h3 {
  font-family: var(--ff-accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--clr-heading);
  margin-bottom: .4rem;
}

.collection-card-sub {
  font-size: .82rem;
  color: var(--clr-accent);
  letter-spacing: .06em;
  margin-bottom: 1.2rem;
}

.collection-card-note {
  font-family: var(--ff-display);
  font-size: .85rem;
  font-style: italic;
  color: var(--clr-text-lt);
  margin-top: 1rem;
  letter-spacing: .03em;
}

/* Subcategory List — 中見出しリスト */
.subcategory-list {
  list-style: none;
  padding: 0;
  width: 100%;
  text-align: left;
}

.subcategory-list li {
  font-size: .85rem;
  color: var(--clr-text);
  line-height: 1.6;
  padding: .5rem 0;
  border-bottom: 1px solid var(--clr-line);
  letter-spacing: .03em;
}

.subcategory-list li::before {
  content: '◆ ';
  color: var(--clr-accent-lt);
  font-size: .75rem;
}

.subcategory-list li:last-child {
  border-bottom: none;
}

/* Product Sub-Group */
.product-group {
  width: 100%;
  margin-bottom: 1.2rem;
}

.product-group:last-child {
  margin-bottom: 0;
}

.product-group-label {
  font-size: .78rem;
  font-weight: 500;
  color: var(--clr-text-lt);
  letter-spacing: .04em;
  margin-bottom: .6rem;
  text-align: left;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
}

.product-tags span {
  display: inline-block;
  font-size: .75rem;
  line-height: 1;
  color: var(--clr-text);
  background: var(--clr-bg-warm);
  border: 1px solid var(--clr-line);
  border-radius: 100px;
  padding: .45rem .9rem;
  letter-spacing: .03em;
  transition: background .25s, border-color .25s;
}

.product-tags span:hover {
  background: var(--clr-accent-bg);
  border-color: var(--clr-accent-lt);
}

/* Shop Links — EC導線 */
.shop-links {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.shop-links-label {
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 500;
  color: var(--clr-text-lt);
  letter-spacing: .08em;
  margin-bottom: 1.2rem;
}

.shop-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
}

.shop-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: .7rem 1.5rem;
  border-radius: 100px;
  font-family: var(--ff-accent);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  color: var(--clr-white);
  transition: transform .3s ease, box-shadow .3s ease;
}

.shop-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.shop-link--rakuten {
  background: #bf0000;
}

.shop-link--amazon {
  background: #ff9900;
  color: #232f3e;
}

.shop-link--yahoo {
  background: #ff0033;
}

.shop-link--ec {
  background: var(--clr-accent);
}

/* Cross Link — もう一つのラインへ */
.cross-link-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  border-top: 1px solid var(--clr-line);
}

.cross-link-desc {
  font-size: clamp(.92rem, 2vw, 1.05rem);
  line-height: 2;
  color: var(--clr-text-lt);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Back to home link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-accent);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--clr-accent);
  text-decoration: none;
  margin-top: 3rem;
  transition: gap .3s ease;
}

.back-link:hover {
  gap: .8rem;
}


/* =============================================
   CONTACT PAGE — お問い合わせ
   ============================================= */
.contact-page {
  padding-top: clamp(100px, 15vw, 140px);
  padding-bottom: var(--space-section);
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-family: var(--ff-body);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 500;
  color: var(--clr-heading);
  letter-spacing: .08em;
  margin-bottom: .3rem;
}

.contact-subtitle {
  font-family: var(--ff-display);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  font-style: italic;
  color: var(--clr-accent);
  letter-spacing: .1em;
}

.contact-body {
  position: relative;
}

/* -- アイコン装飾 -- */
.contact-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.contact-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent-bg) 0%, #F8EFE6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  box-shadow: 0 4px 30px rgba(181, 103, 58, .1);
  animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* -- リード文 -- */
.contact-lead {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-lead p {
  font-size: clamp(.95rem, 2vw, 1.08rem);
  line-height: 2.2;
  color: var(--clr-text);
}

.contact-lead-sub {
  margin-top: 1rem;
  font-size: clamp(.85rem, 1.8vw, .92rem) !important;
  color: var(--clr-text-lt) !important;
}

/* -- CTAボタン -- */
.contact-cta {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: clamp(.92rem, 2vw, 1rem);
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--clr-white);
  background: linear-gradient(135deg, var(--clr-accent) 0%, #C4784E 100%);
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(181, 103, 58, .3);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(181, 103, 58, .4);
}

.contact-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(181, 103, 58, .25);
}

.contact-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-cta-note {
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--clr-text-lt);
  letter-spacing: .04em;
}

/* -- 区切り線 -- */
.contact-divider {
  width: 40px;
  height: 1px;
  background: var(--clr-accent-lt);
  margin: 0 auto 3.5rem;
}

/* -- 補足情報 -- */
.contact-info {
  margin-bottom: 2rem;
}

.contact-info-heading {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 500;
  color: var(--clr-heading);
  text-align: center;
  letter-spacing: .06em;
  margin-bottom: 2rem;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 20px rgba(92, 74, 61, .04);
  transition: transform .4s ease, box-shadow .4s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(181, 103, 58, .1);
}

.contact-info-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card h3 {
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--clr-heading);
  letter-spacing: .04em;
  margin-bottom: .8rem;
}

.contact-info-card p {
  font-size: clamp(.82rem, 1.6vw, .88rem);
  line-height: 1.9;
  color: var(--clr-text);
}

.contact-info-card a {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .3s;
}

.contact-info-card a:hover {
  color: var(--clr-heading);
}

/* -- 注意事項 -- */
.contact-notes {
  margin-top: 3rem;
  background: var(--clr-bg-warm);
  border-radius: var(--radius-sm);
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  text-align: left;
}

.contact-notes-heading {
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 500;
  color: var(--clr-heading);
  letter-spacing: .06em;
  margin-bottom: 1rem;
}

.contact-notes-list {
  padding-left: 1.2rem;
  list-style: none;
}

.contact-notes-list li {
  position: relative;
  font-size: clamp(.82rem, 1.6vw, .9rem);
  line-height: 1.8;
  color: var(--clr-text-lt);
  margin-bottom: .6rem;
}

.contact-notes-list li::before {
  content: '※';
  position: absolute;
  left: -1.2rem;
  color: var(--clr-accent-lt);
}

/* -- Contact Responsive -- */
@media (max-width: 768px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-icon {
    width: 80px;
    height: 80px;
  }

  .contact-icon svg {
    width: 36px;
    height: 36px;
  }

  .contact-btn {
    padding: .9rem 2rem;
    font-size: .9rem;
  }
}


/* =============================================
   LEGAL PAGES — プライバシーポリシー / 利用規約
   ============================================= */
.legal-page {
  padding-top: clamp(100px, 15vw, 140px);
  padding-bottom: var(--space-section);
}

.legal-title {
  font-family: var(--ff-body);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 500;
  color: var(--clr-heading);
  text-align: center;
  letter-spacing: .08em;
  margin-bottom: .3rem;
}

.legal-subtitle {
  font-family: var(--ff-display);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  font-style: italic;
  color: var(--clr-accent);
  text-align: center;
  letter-spacing: .1em;
  margin-bottom: .8rem;
}

.legal-updated {
  font-size: .8rem;
  color: var(--clr-text-lt);
  text-align: center;
  letter-spacing: .04em;
  margin-bottom: 3rem;
}

.legal-body {
  position: relative;
}

.legal-body::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--clr-accent-lt);
  margin: 0 auto 3rem;
}

.legal-section {
  margin-bottom: 2.8rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 500;
  color: var(--clr-heading);
  letter-spacing: .06em;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--clr-line);
}

.legal-section h3 {
  font-family: var(--ff-body);
  font-size: clamp(.92rem, 2vw, 1rem);
  font-weight: 500;
  color: var(--clr-accent);
  margin-top: 1.5rem;
  margin-bottom: .8rem;
  letter-spacing: .04em;
}

.legal-section p {
  font-size: clamp(.88rem, 1.8vw, .95rem);
  line-height: 2;
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.legal-section ul li {
  position: relative;
  font-size: clamp(.88rem, 1.8vw, .95rem);
  line-height: 2;
  padding-left: 1.4rem;
}

.legal-section ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--clr-accent-lt);
  font-weight: 500;
}

.legal-section a {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .3s;
}

.legal-section a:hover {
  color: var(--clr-heading);
}

.legal-info-box {
  background: var(--clr-bg-warm);
  border-radius: var(--radius-sm);
  padding: 1.5rem 2rem;
  margin: 1rem 0;
}

.legal-info-box dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .5rem 1.5rem;
  font-size: clamp(.85rem, 1.8vw, .92rem);
}

.legal-info-box dt {
  font-weight: 500;
  color: var(--clr-heading);
  white-space: nowrap;
}

.legal-info-box dd {
  color: var(--clr-text);
}

/* -- Footer Legal Links -- */
.footer-legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
}

.footer-legal-links a {
  font-size: .78rem;
  color: var(--clr-text-lt);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .3s;
}

.footer-legal-links a:hover {
  color: var(--clr-accent);
}

.footer-legal-sep {
  font-size: .7rem;
  color: var(--clr-line);
}


/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem clamp(16px, 4vw, 40px);
  background: rgba(250, 246, 241, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -4px 30px rgba(74, 60, 50, .1);
  border-top: 1px solid var(--clr-line);
  transform: translateY(100%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1),
    opacity .5s ease;
  pointer-events: none;
}

.cookie-consent--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 280px;
  font-size: .82rem;
  line-height: 1.8;
  color: var(--clr-text);
}

.cookie-consent-text a {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .3s;
}

.cookie-consent-text a:hover {
  color: var(--clr-heading);
}

.cookie-consent-actions {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.6rem;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--accept {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: 0 2px 12px rgba(181, 103, 58, .25);
}

.cookie-btn--accept:hover {
  background: #A05A30;
  box-shadow: 0 4px 20px rgba(181, 103, 58, .35);
}

.cookie-btn--detail {
  background: transparent;
  color: var(--clr-text-lt);
  border: 1px solid var(--clr-line);
}

.cookie-btn--detail:hover {
  border-color: var(--clr-accent-lt);
  color: var(--clr-accent);
}


/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .actions-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header-links {
    gap: 1.2rem;
  }

  .header-links a {
    font-size: .75rem;
  }

  .story-cards {
    grid-template-columns: 1fr;
  }

  .hero-scroll-hint {
    bottom: -80px;
  }

  .logo-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .logo-item img {
    height: 80px;
  }

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

  .cookie-consent-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-consent-text {
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .header-nav {
    flex-direction: column;
    gap: .8rem;
  }
}