/* ===================================
   hug - Official Website CSS
   チラシデザイン準拠: クリーム×ベージュ×パステルピンク×ブラウン
   =================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@300;400;600;700&family=Zen+Maru+Gothic:wght@400;500;700;900&family=Pacifico&display=swap');

/* --- CSS Variables (チラシカラー準拠) --- */
:root {
  /* ── メインカラー: クリーム・ベージュ系 ── */
  --cream:         #F6F0E3;   /* チラシ背景クリーム */
  --cream-lt:      #FFFDF7;   /* 最も明るいクリーム */
  --cream-dk:      #EDE5D4;   /* やや濃いクリーム */
  --beige:         #E9E1D3;   /* ベージュ */
  --beige-dk:      #D9CBB8;   /* 濃いベージュ */
  --linen:         #CFC6B8;   /* リネン色 */

  /* ── ブラウン: テキスト・アクセント ── */
  --brown:         #5B382A;   /* メインブラウン（見出し・強調） */
  --brown-lt:      #7A5040;   /* 薄ブラウン */
  --brown-pale:    #A07060;   /* ペールブラウン */

  /* ── ピンク・コーラル: アクセント ── */
  --primary:       #F3A7A0;   /* コーラルピンク */
  --primary-light: #FDDCDA;   /* 薄コーラル */
  --primary-dark:  #E07268;   /* 濃いコーラル */
  --accent:        #F6B4B4;   /* ピンク */
  --accent-light:  #FCE8E8;   /* 薄ピンク */
  --accent-dark:   #D47878;   /* 濃いピンク */

  /* ── パステルアクセント ── */
  --mint:          #C9D8C8;   /* ミント */
  --mint-lt:       #E4EEE4;
  --lavender:      #C9C2E8;   /* ラベンダー */
  --lavender-lt:   #E8E5F5;
  --gold:          #D8B55C;   /* ゴールド */
  --gold-lt:       #F0E0A0;

  /* ── 旧変数 (互換性維持) ── */
  --primary-light: #FDDCDA;
  --secondary:     #7A5040;
  --secondary-light: #D9CBB8;
  --accent-light:  #FCE8E8;
  --accent-dark:   #D47878;
  --white:         #ffffff;
  --light-bg:      #F6F0E3;   /* クリームに変更 */

  /* ── テキスト ── */
  --text-dark:     #4B2B1F;   /* ダークブラウン */
  --text-medium:   #7A5040;   /* ミディアムブラウン */
  --text-light:    #A07060;   /* ライトブラウン */
  --border:        #E5D8CC;
  --shadow:        rgba(91, 56, 42, 0.12);
  --shadow-dark:   rgba(91, 56, 42, 0.18);

  /* ── フォント ── */
  --font-sans:    'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  --font-serif:   'Noto Serif JP', serif;
  --font-display: 'Pacifico', cursive;
  --font-number:  'Pacifico', cursive;

  --radius:    16px;
  --radius-sm: 8px;
  --radius-lg: 32px;
  --transition: all 0.3s ease;
}

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

/* --- Utility Classes --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-title .en {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.section-subtitle {
  text-align: center;
  color: var(--text-medium);
  font-size: 15px;
  margin-bottom: 60px;
  line-height: 1.9;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
  opacity: 0.9;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary-dark);
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(232, 164, 184, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 164, 184, 0.4);
}

.tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
}

.tag-accent {
  background: var(--accent-light);
  color: var(--accent-dark);
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
}

#header.scrolled {
  background: rgba(246, 240, 227, 0.97);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 2px 20px var(--shadow-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 2px;
}

.logo-text .sub {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 2px;
}

/* ロゴが画像の場合はテキストを非表示 */
.logo-img-only .logo-text { display: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 14px;
  color: #111111;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--primary-dark);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px !important;
  box-shadow: 0 4px 12px var(--shadow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow);
}

.nav-cta::after { display: none; }

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(246, 240, 227, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  font-family: var(--font-serif);
}

.mobile-nav a:hover {
  color: var(--primary-dark);
}

/* ===================================
   HERO SECTION — フルスクリーン写真ヒーロー
   =================================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 背景写真 ── */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease;
}

#hero.loaded .hero-bg-img {
  transform: scale(1);
}

/* ── グラデーションオーバーレイ ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(75, 43, 31, 0.18) 0%,
      rgba(75, 43, 31, 0.42) 50%,
      rgba(75, 43, 31, 0.72) 100%
    );
}

/* ── コンテンツ全体 ── */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 100px 24px 80px;
  gap: 0;
}

/* ── ロゴ ── */
.hero-logo-wrap {
  margin-bottom: 28px;
  animation: fadeInUp 0.9s ease both;
}

.hero-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(255,255,255,0.55));
}

/* ── キャッチコピー ── */
.hero-copy {
  animation: fadeInUp 0.9s 0.2s ease both;
  margin-bottom: 24px;
}

.hero-sub-en {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: clamp(24px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(75,43,31,0.35);
}

.hero-accent {
  color: var(--primary-light);
}

.hero-lead {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255,255,255,0.90);
  line-height: 1.9;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

.hero-store-name {
  display: inline-block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ── バッジ群 ── */
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
  animation: fadeInUp 0.9s 0.35s ease both;
}

.hero-badge-item {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.42);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  white-space: nowrap;
  text-shadow: none;
  letter-spacing: 0.5px;
}

/* ── CTAボタン ── */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.9s 0.5s ease both;
}

.hero-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e8604a, #c94030);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(200,80,60,0.55);
  transition: var(--transition);
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}

.hero-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(200,80,60,0.65);
  background: linear-gradient(135deg, #d4533d, #b83328);
}

.hero-btn-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 2px solid #fff;
  color: #7a3a2a;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.hero-btn-sub:hover {
  background: #fff;
  color: #c94030;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

/* ── スクロール誘導 ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
}

/* ── コンセプト画像（写真表示対応） ── */
.concept-shop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.concept-image {
  position: relative;
  border-radius: 20px 60px 20px 60px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.concept-image:hover .concept-shop-img {
  transform: scale(1.04);
}

.concept-img-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(75,43,31,0.68);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  letter-spacing: 3px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.concept-lead {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 16px;
  font-weight: 600;
}

/* 旧カードのスタイルを残す（他ページ用） */
.hero-float-card { display: none; }
.hero-bg-shapes  { display: none; }
.hero-collage    { display: none; }

/* ===================================
   NEWS / ANNOUNCEMENT
   =================================== */
#news {
  background: var(--brown);
  padding: 14px 0;
  overflow: hidden;
}

.news-ticker {
  display: flex;
  align-items: center;
  gap: 24px;
}

.news-label {
  background: var(--cream);
  color: var(--brown);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 1px;
}

.news-items {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

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

.news-item {
  color: var(--white);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-item span {
  opacity: 0.7;
  font-size: 11px;
}

/* ===================================
   CONCEPT SECTION
   =================================== */
#concept {
  background: var(--cream-lt);
  padding: 100px 0;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.concept-image {
  border-radius: 20px 60px 20px 60px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.concept-image .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--beige), var(--primary-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-size: 48px;
  gap: 12px;
}

.concept-image .img-placeholder p {
  font-size: 14px;
}

.concept-text .label {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.concept-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.concept-text p {
  color: var(--text-medium);
  line-height: 2;
  margin-bottom: 16px;
  font-size: 15px;
}

.concept-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.value-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--beige-dk);
  transition: var(--transition);
}

.value-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px var(--shadow);
}

.value-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item p {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
}

/* ===================================
   SERVICES (PAN & COOKIE)
   =================================== */
#services {
  padding: 100px 0;
  background: var(--beige);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(91,56,42,0.08);
  transition: var(--transition);
  border: 1.5px solid var(--beige-dk);
  background: var(--cream-lt);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}

.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.service-card-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  gap: 12px;
  font-weight: 300;
}

.service-card-img .img-placeholder p {
  font-size: 15px;
}

.pan-bg {
  background: linear-gradient(135deg, var(--beige), var(--cream));
}

.cookie-bg {
  background: linear-gradient(135deg, var(--primary-light), var(--beige));
}

.service-card-body {
  padding: 28px;
}

.service-card-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card-tag.pink { color: var(--accent-dark); }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.feature-chip {
  background: var(--cream);
  color: var(--text-medium);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--beige-dk);
}

.feature-chip i {
  font-size: 11px;
  color: var(--primary-dark);
}

.feature-chip.pink i { color: var(--accent-dark); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  transition: var(--transition);
}

.service-link.pink { color: var(--accent-dark); }

.service-link:hover {
  gap: 10px;
}

/* ===================================
   WORKSHOP FLOW
   =================================== */
#workshop-flow {
  background: linear-gradient(160deg, var(--cream) 0%, var(--beige) 60%, var(--cream-dk) 100%);
  padding: 100px 0;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--beige-dk));
  z-index: 0;
}

.flow-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  position: relative;
}

.step-num::after {
  content: attr(data-num);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--brown);
  border-radius: 50%;
  font-size: 11px;
  color: white;
  font-family: var(--font-number);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
}

.step-1 .step-num { background: var(--primary-light); }
.step-2 .step-num { background: var(--mint-lt); }
.step-3 .step-num { background: var(--lavender-lt); }
.step-4 .step-num { background: var(--gold-lt); }

.flow-step h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-family: var(--font-serif);
}

.flow-step p {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ===================================
   STORY / ABOUT
   =================================== */
#story {
  padding: 100px 0;
  background: var(--cream-lt);
}

.story-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  order: 2;
}

.story-img-container {
  position: relative;
}

.story-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px 40px 8px 40px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.story-img-main .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--beige), var(--primary-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-size: 56px;
  gap: 16px;
}

.story-img-main .img-placeholder p {
  font-size: 13px;
}

.story-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(91,56,42,0.2);
  padding: 16px;
  text-align: center;
}

.story-img-accent .accent-text {
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--brown);
  font-weight: 600;
  line-height: 1.4;
}

.story-text { order: 1; }

.story-text .label {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
}

.story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.story-quote {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 24px;
}

.story-quote p {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
}

.story-text .body-text {
  color: var(--text-medium);
  line-height: 2;
  margin-bottom: 14px;
  font-size: 14px;
}

/* ===================================
   GALLERY SECTION
   =================================== */
#gallery {
  padding: 100px 0;
  background: var(--beige);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 60px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  gap: 10px;
  color: white;
}

.g1 { background: linear-gradient(135deg, var(--beige), var(--primary-light)); min-height: 400px; }
.g2 { background: linear-gradient(135deg, var(--primary-light), var(--primary)); }
.g3 { background: linear-gradient(135deg, var(--mint-lt), var(--mint)); }
.g4 { background: linear-gradient(135deg, var(--gold-lt), var(--gold)); }
.g5 { background: linear-gradient(135deg, var(--lavender-lt), var(--lavender)); }

.gallery-img p {
  font-size: 13px;
  font-weight: 500;
}

/* ===================================
   WORKSHOP PRICING
   =================================== */
#pricing {
  padding: 100px 0;
  background: var(--cream-lt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--cream-lt);
  border-radius: 24px;
  padding: 36px 28px;
  border: 2px solid var(--beige-dk);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 48px var(--shadow);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
}

.pricing-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-price .amount {
  font-size: 36px;
  font-weight: 400;
  color: var(--primary-dark);
  font-family: var(--font-number);
  letter-spacing: 1px;
}

.pricing-price .unit {
  font-size: 14px;
  color: var(--text-light);
}

.pricing-note {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-features {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-medium);
  padding: 6px 0;
  border-bottom: 1px solid var(--beige);
}

.pricing-features li i {
  color: var(--primary-dark);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===================================
   TESTIMONIALS / VOICES
   =================================== */
#voices {
  padding: 100px 0;
  background: var(--beige);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.voice-card {
  background: var(--cream-lt);
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--beige-dk);
  transition: var(--transition);
  position: relative;
}

.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
  border-color: var(--primary-light);
}

.voice-quote {
  position: absolute;
  top: -14px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--primary-light);
  line-height: 1;
}

.voice-text {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 20px;
  font-style: italic;
}

.voice-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--beige));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.voice-info .name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.voice-info .type {
  font-size: 12px;
  color: var(--text-light);
}

.voice-stars {
  color: #f59e0b;
  font-size: 13px;
  margin-top: 4px;
}

/* ===================================
   ACCESS / MAP SECTION
   =================================== */
#access {
  padding: 100px 0;
  background: var(--cream-lt);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 60px;
  align-items: start;
}

.access-info-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 40px;
  border: 1.5px solid var(--beige-dk);
  box-shadow: 0 8px 24px rgba(91,56,42,0.07);
}

.access-info-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--text-dark);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary-light);
}

.info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--beige);
  font-size: 14px;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--text-light);
  font-size: 12px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding-top: 2px;
}

.info-label i {
  color: var(--primary-dark);
  margin-top: 2px;
}

.info-value {
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.7;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  background: var(--secondary-light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--text-medium);
}

.map-container i {
  font-size: 48px;
  color: var(--primary-dark);
}

.map-placeholder-text {
  font-size: 14px;
  text-align: center;
}

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

/* ===================================
   SNS / INSTAGRAM SECTION
   =================================== */
#sns {
  padding: 100px 0;
  background: var(--cream);
}

.sns-content {
  text-align: center;
}

.sns-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 48px 0;
}

.sns-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.sns-item:hover {
  transform: scale(1.05);
}

.sns-item .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  gap: 4px;
}

.sns-item .img-placeholder p {
  font-size: 10px;
}

.sn1 { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.sn2 { background: linear-gradient(135deg, var(--beige), var(--beige-dk)); }
.sn3 { background: linear-gradient(135deg, var(--gold-lt), var(--gold)); }
.sn4 { background: linear-gradient(135deg, var(--mint-lt), var(--mint)); }
.sn5 { background: linear-gradient(135deg, var(--primary-light), var(--primary)); }
.sn6 { background: linear-gradient(135deg, var(--lavender-lt), var(--lavender)); }

.sns-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e1306c, #833ab4);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.3);
}

.sns-follow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(225, 48, 108, 0.4);
}

/* ===================================
   CONTACT CTA SECTION
   =================================== */
#contact-cta {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--primary-light) 0%, var(--beige) 50%, var(--cream) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.2'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 40px);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.cta-content p {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 36px;
  line-height: 1.8;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */
#footer {
  background: var(--brown);
  padding: 60px 0 24px;
  color: var(--beige-dk);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-text .name {
  color: var(--white);
}

.footer-brand .logo-mark {
  box-shadow: none;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: #888;
  margin-bottom: 20px;
}

.footer-sns {
  display: flex;
  gap: 12px;
}

.footer-sns a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brown-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige-dk);
  font-size: 15px;
  transition: var(--transition);
}

.footer-sns a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-col ul li {
  padding: 6px 0;
}

.footer-col ul li a {
  font-size: 13px;
  color: #888;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid var(--brown-lt);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: #666;
}

/* ===================================
   PAGE HERO (Sub Pages)
   =================================== */
.page-hero {
  background: linear-gradient(160deg, var(--cream-lt) 0%, var(--cream) 50%, var(--primary-light) 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--cream-lt);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.page-hero .en-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 48px);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.35;
}

.page-hero p {
  font-size: 15px;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ===================================
   BREADCRUMB
   =================================== */
.breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid var(--beige-dk);
  background: var(--cream);
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumb ul li a {
  color: var(--text-light);
}

.breadcrumb ul li a:hover {
  color: var(--primary-dark);
}

.breadcrumb ul li i {
  font-size: 10px;
}

/* ===================================
   SCROLL TOP BUTTON
   =================================== */
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}

#scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

#scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow);
}

/* ===================================
   LINE 誘導スタイル
   =================================== */

/* フローティングLINEボタン */
#line-float {
  position: fixed;
  bottom: 90px;
  right: 32px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(10px);
}
#line-float.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#line-float a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #06C755;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(6,199,85,0.45);
  justify-content: center;
  font-size: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
#line-float a:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 28px rgba(6,199,85,0.55);
}
#line-float .line-float-label {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: #06C755;
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(6,199,85,0.3);
}

/* LINE バナー帯（ヒーロー直下） */
#line-banner {
  background: linear-gradient(135deg, #06C755 0%, #04a844 100%);
  padding: 18px 0;
  text-align: center;
}
.line-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.line-banner-icon {
  font-size: 32px;
  color: #fff;
  line-height: 1;
}
.line-banner-text {
  color: #fff;
}
.line-banner-text strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.line-banner-text span {
  font-size: 13px;
  opacity: 0.92;
}
.line-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #06C755;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.line-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* LINE CTAセクション */
#line-cta {
  background: linear-gradient(135deg, #f0fff5 0%, #e6fef0 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 3px solid #06C755;
  border-bottom: 3px solid #06C755;
}
.line-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.line-cta-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  padding: 10px 28px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.line-cta-logo i { font-size: 26px; }
.line-cta-inner h2 {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  color: #1a5c2a;
  margin-bottom: 12px;
  line-height: 1.5;
}
.line-cta-inner p {
  color: #3a7a4a;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 32px;
}
.line-cta-benefits {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.line-benefit-item {
  background: #fff;
  border: 2px solid #06C755;
  border-radius: 16px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #1a5c2a;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 12px rgba(6,199,85,0.12);
}
.line-benefit-item i { color: #06C755; font-size: 16px; }
.line-cta-qr-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.line-cta-qr-box {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 6px 24px rgba(6,199,85,0.15);
  border: 2px solid #b2f0c5;
  text-align: center;
}
.line-cta-qr-box img {
  width: 130px;
  height: 130px;
  display: block;
  margin: 0 auto 8px;
}
.line-cta-qr-box p {
  font-size: 12px;
  color: #3a7a4a;
  margin: 0;
  font-weight: 600;
}
.line-cta-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(6,199,85,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.line-cta-add-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(6,199,85,0.5);
}
.line-cta-add-btn i { font-size: 22px; }

/* フッターLINE枠 */
.footer-line-box {
  background: #06C755;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  margin-top: 8px;
}
.footer-line-box img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.footer-line-box p {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-line-box a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #06C755;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 50px;
  transition: transform 0.2s ease;
  text-decoration: none;
}
.footer-line-box a:hover { transform: scale(1.05); }

/* レスポンシブ */
@media (max-width: 768px) {
  #line-float { bottom: 80px; right: 20px; }
  #line-float a { width: 52px; height: 52px; font-size: 24px; }
  .line-cta-qr-area { flex-direction: column; }
  .line-cta-benefits { gap: 10px; }
  .line-benefit-item { padding: 10px 14px; font-size: 12px; }
  .line-cta-add-btn { font-size: 16px; padding: 15px 30px; }
}

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

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  /* ── ヒーロー（フルスクリーン写真） ── */
  .hero-logo-img { height: 80px; }
  .hero-title { font-size: clamp(22px, 6vw, 36px); }
  .hero-lead  { font-size: 13px; }
  .hero-store-name { font-size: 16px; }
  .hero-badge-item { font-size: 12px; padding: 6px 14px; }
  .hero-btn-main, .hero-btn-sub { font-size: 13px; padding: 11px 22px; }
  .hero-inner { padding: 90px 16px 70px; gap: 0; }

  .hero-btns { justify-content: center; }
  
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .flow-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .flow-steps::before {
    display: none;
  }
  
  .story-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-image { order: -1; }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-item.large { grid-row: span 1; }
  .g1 { min-height: 200px; }
  
  .voices-grid {
    grid-template-columns: 1fr;
  }
  
  .access-grid {
    grid-template-columns: 1fr;
  }
  
  .sns-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .concept-values {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .section-padding { padding: 60px 0; }
  
  .flow-steps {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .sns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* ===================================
   PRINT STYLES (チラシ用)
   =================================== */
@media print {
  #header, #footer, #scroll-top, .hero-btns { display: none !important; }
  body { font-size: 12px; }
  .container { max-width: 100%; padding: 0 16px; }
}
