/* ================================================
   美美Style Sally - Main Stylesheet
   ================================================ */

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

:root {
  /* カラーパレット — Bibi Styleバナー版（ティール × ゴールド × コーラル） */
  --color-primary: #3DA5A5;      /* ティール — メインアクセント */
  --color-primary-light: #7BC3C3; /* ライトティール */
  --color-primary-dark: #2A8585;  /* ディープティール */
  --color-accent: #C4A875;       /* シャンパンゴールド — アクセント */
  --color-accent-dark: #A68A5C;  /* ダークゴールド */
  --color-accent-light: #D9C298; /* ライトゴールド */
  --color-coral: #E8A5A0;        /* コーラルピンク — CTAアクセント */
  --color-coral-dark: #D98880;   /* ダークコーラル */
  --color-bg: #F5F8F8;           /* クリスタルホワイト — 背景 */
  --color-bg-alt: #E8EFEF;       /* ペールティール — セクション交互背景 */
  --color-bg-accent: #EAF4F4;    /* ライトアクア — お茶会セクション */
  --color-text: #2C3E3E;         /* ダークティールグレー — 本文 */
  --color-text-light: #5A7070;   /* ミディアムティールグレー */
  --color-text-muted: #889898;   /* グレー */
  --color-white: #ffffff;
  --color-line: #06c755;         /* LINE公式グリーン */
  --color-line-hover: #05b04c;

  /* フォント */
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --font-heading: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;

  /* サイズ */
  --container-max: 1100px;
  --section-padding: 5rem 0;
  --border-radius: 12px;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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


a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-accent-dark);
}

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

/* ---------- セクション見出し ---------- */
.section-heading-en {
  font-family: 'Dancing Script', cursive;
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--color-accent);
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
  opacity: 1;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.section-intro {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
}

/* ---------- プレースホルダー画像 ---------- */
.image-placeholder {
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-primary-light));
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: var(--color-text-light);
  font-size: 0.9rem;
  border: 2px dashed var(--color-primary-light);
  gap: 0.25rem;
}

.image-placeholder--small {
  min-height: 160px;
  font-size: 0.85rem;
}

.image-placeholder--qr {
  min-height: 160px;
  width: 160px;
  border-radius: 8px;
}

/* ========== ナビゲーション ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 248, 248, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 168, 117, 0.25);
}

.nav {
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

img.nav-logo-img {
  height: 48px;
  width: 48px;
  max-width: none;
  display: inline-block;
  vertical-align: middle;
  mix-blend-mode: multiply;
  object-fit: contain;
  margin-right: 8px;
}

.nav-logo:hover {
  color: var(--color-accent-dark);
}

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

.nav-menu a {
  color: var(--color-text);
  font-size: 0.9rem;
  white-space: nowrap;
  font-weight: 400;
  transition: color 0.2s;
}

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

.nav-cta {
  background: #3DA5A5;
  color: #fff !important;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem !important;
  border: none;
  box-shadow: 0 2px 6px rgba(61, 165, 165, 0.4);
  margin-right: 0;
}

.nav-cta:hover {
  background: #2A8585;
  color: #fff !important;
}

/* ハンバーガー */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

/* ========== ① ヒーローセクション ========== */
.hero {
  display: flex;
  justify-content: center;
  height: calc(100vh - 72px - 2rem);
  min-height: 600px;
  margin: 1rem 1.5rem 0;
  border-radius: 24px;
  overflow: hidden;
  margin-top: 72px;
  background-image: url('img/main-long-hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}

.hero-bg {
  position: relative;
  width: 65%;
  flex-shrink: 0;
}

.hero-naorin-card {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,0.18);
  width: 140px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-naorin-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

img.hero-naorin-img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  background: #f8f8f8;
  padding: 8px;
}

.hero-naorin-text {
  font-size: 0.6rem;
  line-height: 1.5;
  text-align: center;
  color: #2C3E3E;
  padding: 0.4rem 0.5rem 0.5rem;
}

.hero-naorin-text strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.65rem;
  color: #06C755;
}

.hero-overlay {
  position: relative;
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  background-color: rgba(245, 248, 248, 0.9);
  padding: 2rem 2rem 48px;
  color: var(--color-text);
}

.hero-text {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hero-logo {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-heading);
  text-align: center;
  line-height: 1.6;
  margin: 0 0 1.2rem;
  color: var(--color-text);
}

.hero-title-line1 {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-title-main {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.hero-sns {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 0.8rem;
  width: 100%;
}

.hero-sns a {
  color: #3DA5A5;
  opacity: 0.8;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
}

.hero-sns a:hover {
  opacity: 1;
}


.hero-lead-sub {
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 2.2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.6;
  margin-top: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

/* ── デスクトップ用：キャッチコピー吹き出し ── */
.hero-catchcopy {
  display: none;                      /* モバイル／タブレットでは非表示 */
}

@media (min-width: 1024px) {
  /* 1. ヒーロー全体：1スクロール分（100vh）に固定 */
  .hero {
    display: block !important;
    height: calc(100vh - 72px - 2rem) !important;
    min-height: auto !important;
    margin: calc(72px + 1rem) 1.5rem 0;
    background-image: url('img/main-long-hero.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
  }

  /* 2. 器（inner）：高さも100%にする */
  .hero-inner {
    position: relative;
    width: 1200px;
    height: 100%;
    margin: 0 auto;
  }

  /* 左のメッセージボード */
  .hero-catchcopy {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute !important;
    top: 60px !important;
    left: 340px !important;
    width: 380px !important;
    padding: 1.5rem 2rem;
    z-index: 100;
    font-family: var(--font-heading) !important;
    font-size: 1.25rem;
    font-weight: 700;
    background: #fff;
    border-radius: 80px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    color: var(--color-text);
    text-align: center;
    line-height: 1.5;
  }

  /* 打ち終わったらカーソルを消す */
  .hero-catchcopy.typing-done {
    border-right-color: transparent;
    animation: none;
  }

  /* 三角（しっぽ）を削除 */
  .hero-catchcopy::after {
    content: none;
  }

  /* 3. 右のパネル：画面全体の右端に固定 */
  .hero-overlay {
    position: absolute !important;
    top: 0;
    right: calc(50% - 50vw) !important;
    width: 480px;
    height: 100%;
    background-color: rgba(245, 248, 248, 0.98) !important;
    padding: 60px 30px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* タイトルの位置だけを上にずらす */
  .hero-title {
    transform: translateY(-20px);
  }

  /* 文字が絶対に改行しない設定 */
  .hero-title-main, .hero-card-name {
    white-space: nowrap !important;
  }

  .hero-title-main { font-size: 2.4rem; }
  .hero-card-name { font-size: 1.05rem; }

  /* カードなどの要素も少しスリムに */
  .hero-card-img {
    height: 160px !important;
  }

  /* 右パネルのキャッチコピー（元の位置）は非表示 */
  .hero-lead-sub {
    display: none;
  }
}

.hero-sub {
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  font-weight: 300;
  margin-bottom: 0.25rem;
  letter-spacing: 0.08em;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero {
  background: #3DA5A5;
  color: #fff;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 50px;
  min-width: 200px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 10px rgba(61, 165, 165, 0.4);
  transition: all 0.3s;
}

.btn-hero:hover {
  background: #2A8585;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(61, 165, 165, 0.4);
}

.btn-line-hero {
  background: #3DA5A5;
  color: #fff;
  margin-top: 1.5rem;
  width: 100%;
  padding: 1.1rem 1.4rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(61, 165, 165, 0.4);
}

.btn-line-hero:hover {
  background: #2A8585;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(61, 165, 165, 0.4);
}

.btn-line-hero .ochakai-btn-text {
  gap: 0.35rem;
}

.btn-line-hero .ochakai-btn-main {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
}

.btn-line-hero .ochakai-btn-sub {
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  padding: 0.22rem 0.9rem;
}

.hero-cards {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  width: 100%;
}

.hero-card {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-decoration: none;
  transition: transform 0.3s;
}

.hero-card:hover {
  transform: translateY(-3px);
}

.hero-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hero-card-name {
  display: block;
  padding: 0.5rem 0.5rem 0;
  font-size: clamp(0.85rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--color-text);
}

.hero-card-label {
  display: block;
  padding: 0.2rem 0.5rem 0.5rem;
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* ========== ② ストーリー ========== */
.story-photo {
  width: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.story-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-photo:first-child {
  max-height: 400px;
}

.story-photo:last-child {
  max-height: 350px;
}

.ochakai-photo {
  width: 100%;
  border-radius: var(--border-radius);
  object-fit: contain;
  max-height: 400px;
}

.menu-card-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.line-mascot-img {
  max-width: 200px;
  border-radius: var(--border-radius);
}

.line-cta-mascot {
  text-align: center;
}

.story {
  padding: var(--section-padding);
  background: #F0F5F5;  /* ウォームベージュ */
}

.story-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

/* ストーリーブロック（画像＋テキスト交互レイアウト） */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.story-block--img-right {
  direction: rtl;
}

.story-block--img-right > * {
  direction: ltr;
}

.story-block-img img {
  width: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.story-block-text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 2;
}

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

.story-text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 2;
}

.story-accent {
  font-weight: 500;
  color: var(--color-accent-dark);
  font-size: 1.05rem !important;
}

.story-highlight {
  font-family: var(--font-heading);
  font-size: 1.1rem !important;
  font-weight: 500;
  color: var(--color-accent);
  padding: 1rem 0;
  border-top: 1px solid var(--color-primary-light);
}

.story-links {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-bg-alt);
}

.story-note-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.story-note-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.story-note-links a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--color-primary-light);
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.story-note-links a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.story-cta-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-accent);
  font-weight: 500;
}

/* ========== ③ お茶会 ========== */
.ochakai {
  padding: var(--section-padding);
  background: #EEF5F3;  /* ミルクティー */
  position: relative;
  overflow: hidden;
}

.ochakai::before {
  content: '☕';
  position: absolute;
  font-size: 8rem;
  opacity: 0.045;
  top: 1.5rem;
  right: 2rem;
  pointer-events: none;
  transform: rotate(-12deg);
}

.ochakai::after {
  content: '☕';
  position: absolute;
  font-size: 5rem;
  opacity: 0.035;
  bottom: 2rem;
  left: 3rem;
  pointer-events: none;
  transform: rotate(8deg);
}

.ochakai-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.ochakai-text {
  padding: 2rem 2rem 1rem;
}

.ochakai-text p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.ochakai-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 0 2rem 2rem;
  align-items: center;
}

.ochakai-bottom-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ochakai-photo {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: var(--border-radius);
}

.ochakai-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ochakai-details {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg);
  border-radius: var(--border-radius);
}

.ochakai-details dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.2rem;
}

.ochakai-details dt {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-accent-dark);
}

.ochakai-details dd {
  font-size: 0.9rem;
  color: var(--color-text);
}

.ochakai-cta {
  padding: 0 2rem 2rem;
  text-align: center;
}

.ochakai-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 480px;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #3DA5A5;
  color: #fff;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.5;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}

.btn-primary:hover {
  background: #2A8585;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 165, 165, 0.3);
}

.btn-line {
  background: #3DA5A5;
  color: #fff;
}

.btn-line:hover {
  background: #2A8585;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 165, 165, 0.3);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}

.ochakai .btn-line {
  background: #3DA5A5;
}

.ochakai .btn-line:hover {
  background: #2A8585;
  box-shadow: 0 4px 12px rgba(61, 165, 165, 0.3);
}

.btn-line--large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.icon-line {
  flex-shrink: 0;
}

/* ========== ④ メニュー ========== */
.menu {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.menu-lead {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1rem;
  line-height: 2;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.menu-grid-item {
  display: flex;
  flex-direction: column;
}

.menu-card {
  display: block;
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: var(--color-text);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  color: var(--color-text);
}

.menu-card-image {
  overflow: hidden;
}

.menu-card-body {
  padding: 0.8rem 1rem;
  text-align: center;
}

.menu-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.menu-card-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.menu-card-copy {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.menu-card-price {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.menu-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.2rem 0.75rem;
  background: var(--color-bg-alt);
  border-radius: 50px;
  color: var(--color-text-muted);
}

/* ---------- お客様の声カード ---------- */
.voice-card {
  margin-top: 1.5rem;
  padding: 1.2rem 1.2rem 1rem;
  background: #F8FBFB;
  border-radius: var(--border-radius);
  border: 2.25px dashed var(--color-primary);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 0.9rem;
  align-items: center;
  height: 8rem;
}

.voice-card-icon {
  flex-shrink: 0;
  width: 64px;
  height: auto;
}

.voice-card-body {
  flex: 1;
}

.voice-card-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #2C3E3E;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.voice-card-text mark {
  background: linear-gradient(transparent 70%, rgba(255, 220, 50, 0.45) 70%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.voice-card-meta {
  font-size: 0.72rem;
  color: #5A7070;
  text-align: right;
}

.menu-footer-text {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.menu-footer-text a {
  font-weight: 500;
}

/* ========== ステップセクション（index.html） ========== */
.step-section {
  padding: var(--section-padding);
}

.step-section--1 {
  background: #EAF5F3;  /* ソフトローズ */
}

.step-section--2 {
  background: #E8F0EE;  /* シェルピンク */
}

.step-section--3 {
  background: #EEF2F0;  /* サンドベージュ */
}

.step-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.step-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.step-lead {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 2;
}

.step-lead p {
  margin-bottom: 1rem;
}

.step-lead p:last-child {
  margin-bottom: 0;
}

/* ステップセクション内のメニューグリッド: 2カード並び */
.step-section .menu-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .step-section .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== ステップ区切り（menu.html） ========== */
.step-divider {
  padding: 2.5rem 0 1rem;
  background: var(--color-bg-accent);
}

.step-divider-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
}

/* menu-toc ステップラベル */
.menu-toc-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  padding: 0.4rem 0.75rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
}


@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--color-accent); }
}

/* ========== ⑥ LINE CTA ========== */
.line-cta {
  padding: var(--section-padding);
  background: #EBF3F2;  /* ラベンダーピンク */
}

.line-cta-text {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 2;
}

.line-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.line-cta-qr {
  text-align: center;
}

.line-cta-id {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

/* ========== フッター ========== */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  justify-items: start;
  align-items: start;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-grid > div {
  padding: 0;
  margin: 0;
}

.footer-profile p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-profile a {
  color: var(--color-primary-light);
}

.footer-profile a:hover {
  color: var(--color-white);
}

.footer-sns-list,
.footer-info-list,
.footer-links-list {
  list-style: none;
}

.footer-sns-list li,
.footer-info-list li,
.footer-links-list li {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.footer-sns-list a,
.footer-links-list a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.footer-sns-list a:hover,
.footer-links-list a:hover {
  color: var(--color-white);
}

.footer-stamp {
  display: flex;
  align-items: flex-start;
  justify-self: center;
}

.footer-stamp-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  max-width: 180px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-stamp-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

img.footer-stamp-icon {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  background: #f8f8f8;
  padding: 12px;
}

.footer-stamp-text {
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  color: #2C3E3E;
  padding: 0.6rem 0.8rem 0.8rem;
}

.footer-stamp-text strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #06C755;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* スマホ専用ヒーロー画像／タイトル：デフォルトでは非表示 */
.hero-mobile-img,
.hero-title-mobile {
  display: none;
}

/* ========== ヒーロー：タブレット対応 ========== */
@media (max-width: 1023px) {
  .hero {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column;
    max-width: none;
    height: auto;
  }

  .hero-bg {
    width: 100%;
    min-height: 50vh;
    background-position: center top;
  }

  .hero-overlay {
    position: relative;
    width: 100%;
    padding: 2.5rem 1.5rem;
  }
}

/* ========== レスポンシブ ========== */
@media (max-width: 768px) {

  /* スマホでの横スクロール防止（セーフガード） */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* ナビゲーション */
  .nav {
    padding: 0 16px;
  }

  /* ロゴ文字を少し小さく（スマホ用） */
  .nav-logo {
    font-size: 1.15rem;
    gap: 0.3rem;
  }

  /* ========== スマホ専用ヒーロー ========== */
  .hero {
    background-image: none !important;  /* 横長PC画像はスマホでは出さない */
    margin: calc(64px + 0.75rem) 0.75rem 0;
    padding: 0;
    border-radius: 18px;
  }

  .hero-bg {
    position: relative;
    width: 100%;
    min-height: 0;
    background-image: none;
    height: 58vh;
    max-height: 460px;
    overflow: hidden;
    border-radius: 18px;
  }

  .hero-mobile-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    position: absolute;
    inset: 0;
  }

  /* タイトルを画像の上に重ねる */
  .hero-title-mobile {
    display: block !important;
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 5;
    text-align: center;
    margin: 0;
    padding: 0 1rem;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.6);
  }

  .hero-title-mobile .hero-title-line1 {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
  }

  .hero-title-mobile .hero-title-main {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.05em;
    line-height: 1.3;
  }

  /* 既存の .hero-overlay 内タイトルはスマホでは隠す（重複防止） */
  .hero-overlay > .hero-text > .hero-title {
    display: none;
  }

  /* オーバーレイをコンパクトに */
  .hero-overlay {
    padding: 0.6rem 0.8rem 1rem !important;
    background: var(--color-bg);
  }

  /* カードを少しコンパクトに */
  .hero-cards {
    margin-top: 0;
    gap: 0.5rem;
  }

  .hero-card-img {
    height: 80px;
  }

  .hero-card-name {
    font-size: 0.8rem;
    padding: 0.3rem 0.4rem 0;
  }

  .hero-card-label {
    font-size: 0.65rem;
    padding: 0.1rem 0.4rem 0.3rem;
  }

  /* LINEボタンを引き締める */
  .btn-line-hero {
    margin-top: 0.6rem;
    padding: 0.85rem 1rem;
  }

  /* SNSアイコンは下方へ（1画面外でOK） */
  .hero-sns {
    margin-top: 1rem;
    justify-content: center;
  }

  img.nav-logo-img {
    height: 36px;
    width: 36px;
    margin-right: 4px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.is-open {
    display: flex;
  }


  .nav-menu li {
    text-align: center;
  }

  .nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
  }

  .nav-cta {
    margin: 0.5rem 1.5rem;
    text-align: center;
  }

  .btn-line-hero {
    padding: 0.8rem 1rem;
  }

  /* ストーリー */
  .story-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-images {
    order: -1;
  }

  .story-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .story-block--img-right {
    direction: ltr;
  }

  /* お茶会 */
  .ochakai-bottom {
    grid-template-columns: 1fr;
  }

  .ochakai-text {
    padding: 1.5rem 1.5rem 1rem;
  }

  .ochakai-bottom {
    padding: 0 1.5rem 1.5rem;
  }

  /* メニュー */
  .menu-grid {
    grid-template-columns: 1fr;
  }

  /* LINE CTA */
  .line-cta-buttons {
    flex-direction: column;
    gap: 2rem;
  }

  /* フッター */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 3.5rem 0;
  }

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

  .story-note-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* ========== メニュー詳細ページ ========== */
.page-hero {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, var(--color-bg-accent), var(--color-bg-alt));
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--color-text-light);
}

/* 目次ナビ */
.menu-toc {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-bg-alt);
  position: sticky;
  top: 64px;
  z-index: 100;
  overflow-x: auto;
}

.menu-toc-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0.75rem 0.5rem;
}

.menu-toc-list li {
  display: flex;
  align-items: center;
}

.menu-toc-list li:not(:last-child)::after {
  content: "｜";
  color: var(--color-text-muted);
  opacity: 0.5;
  font-size: 0.85rem;
  margin: 0 0.15rem;
}

.menu-toc-list a {
  display: block;
  padding: 0.35rem 0.75rem;
  font-size: 0.88rem;
  color: var(--color-text-light);
  border-radius: 50px;
  transition: all 0.2s;
  white-space: nowrap;
}

.menu-toc-list a:hover {
  background: var(--color-bg-accent);
  color: var(--color-primary-dark);
}

/* セット割・割引・お申込みの二行目（強調） */
.menu-toc-list--secondary {
  padding-top: 0;
}

.menu-toc-item--highlight a {
  background: rgba(196, 168, 117, 0.14);
  color: var(--color-accent-dark);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px var(--color-accent);
}

.menu-toc-item--highlight a:hover {
  background: var(--color-accent);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--color-accent-dark);
}

/* スマホでは文字小さく＆余白詰める */
@media (max-width: 600px) {
  .menu-toc-list {
    padding: 0.6rem 0.25rem;
  }
  .menu-toc-list a {
    padding: 0.3rem 0.5rem;
    font-size: 0.78rem;
  }
  .menu-toc-list li:not(:last-child)::after {
    font-size: 0.75rem;
    margin: 0 0.05rem;
  }
}

/* メニュー詳細セクション */
.menu-detail {
  padding: 4rem 0;
  background: var(--color-bg);
}

.menu-detail--alt {
  background: var(--color-bg-alt);
}

.menu-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.menu-detail-copy {
  text-align: center;
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.menu-detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* 新レイアウト: 画像｜テキスト */
.menu-detail-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.menu-detail-right {
  display: flex;
  flex-direction: column;
}

.menu-detail-right .menu-detail-text {
  flex: 1;
}

.menu-detail-right .menu-detail-price-inline {
  margin-top: auto;
  padding: 0.75rem 1rem;
  background: var(--color-bg-alt);
  border-radius: 8px;
  font-size: 0.95rem;
  border-left: 4px solid var(--color-accent);
}

.menu-detail-right .menu-detail-price-inline strong {
  color: var(--color-accent);
  font-size: 1.1rem;
}

/* 画像エリア（縦長画像を自然に表示） */
.menu-detail-image {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.menu-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

/* ========== 価格＋LINE CTA バンド ========== */
.menu-detail-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, #FFF8F2 0%, #FDF1E6 100%);
  border-radius: var(--border-radius);
  border: 1px solid #F0E0CC;
  box-shadow: 0 2px 12px rgba(180, 130, 80, 0.08);
}

.menu-detail--alt .menu-detail-cta {
  background: linear-gradient(135deg, #F4FAF8 0%, #E9F4F0 100%);
  border-color: #D8EAE3;
  box-shadow: 0 2px 12px rgba(80, 140, 130, 0.08);
}

.menu-detail-cta-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.menu-detail-cta-prices {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.menu-detail-cta-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.menu-detail-cta-label {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
}

.menu-detail-cta-amount {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.menu-detail-cta-tax {
  font-size: 0.8rem;
  color: #888;
}

.menu-detail-cta-sub {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.55;
  margin-top: -0.2rem;
}

.menu-detail-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.95rem 2.4rem 0.95rem 3.2rem;
  background: #3DA5A5;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(61, 165, 165, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.menu-detail-cta-button:hover {
  background: #2A8585;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(61, 165, 165, 0.45);
}

.menu-detail-cta-button svg {
  flex-shrink: 0;
}

/* アイコンを絶対配置にしてテキストを真ん中に揃える */
.menu-detail-cta-button {
  position: relative;
  justify-content: center;
}

.menu-detail-cta-button > svg {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.cta-btn-text,
.ochakai-btn-text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  gap: 0.15rem;
}

.cta-btn-main,
.ochakai-btn-main {
  font-size: 1rem;
  font-weight: 700;
}

.cta-btn-sub,
.ochakai-btn-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.18rem 0.7rem;
  background: #fff;
  color: #2A8585;
  border-radius: 999px;
}

/* 個別サービスのCTAボタンだけは横に広げて1行表示 */
.menu-detail-cta-button .cta-btn-sub {
  white-space: nowrap;
  padding: 0.18rem 0.9rem;
}

@media (max-width: 700px) {
  .menu-detail-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }
  .menu-detail-cta-icon {
    align-self: center;
  }
  .menu-detail-cta-row {
    justify-content: center;
  }
  .menu-detail-cta-amount {
    font-size: 1.6rem;
  }
  .menu-detail-cta-button {
    justify-content: center;
    width: 100%;
  }
}

/* ========== セット割対象インラインチップ（価格行内） ========== */
.menu-detail-cta-package-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.3rem;
  padding: 0.2rem 0.7rem 0.2rem 0.25rem;
  background: #fff;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.menu-detail-cta-package-tag:hover {
  background: #FBF6EC;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(196, 168, 117, 0.3);
}

.menu-detail-cta-package-tag-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.14rem 0.5rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  line-height: 1;
}

@media (max-width: 700px) {
  .menu-detail-cta-package-tag {
    font-size: 0.7rem;
    padding: 0.18rem 0.6rem 0.18rem 0.22rem;
  }
  .menu-detail-cta-package-tag-label {
    font-size: 0.62rem;
    padding: 0.12rem 0.45rem;
  }
}

/* ========== 画面右下追従フローティングボタン（セット割誘導） ========== */
.packages-floating {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem 0.85rem 1.1rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(166, 138, 92, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.25s ease;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.packages-floating.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.packages-floating,
.packages-floating:hover,
.packages-floating:focus,
.packages-floating:visited {
  color: #fff;
}

.packages-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(166, 138, 92, 0.55);
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, #8B7245 100%);
}

.packages-floating-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fff;
  color: var(--color-accent-dark);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.packages-floating-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}

.packages-floating-main {
  font-size: 0.95rem;
  font-weight: 700;
}

.packages-floating-sub {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 700px) {
  .packages-floating {
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.7rem 1.1rem 0.7rem 0.85rem;
    gap: 0.5rem;
  }
  .packages-floating-main {
    font-size: 0.85rem;
  }
  .packages-floating-sub {
    font-size: 0.65rem;
  }
  .packages-floating-icon {
    width: 24px;
    height: 24px;
    font-size: 0.62rem;
  }
}

/* ========== コラムカードグリッド ========== */
.menu-detail-columns h3 {
  margin-bottom: 1rem;
}

.column-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.column-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #F0EAE2;
}

.column-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.column-card-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #F5F0EA;
}

.column-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.column-card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.column-card-label {
  display: inline-block;
  align-self: flex-start;
  padding: 0.2rem 0.7rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.column-card-title {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
  font-weight: 500;
  margin: 0;
}

.column-figure {
  margin: 1.75rem 0;
  text-align: center;
}
.column-figure img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}
.column-figure figcaption {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .column-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* 価格CTAカード（コラムカードのグリッドセルに収めるセットレッスン用） */
.column-card--price {
  background: linear-gradient(135deg, #FFF8F2 0%, #FDF1E6 100%);
  border: 1px solid #F0E0CC;
  box-shadow: 0 2px 12px rgba(180, 130, 80, 0.08);
}
.column-card--price:hover {
  transform: none;
  box-shadow: 0 2px 12px rgba(180, 130, 80, 0.08);
}
.column-card--price .column-card-body {
  gap: 0.7rem;
  padding: 1.4rem 1.2rem 1.45rem;
}
.column-card-sub {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}
.column-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 0.2rem;
}
.column-card-price-amount {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.column-card-price-tax {
  font-size: 0.78rem;
  color: #888;
}
.column-card-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  margin-top: 0.3rem;
  background: #3DA5A5;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.column-card-line-btn:hover {
  background: #2A8585;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(61, 165, 165, 0.35);
}


/* おすすめリスト 2カラム */
.menu-detail-recommend ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 2rem;
}

/* 新レイアウト: お客様の声 */
.menu-detail-voices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.menu-detail-voices .voice-card {
  margin: 0;
}

.menu-detail-text p {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.menu-detail-recommend {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: #EAF5F3;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-primary);
}

.menu-detail--alt .menu-detail-recommend {
  background: #F5FAFA;
}

.menu-detail-recommend h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
}

.menu-detail-recommend ul {
  list-style: none;
  padding: 0;
}

.menu-detail-recommend li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text);
}

.menu-detail-recommend li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ========== もっと知りたい方へ（コラムリンク） ========== */
.menu-detail-columns {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: #FBF1F6;
  border-radius: var(--border-radius);
  border-left: 4px solid #D47BA8;
}

.menu-detail--alt .menu-detail-columns {
  background: #FDF6FA;
}

.menu-detail-columns h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #B8548A;
  margin-bottom: 0.8rem;
}

.menu-detail-columns ul {
  list-style: none;
  padding: 0;
}

.menu-detail-columns li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.menu-detail-columns li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #D47BA8;
  font-size: 0.8rem;
  top: 0.25rem;
}

.menu-detail-columns a {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px dashed #D47BA8;
  transition: color 0.2s;
}

.menu-detail-columns a:hover {
  color: #B8548A;
  border-bottom-style: solid;
}

.menu-detail-columns .column-kw {
  font-weight: 700;
  color: #B8548A;
  margin-right: 0.4em;
}

.menu-detail-price-table {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: var(--border-radius);
}

.menu-detail--alt .menu-detail-price-table {
  background: var(--color-bg);
}

.menu-detail-price-table h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-accent-dark);
}

.menu-detail-price-table table {
  width: 100%;
  border-collapse: collapse;
}

.menu-detail-price-table td {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-bg-alt);
}

.menu-detail-price-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--color-accent);
}

/* 割引制度 */
.discounts {
  padding: var(--section-padding);
  background: var(--color-bg-accent);
}

.discount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.discount-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.discount-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.discount-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.discount-badge {
  display: inline-block;
  background: #3DA5A5;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 6px rgba(61, 165, 165, 0.2);
}

/* お申し込みの流れ */
.flow {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.flow-steps {
  max-width: 720px;
  margin: 0 auto;
}

.flow-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: -1.5rem;
  width: 2px;
  background: var(--color-accent-light);
}

.flow-step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.flow-step > h3 {
  flex-shrink: 0;
  width: 9em;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  padding-top: 0.35em;
  line-height: 1.5;
}

.flow-step > p {
  flex: 1;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
  padding-top: 0.5em;
}

.flow-step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.flow-step-content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .flow-step {
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }
  .flow-step > h3 {
    width: auto;
    flex: 1;
    padding-top: 0.5em;
  }
  .flow-step > p {
    flex: 0 0 100%;
    padding-top: 0;
    padding-left: calc(42px + 1.25rem);
    margin-top: -0.25rem;
  }
}

/* フォーム */
.forms {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.form-card {
  display: block;
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.25s;
  color: var(--color-text);
  position: relative;
}

.form-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  color: var(--color-text);
}

.form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.form-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.form-card-arrow {
  font-size: 1.5rem;
  color: var(--color-accent);
}

/* アフターフォロー */
.afterfollow {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.afterfollow-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.afterfollow-content p {
  margin-bottom: 1rem;
  line-height: 1.9;
}

/* メニュー詳細ページ レスポンシブ */
@media (max-width: 768px) {
  .menu-detail-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .menu-detail-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .menu-detail-right {
    height: auto;
  }

  .menu-detail-recommend ul {
    grid-template-columns: 1fr;
  }

  .menu-detail-voices {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

/* ヘッダースクロール時 */
.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ---------- ユーティリティ ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== 法務ページ（特商法・プライバシー） ========== */
.legal-page {
  padding: 60px 0 80px;
  background: #fff;
}
.legal-page .container {
  max-width: 760px;
}
.legal-lead {
  margin: 0 0 32px;
  line-height: 1.9;
}
.legal-heading {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #D0DEDB;
}
.legal-page p {
  line-height: 1.9;
  margin: 0 0 12px;
}
.legal-ol {
  margin: 0 0 16px;
  padding-left: 1.4em;
  line-height: 1.9;
}
.legal-ol li {
  margin-bottom: 6px;
}
.legal-list {
  margin: 0;
}
.legal-list dt {
  font-weight: 700;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid #D0DEDB;
}
.legal-list dt:first-child {
  margin-top: 0;
}
.legal-list dd {
  margin: 10px 0 0;
  padding: 0;
  line-height: 1.9;
}
.legal-contact {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #D0DEDB;
}

/* ========== story.html 専用スタイル ========== */

/* ストーリーヒーロー */
.story-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, var(--color-bg-accent) 0%, var(--color-bg) 100%);
  text-align: center;
}
.story-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 2rem;
}
.story-hero-lead {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

/* ストーリーパネル（イラスト紙芝居） */
.story-panels {
  padding: var(--section-padding);
  background: var(--color-bg);
}
.story-panels--alt {
  background: var(--color-bg-alt);
}
.story-panel {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.story-panel-img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}
.story-panel-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 2.1;
  color: var(--color-text);
}
.story-panel-text p {
  margin-bottom: 1.2rem;
}
.story-panel-text strong {
  font-size: 1.1rem;
}

/* step-section内のstory-panel */
.step-section .story-panel {
  margin-bottom: 2.5rem;
}

/* エピローグ */
.story-epilogue {
  padding: var(--section-padding);
  background: var(--color-bg-accent);
}
.story-epilogue .story-panel {
  margin-bottom: 2rem;
}
.story-epilogue-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 2.1;
  color: var(--color-text);
}
.story-epilogue-text p {
  margin-bottom: 1.5rem;
}
.story-epilogue-highlight {
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem 0;
  color: var(--color-text);
}

/* CTA */
.story-cta {
  padding: var(--section-padding);
  text-align: center;
  background: var(--color-bg);
}
.story-cta-lead {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

/* 追加の声 横並び */
.voice-extra {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

/* 特商法リンクセクション */
.tokushoho-section {
  padding: 3rem 0;
  background: var(--color-bg-alt);
}

/* story.html 用：プロローグ下の目次ナビ */
.story-toc {
  position: sticky;
  top: 72px;
  z-index: 100;
}

/* 目次ナビ アクティブ状態 */
.menu-toc-list a.is-active {
  background: var(--color-primary);
  color: var(--color-white);
}

/* レスポンシブ（story.html） */
@media (max-width: 768px) {
  .story-panel {
    margin-bottom: 2rem;
  }
  .story-panel-text {
    padding: 0 0.5rem;
  }
  .story-hero {
    padding: 6rem 0 3rem;
  }
}

/* ========== おすすめパッケージ ========== */
.packages {
  background: linear-gradient(180deg, #F5F8F8 0%, #EAF4F4 100%);
  padding: 5rem 0;
}

/* セット割アンカーは価格カード手前に着地させる（固定ナビ分のオフセット込み） */
.package-grid#packages {
  scroll-margin-top: 140px;
}

@media (max-width: 700px) {
  .package-grid#packages {
    scroll-margin-top: 110px;
  }
}

.packages-lead {
  text-align: center;
  color: var(--color-text-light);
  margin: 0 auto 3rem;
  max-width: 720px;
  line-height: 1.9;
}

.packages-lead strong {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.package-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 2.25rem 1.75rem 2rem;
  box-shadow: 0 4px 18px rgba(61, 165, 165, 0.1);
  border: 1px solid rgba(196, 168, 117, 0.18);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(61, 165, 165, 0.18);
}

.package-card--featured {
  border: 2px solid var(--color-accent);
  box-shadow: 0 6px 22px rgba(196, 168, 117, 0.25);
  transform: translateY(-6px);
}

.package-card--featured:hover {
  transform: translateY(-10px);
}

.package-badge-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 1.2rem;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(196, 168, 117, 0.35);
}

.package-header {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(196, 168, 117, 0.4);
}

.package-stone {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: 0.15em;
  line-height: 1.2;
}

.package-card--hisui .package-stone {
  color: #3DA5A5;
}
.package-card--kohaku .package-stone {
  color: #C4A875;
}
.package-card--kogane .package-stone {
  color: #A68A5C;
}

.package-stone-en {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

.package-title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.package-price {
  text-align: center;
  margin-bottom: 0.5rem;
}

.package-price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: 0.02em;
}

.package-price-yen {
  font-size: 1.1rem;
  margin-left: 0.15rem;
}

.package-price-tax {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-left: 0.25rem;
}

.package-savings {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.package-savings s {
  color: var(--color-text-muted);
  margin-right: 0.3rem;
}

.package-savings strong {
  color: var(--color-coral-dark);
  font-weight: 700;
}

.package-discount-rate {
  display: inline-block;
  background: var(--color-coral);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.15rem 0.6rem;
  border-radius: 12px;
  margin-left: 0.4rem;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.package-contents {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex-grow: 1;
}

.package-contents li {
  padding: 0.7rem 0 0.7rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
  border-bottom: 1px dotted rgba(61, 165, 165, 0.2);
}

.package-contents li:last-child {
  border-bottom: none;
}

.package-contents li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.7rem;
  color: var(--color-accent);
  font-size: 0.8rem;
}

.package-item-price {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.package-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.packages-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 2.5rem;
  line-height: 1.8;
}

/* パッケージ — タブレット */
@media (max-width: 960px) {
  .package-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 2rem;
  }
  .package-card--featured {
    transform: none;
  }
  .package-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* パッケージ — スマホ */
@media (max-width: 600px) {
  .packages {
    padding: 3.5rem 0;
  }
  .package-card {
    padding: 2rem 1.25rem 1.75rem;
  }
  .package-stone {
    font-size: 1.75rem;
  }
  .package-price-amount {
    font-size: 2.1rem;
  }
  .package-title {
    font-size: 1.05rem;
  }
  .package-contents li {
    font-size: 0.9rem;
  }
}


/* ===========================
   コラム記事（column/*.html）
   =========================== */
.column-article {
  padding: 3rem 0 4rem;
  background: var(--color-bg);
}
.column-article .container {
  max-width: 820px;
}
.column-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}
.column-meta-tag {
  display: inline-block;
  background: #FBF1F6;
  color: #B8548A;
  padding: 0.2em 0.8em;
  border-radius: 999px;
  font-weight: 600;
  margin-right: 0.6em;
}
.column-article h1.column-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  line-height: 1.45;
  color: var(--color-text);
  margin-bottom: 1.2rem;
  border-left: 5px solid #D47BA8;
  padding-left: 1rem;
}
.column-lead {
  font-size: 1.02rem;
  line-height: 1.9;
  background: #FDF6FA;
  padding: 1.2rem 1.4rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}
.column-article h2.column-h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #B8548A;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #F2D4E3;
}
.column-article h3.column-h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 1.8rem 0 0.6rem;
}
.column-article p {
  line-height: 1.95;
  margin-bottom: 1.1rem;
  font-size: 0.98rem;
}
.column-article ul, .column-article ol {
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
  line-height: 1.9;
}
.column-article li {
  margin-bottom: 0.3rem;
}
.column-callout {
  background: #FFFBF0;
  border-left: 4px solid #E8C46B;
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}
.column-callout strong {
  color: #B08020;
}
.column-faq {
  margin: 1.5rem 0 2rem;
  padding: 1.5rem 1.6rem;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.column-faq dt {
  font-weight: 600;
  color: #B8548A;
  margin-top: 1.1rem;
  line-height: 1.55;
}
.column-faq dt:first-child {
  margin-top: 0;
}
.column-faq dd {
  margin: 0.4rem 0 0;
  padding-left: 0;
  line-height: 1.75;
  color: #444;
}
.column-faq dd a {
  color: #B8548A;
  text-decoration: underline;
}
.column-cta {
  margin-top: 2.5rem;
  text-align: center;
  padding: 1.8rem 1rem;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.column-cta p {
  margin-bottom: 1rem;
}
.column-cta-btn {
  display: inline-block;
  background: #D47BA8;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s;
}
.column-cta-btn:hover {
  background: #B8548A;
  transform: translateY(-2px);
}
.column-back {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}
.column-back a {
  color: #888;
  text-decoration: none;
  border-bottom: 1px dashed #ccc;
}
.column-back a:hover {
  color: #B8548A;
}
@media (max-width: 600px) {
  .column-article h1.column-title { font-size: 1.4rem; }
  .column-article h2.column-h2 { font-size: 1.15rem; }
}

/* ===== Column Index (一覧ページ) ===== */
.column-index {
  padding: 3rem 0 4rem;
}
.column-index-lead {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #555;
  line-height: 1.9;
}
.column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.column-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.column-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,123,168,0.22);
}
.column-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #FBF1F6 0%, #F2D4E3 100%);
}
.column-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.column-card:hover .column-card-image img {
  transform: scale(1.04);
}
.column-card-body {
  padding: 1.3rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.column-card-tag {
  display: inline-block;
  background: #FBF1F6;
  color: #B8548A;
  font-size: 0.78rem;
  padding: 0.2em 0.8em;
  border-radius: 999px;
  margin-bottom: 0.7rem;
  align-self: flex-start;
  font-weight: 600;
}
.column-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  line-height: 1.5;
  color: #333;
}
.column-card-excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
}
.column-card-more {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #D47BA8;
  font-weight: 600;
}
.column-card--teal .column-card-image { background: linear-gradient(135deg, #E6F3F2 0%, #B8DCD6 100%); }
.column-card--teal .column-card-tag { background: #E6F3F2; color: #2F7F7A; }
.column-card--teal .column-card-more { color: #2F7F7A; }
.column-card--amber .column-card-image { background: linear-gradient(135deg, #FFF6DE 0%, #F2DAA3 100%); }
.column-card--amber .column-card-tag { background: #FFF6DE; color: #8B6D1F; }
.column-card--amber .column-card-more { color: #8B6D1F; }
.column-card--ruby .column-card-image { background: linear-gradient(135deg, #FDE4EB 0%, #F0A9BE 100%); }
.column-card--ruby .column-card-tag { background: #FDE4EB; color: #A63351; }
.column-card--ruby .column-card-more { color: #A63351; }
@media (max-width: 600px) {
  .column-grid { grid-template-columns: 1fr; }
}

