/* =========================
   MATCH婚活サイト - メインスタイル
   ========================= */

/* CSS Custom Properties (Design Tokens) */
:root {
  /* 明るく前向きな婚活配色 */
  --color-primary: #6b7280;        /* 落ち着いたグレー（メイン） */
  --color-primary-light: #9ca3af;  /* ライトグレー */
  --color-primary-dark: #4b5563;   /* ダークグレー */
  
  --color-secondary: #2196f3;      /* 信頼のブルー（セカンダリ） */
  --color-secondary-light: #64b5f6; /* ライトブルー */
  --color-secondary-dark: #1976d2;  /* ダークブルー */
  
  --color-accent: #ffc107;         /* 明るいゴールド（アクセント） */
  --color-accent-light: #fff176;   /* ライトゴールド */
  --color-accent-dark: #f57c00;    /* オレンジゴールド */
  
  /* ニュートラルカラー */
  --color-white: #ffffff;
  --color-gray-50: #fafaf9;
  --color-gray-100: #f5f5f4;
  --color-gray-200: #e7e5e4;
  --color-gray-300: #d6d3d1;
  --color-gray-400: #a8a29e;
  --color-gray-500: #78716c;
  --color-gray-600: #57534e;
  --color-gray-700: #44403c;
  --color-gray-800: #292524;
  --color-gray-900: #1c1917;
  
  /* ステータスカラー */
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  
  /* タイポグラフィ */
  --font-family-primary: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-heading: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  --font-family-english: 'Cormorant Garamond', Georgia, serif;
  
  /* フォントサイズ */
  --font-size-xs: 0.75rem;     /* 12px */
  --font-size-sm: 0.875rem;    /* 14px */
  --font-size-base: 1rem;      /* 16px */
  --font-size-lg: 1.125rem;    /* 18px */
  --font-size-xl: 1.25rem;     /* 20px */
  --font-size-2xl: 1.5rem;     /* 24px */
  --font-size-3xl: 1.875rem;   /* 30px */
  --font-size-4xl: 2.25rem;    /* 36px */
  --font-size-5xl: 3rem;       /* 48px */
  
  /* 行間 */
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;
  
  /* スペーシング */
  --spacing-xs: 0.25rem;   /* 4px */
  --spacing-sm: 0.5rem;    /* 8px */
  --spacing-md: 1rem;      /* 16px */
  --spacing-lg: 1.5rem;    /* 24px */
  --spacing-xl: 2rem;      /* 32px */
  --spacing-2xl: 3rem;     /* 48px */
  --spacing-3xl: 4rem;     /* 64px */
  --spacing-4xl: 5rem;     /* 80px */
  --spacing-5xl: 6rem;     /* 96px */
  
  /* ボーダー */
  --border-radius-sm: 0.25rem;   /* 4px */
  --border-radius-md: 0.5rem;    /* 8px */
  --border-radius-lg: 0.75rem;   /* 12px */
  --border-radius-xl: 1rem;      /* 16px */
  --border-radius-full: 9999px;
  
  /* シャドウ */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* トランジション */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

/* ベーススタイル */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-800);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 見出しスタイル */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 600;
  line-height: var(--line-height-tight);
  color: var(--color-gray-900);
  margin-bottom: var(--spacing-lg);
}

h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-2xl);
}

h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-xl);
}

h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-lg);
}

/* 段落とテキスト */
p {
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-relaxed);
}

/* リンクスタイル */
a {
  color: #BFA45A;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: #A67C5A;
  text-decoration: underline;
}

/* ボタンスタイル */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--border-radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: #BFA45A;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: #A67C5A;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-gray-800);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--color-gray-800);
}

.btn-outline {
  background-color: transparent;
  color: #BFA45A;
  border: 2px solid #BFA45A;
}

.btn-outline:hover {
  background-color: #BFA45A;
  color: var(--color-white);
  text-decoration: none;
}

.btn-lg {
  padding: var(--spacing-lg) var(--spacing-2xl);
  font-size: var(--font-size-lg);
}

/* カードスタイル */
.card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow var(--transition-normal);
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-body {
  padding: var(--spacing-xl);
}

/* セクションスタイル */
.section {
  padding: var(--spacing-4xl) 0;
}

.section-alt {
  background-color: var(--color-gray-50);
}

/* コンテナ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* アニメーション */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
  :root {
    --font-size-4xl: 2rem;      /* 32px */
    --font-size-3xl: 1.5rem;    /* 24px */
    --font-size-2xl: 1.25rem;   /* 20px */
  }
  
  .container {
    padding: 0 var(--spacing-lg);
  }
  
  .section {
    padding: var(--spacing-3xl) 0;
  }
  
  .btn {
    padding: var(--spacing-md) var(--spacing-lg);
  }
  
  .btn-lg {
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: var(--font-size-base);
  }
}

/* フォーカススタイル（アクセシビリティ） */
/* マウスクリック時はアウトラインなし */
*:focus {
  outline: none;
}

/* キーボード操作時のみアウトラインを表示（アクセシビリティ確保） */
*:focus-visible {
  outline: 2px solid rgba(191, 164, 90, 0.5); /* 薄めのゴールド */
  outline-offset: 2px;
}

/* 画像の最適化 */
img {
  max-width: 100%;
  height: auto;
}

/* 遅延読み込み対応 */
img[loading="lazy"] {
  transition: opacity var(--transition-normal);
}

img[loading="lazy"]:not([src]) {
  opacity: 0;
}

/* =====================================
   アクセシビリティ対応 (WCAG 2.1 AA準拠)
   ===================================== */

/* スクリーンリーダー専用テキスト */
.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;
}

/* ヘッダーナビゲーションリンク専用のフォーカススタイル */
header nav a:focus {
  outline: none; /* マウスクリック時はアウトラインなし */
}

header nav a:focus-visible {
  outline: 2px solid rgba(191, 164, 90, 0.6); /* キーボード操作時のみ薄いアウトライン */
  outline-offset: 3px;
  border-radius: 4px;
}

/* ハイコントラスト対応 */
@media (prefers-contrast: high) {
  :root {
    --color-primary: #5d4a2f;
    --color-gray-600: #2d2d2d;
    --color-gray-700: #1a1a1a;
    --color-gray-800: #0d0d0d;
    --color-gray-900: #000000;
  }
  
  .btn-primary {
    border: 2px solid var(--color-gray-900);
  }
  
  .btn-outline {
    border-width: 3px;
  }
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
  :root {
    --color-white: #1a1a1a;
    --color-gray-50: #262626;
    --color-gray-100: #2d2d2d;
    --color-gray-200: #3d3d3d;
    --color-gray-300: #4d4d4d;
    --color-gray-400: #6d6d6d;
    --color-gray-500: #8d8d8d;
    --color-gray-600: #b3b3b3;
    --color-gray-700: #d1d1d1;
    --color-gray-800: #e8e8e8;
    --color-gray-900: #ffffff;
  }
}

/* 動きを控えめにする設定 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .fade-in {
    animation: none;
  }
}

/* フォームのアクセシビリティ */
input, textarea, select, button {
  font-size: inherit;
  line-height: inherit;
}

/* プレースホルダーのコントラスト改善 */
::placeholder {
  color: var(--color-gray-500);
  opacity: 1;
}

/* 必須フィールドの表示 */
[required] + label::after,
label[required]::after {
  content: " *";
  color: var(--color-error);
  font-weight: bold;
}

/* エラーメッセージスタイル */
.error-message {
  color: var(--color-error);
  font-size: var(--font-size-sm);
  margin-top: var(--spacing-xs);
  font-weight: 500;
}

.error-message::before {
  content: "⚠ ";
  font-weight: bold;
}

/* フォーカストラップ用 */
.focus-trap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #BFA45A;
  color: var(--color-white);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
  outline: 3px solid var(--color-white);
}

/* ARIA Live Region */
.live-region {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* 色に依存しない情報提供 */
.status-success::before { content: "✓ "; }
.status-warning::before { content: "⚠ "; }
.status-error::before { content: "✗ "; }
.status-info::before { content: "ℹ "; }

/* タッチターゲットサイズ最適化 */
@media (pointer: coarse) {
  .btn, 
  input[type="button"], 
  input[type="submit"], 
  button,
  a[role="button"] {
    min-height: 44px;
    min-width: 44px;
    padding: var(--spacing-md) var(--spacing-lg);
  }
  
  /* モバイル用のタップエリア拡大 */
  .mobile-tap-target {
    position: relative;
  }
  
  .mobile-tap-target::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
  }
}

/* キーボードナビゲーション強化 */
.keyboard-navigation *:focus {
  position: relative;
  z-index: 1;
}

/* ツールチップアクセシビリティ */
[aria-describedby] {
  position: relative;
}

.tooltip {
  position: absolute;
  background: var(--color-gray-900);
  color: var(--color-white);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-sm);
  white-space: nowrap;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.tooltip.visible {
  opacity: 1;
}

/* 印刷用スタイル */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a, a:visited {
    text-decoration: underline;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
  
  .btn {
    border: 1px solid black;
    padding: 0.25em 0.5em;
  }
  
  .sr-only {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
}

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

.text-contrast-high {
  color: var(--color-gray-900);
  font-weight: 600;
}

.bg-contrast-high {
  background-color: var(--color-gray-900);
  color: var(--color-white);
}

/* アニメーション用クラス */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* フォント読み込み最適化 */
.fonts-loaded body {
  font-family: var(--font-family-primary);
}

.fonts-loaded h1,
.fonts-loaded h2, 
.fonts-loaded h3,
.fonts-loaded h4,
.fonts-loaded h5,
.fonts-loaded h6 {
  font-family: var(--font-family-heading);
}

/* =============================================
   新しいヒーローセクション & CTAスタイル
   ============================================= */

/* ヒーロー背景グラデーション */
.hero-gradient {
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    #f1f5f9 25%, 
    #e2e8f0 50%, 
    #f8fafc 75%, 
    #ffffff 100%
  );
}

/* 強化されたCTAボタン */
.cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #BFA45A 0%, #A67C5A 100%);
  color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(191, 164, 90, 0.3);
  font-weight: 600;
  font-size: 1.125rem;
  min-width: 280px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-secondary {
  @apply inline-flex items-center px-8 py-4 bg-white hover:bg-gray-50 text-gray-800 rounded-2xl shadow-lg hover:shadow-xl font-semibold text-lg min-w-[280px] transition-all duration-300 border-2 border-gray-200;
}

/* 信頼バッジアニメーション */
.trust-badge {
  @apply transform transition-all duration-300 hover:scale-105;
}

/* スマホ固定CTAボタン */
.fixed-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #BFA45A 0%, #A67C5A 100%);
  padding: 16px;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.fixed-mobile-cta .cta-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.fixed-mobile-cta .cta-btn {
  @apply px-4 py-3 rounded-xl font-semibold text-sm text-center transition-all duration-300 flex items-center justify-center;
}

.fixed-mobile-cta .cta-primary-mini {
  @apply bg-accent-500 hover:bg-accent-600 text-white shadow-lg;
}

.fixed-mobile-cta .cta-secondary-mini {
  @apply bg-white hover:bg-gray-100 text-gray-800 shadow-lg;
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
  .fixed-mobile-cta {
    display: none;
  }
}

/* セクション背景バリエーション */
.section-bg-pattern {
  background-image: radial-gradient(circle at 2px 2px, rgba(191, 164, 90, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
}

.section-bg-gradient-light {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #ffffff 100%);
}

.section-bg-gradient-accent {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #f59e0b 100%);
}

/* 和柄背景パターン */
.section-bg-japanese {
  background: linear-gradient(135deg, #faf7f2 0%, #f5f1e8 50%, #f8f5f0 100%);
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
  position: relative;
}

.section-bg-japanese::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.03) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(212, 175, 55, 0.03) 50%, transparent 60%);
  background-size: 120px 120px, 120px 120px;
  pointer-events: none;
}

/* =============================================
   ニュースセクション - 和風デザイン
   ============================================= */

/* ニュースセクション背景 */
.news-section-bg {
  background-color: #FAF8F5;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(191, 164, 90, 0.05) 2px, transparent 2px),
    radial-gradient(circle at 80% 80%, rgba(191, 164, 90, 0.03) 1px, transparent 1px);
  background-size: 80px 80px, 60px 60px;
}

/* 縦書き見出し */
.vertical-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: #BFA45A;
  letter-spacing: 0.2em;
  padding: 2rem 0;
  position: relative;
}

.vertical-title::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, #BFA45A 20%, #BFA45A 80%, transparent 100%);
}

/* 記事リスト */
.news-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #E5E5E5;
  transition: all 0.2s ease;
}

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

.news-item-title {
  font-size: 1.125rem;
  color: #3C2F2F;
  font-weight: 500;
  line-height: 1.6;
  transition: color 0.2s ease;
  text-decoration: none;
  display: block;
}

.news-item-title:hover {
  color: #BFA45A;
  text-decoration: none;
}

.news-item-date {
  font-size: 0.875rem;
  color: #777;
  margin-top: 0.5rem;
  font-family: var(--font-family-primary);
  display: block;
}

.news-item-category {
  display: inline-block;
  font-size: 0.75rem;
  background-color: #BFA45A;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* =========================
   選ばれる理由セクション
   ========================= */

/* ========================================
   Reasons Section - Elegant Version (選ばれる理由)
   和 × 上品 × 柔らかい × 静か
   ======================================== */
.reasons-section {
  background-color: #fafaf9;
  padding: 7rem 0; /* py-28 equivalent */
  position: relative;
}

.reasons-section-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 2.25rem;
  font-weight: 400; /* Lighter weight for elegance */
  color: #4a4238;
  line-height: 1.35;
  position: relative;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .reasons-section-title {
    font-size: 2.5rem;
  }
}

/* 理由カード - Flat elegant design */
.reasons-card {
  background: white;
  border-radius: 10px; /* Reduced from 16px */
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); /* Much lighter shadow */
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.reasons-card:hover {
  transform: translateY(-4px); /* Reduced movement */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06); /* Subtle hover shadow */
  border-color: rgba(200, 179, 122, 0.25); /* Muted gold border */
}

/* アイコン - Flat muted gold design */
.reasons-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px; /* Reduced from 80px */
  height: 68px;
  background: #c8b37a; /* Flat muted gold, no gradient */
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(200, 179, 122, 0.15); /* Very light shadow */
}

.reasons-card:hover .reasons-icon-wrapper {
  transform: scale(1.03); /* Minimal scale, no rotation */
  box-shadow: 0 3px 12px rgba(200, 179, 122, 0.2);
}

.reasons-icon {
  font-size: 1.75rem; /* Reduced from 2rem */
  color: white;
  transition: all 0.3s ease;
}

.reasons-card:hover .reasons-icon {
  transform: scale(1.02); /* Minimal scale */
}

/* コンテンツ */
.reasons-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.reasons-card-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 400; /* Lighter weight */
  color: #4a4238;
  margin-bottom: 1rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.reasons-card:hover .reasons-card-title {
  color: #c8b37a; /* Muted gold on hover */
}

.reasons-card-description {
  color: #6b6158;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .reasons-section {
    padding: 5rem 0; /* Slightly less on mobile */
  }
  
  .reasons-section-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
  
  .reasons-card {
    padding: 1.5rem;
  }
  
  .reasons-icon-wrapper {
    width: 60px; /* Reduced proportionally */
    height: 60px;
  }
  
  .reasons-icon {
    font-size: 1.5rem;
  }
  
  .reasons-card-title {
    font-size: 1.125rem;
  }
  
  .reasons-card-description {
    font-size: 0.9rem;
  }
}

/* =========================
   IBJ統計セクション
   ========================= */

/* ========================================
   IBJ Stats Section - Elegant Version (数字で見るIBJ)
   和 × 上品 × 柔らかい × 静か
   ======================================== */
.ibj-stats-section {
  background: #ffffff;
  padding: 7rem 0; /* py-28 equivalent */
  position: relative;
}

.ibj-stats-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #c8b37a; /* Muted gold */
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.ibj-stats-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 2.25rem;
  font-weight: 400; /* Lighter weight */
  color: #4a4238;
  line-height: 1.35;
  letter-spacing: 0.08em;
  position: relative;
}

@media (min-width: 768px) {
  .ibj-stats-title {
    font-size: 2.5rem;
  }
}

.ibj-stats-description {
  font-size: 1.125rem;
  font-weight: 300;
  color: #6b6158;
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 統計カード - Flat elegant design */
.ibj-stats-card {
  background: #c8b37a; /* Flat muted gold, no gradient */
  border-radius: 10px; /* Reduced from 16px */
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(200, 179, 122, 0.12); /* Very light shadow */
  border: 1px solid rgba(200, 179, 122, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.ibj-stats-card:hover {
  transform: translateY(-4px); /* Reduced movement */
  box-shadow: 0 4px 16px rgba(200, 179, 122, 0.18); /* Subtle hover shadow */
  border-color: rgba(200, 179, 122, 0.35);
}

/* 数字セクション */
.ibj-stats-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 2rem;
  flex: 1;
  align-items: center;
  position: relative;
}

.ibj-stats-prefix {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  margin-right: 0.375rem;
  align-self: flex-start;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .ibj-stats-prefix {
    font-size: 1.375rem;
    margin-top: 0.75rem;
  }
}

.ibj-stats-number {
  font-size: 3.25rem;
  font-weight: 400; /* Lighter weight for elegance */
  color: #FFFFFF;
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif; /* Serif for numbers */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12); /* Very subtle shadow */
  line-height: 1;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .ibj-stats-number {
    font-size: 4rem;
  }
}

.ibj-stats-unit {
  font-size: 1.375rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  margin-left: 0.25rem;
  align-self: baseline;
}

@media (min-width: 768px) {
  .ibj-stats-unit {
    font-size: 1.625rem;
  }
}

/* コンテンツセクション */
.ibj-stats-content {
  margin-top: auto;
  position: relative;
}

.ibj-stats-label {
  font-size: 1.125rem;
  font-weight: 400; /* Lighter weight */
  color: white;
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08); /* Very subtle shadow */
  position: relative;
}

@media (min-width: 768px) {
  .ibj-stats-label {
    font-size: 1.25rem;
  }
}

.ibj-stats-card-description {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  position: relative;
}

/* IBJ CTAボタン - Elegant version */
.ibj-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2.25rem; /* Smaller padding */
  background: transparent;
  color: #4a4238;
  font-size: 0.875rem; /* Smaller font */
  font-weight: 400;
  text-decoration: none;
  border-radius: 50px;
  border: 1.2px solid rgba(74, 66, 56, 0.35); /* Thin border */
  box-shadow: none; /* No shadow */
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
}

.ibj-cta-button:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 66, 56, 0.5);
  background: rgba(200, 179, 122, 0.05);
  color: #4a4238;
  text-decoration: none;
  box-shadow: none; /* Keep no shadow on hover */
}

.ibj-cta-button:active {
  transform: translateY(0);
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .ibj-stats-section {
    padding: 5rem 0; /* Slightly less on mobile */
  }
  
  .ibj-stats-title {
    font-size: 1.875rem;
  }
  
  .ibj-stats-description {
    font-size: 1rem;
  }
  
  .ibj-stats-card {
    padding: 2rem 1.25rem;
    min-height: 260px;
  }
  
  .ibj-stats-number-wrapper {
    margin-bottom: 1.5rem;
  }
  
  .ibj-stats-prefix {
    font-size: 1rem;
    margin-top: 0.375rem;
  }
  
  .ibj-stats-number {
    font-size: 2.75rem;
  }
  
  .ibj-stats-unit {
    font-size: 1.125rem;
  }
  
  .ibj-stats-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .ibj-cta-button {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
  }
}

/* =========================
   当相談所について詳しく知るセクション
   ========================= */

/* ========================================
   About Us Links Section - Elegant Version (当相談所について詳しく知る)
   和 × 上品 × 柔らかい × 静か
   ======================================== */
.about-us-links-section {
  background: #fafaf9;
  padding: 7rem 0; /* py-28 equivalent */
  position: relative;
}

/* 縦書きタイトル - 薄金・細線・カードに寄せる */
.about-us-vertical-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 400; /* Lighter weight */
  color: #c8b37a; /* Muted gold */
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1.8;
  letter-spacing: 0.1em;
  height: fit-content;
  padding: 1rem 0;
  position: relative;
  margin-right: 2rem; /* Closer to cards: 25-40px → 32px */
}

@media (max-width: 1024px) {
  .about-us-vertical-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
    margin-right: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(200, 179, 122, 0.3); /* Thinner border */
    width: 100%;
  }
}

.about-us-vertical-title::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 1px; /* Thinner line */
  background: linear-gradient(to bottom, transparent 0%, #c8b37a 20%, #c8b37a 80%, transparent 100%);
}

@media (max-width: 1024px) {
  .about-us-vertical-title::after {
    display: none;
  }
}

/* リンクカード - 上品・控えめ */
.about-us-link-card {
  display: block;
  position: relative;
  height: 200px;
  border-radius: 12px; /* Reduced from 16px */
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* Much lighter shadow */
}

.about-us-link-card:hover {
  transform: translateY(-3px); /* Minimal movement, reduced from -8px */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06); /* Subtle hover shadow */
  text-decoration: none;
}

/* カード背景画像 - 統一フィルター適用 */
.about-us-card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  filter: saturate(0.7) brightness(1.05); /* Unified warm tone filter */
}

.about-us-link-card:hover .about-us-card-background {
  transform: scale(1.02); /* Minimal scale, reduced from 1.05 */
}

/* カードオーバーレイ - 淡いベージュ系 */
.about-us-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(250, 248, 244, 0.15) 0%,
    rgba(245, 241, 234, 0.25) 50%,
    rgba(60, 47, 39, 0.45) 100%
  );
  transition: background 0.3s ease;
}

.about-us-link-card:hover .about-us-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(250, 248, 244, 0.12) 0%,
    rgba(245, 241, 234, 0.22) 50%,
    rgba(60, 47, 39, 0.40) 100%
  );
}

/* カードコンテンツ */
.about-us-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(
    to top,
    rgba(60, 47, 39, 0.65) 0%,
    rgba(60, 47, 39, 0.25) 60%,
    transparent 100%
  );
  color: white;
  z-index: 2;
}

.about-us-card-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 1.375rem;
  font-weight: 500; /* Lighter weight, reduced from 600 */
  color: #fafaf9; /* Soft white instead of bright gold */
  margin-bottom: 0.5rem;
  line-height: 1.35; /* Tighter line height */
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .about-us-card-title {
    font-size: 1.5rem;
  }
}

.about-us-card-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(250, 250, 249, 0.85);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6; /* More breathing room */
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .about-us-card-subtitle {
    font-size: 1rem;
  }
}

/* カード矢印 - 主張を弱める */
.about-us-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px; /* Reduced 20% from 40px */
  height: 32px;
  background: rgba(255, 255, 255, 0.85); /* White instead of gold */
  border: 1px solid rgba(200, 179, 122, 0.3); /* Muted gold border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: none; /* No shadow */
}

.about-us-card-arrow i {
  color: #c8b37a; /* Muted gold */
  font-size: 0.875rem; /* Smaller icon */
  transition: transform 0.3s ease;
}

.about-us-link-card:hover .about-us-card-arrow {
  background: rgba(200, 179, 122, 0.15);
  border-color: rgba(200, 179, 122, 0.45);
  transform: scale(1.05); /* Minimal scale */
}

.about-us-link-card:hover .about-us-card-arrow i {
  transform: translateX(1px); /* Minimal movement */
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .about-us-links-section {
    padding: 5rem 0; /* Slightly less on mobile */
  }
  
  .about-us-link-card {
    height: 180px;
  }
  
  .about-us-card-content {
    padding: 1.5rem;
  }
  
  .about-us-card-title {
    font-size: 1.25rem;
  }
  
  .about-us-card-subtitle {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
  
  .about-us-card-arrow {
    width: 28px; /* Proportionally smaller */
    height: 28px;
    top: 1rem;
    right: 1rem;
  }
  
  .about-us-card-arrow i {
    font-size: 0.75rem;
  }
}

/* ===============================
   新しいセクションのスタイル
   =============================== */

/* 実績バッジセクション */
.badges-section {
  background: white;
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
  padding: 3rem 0;
}

.badge-item img {
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.badge-item img:hover {
  filter: grayscale(0%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .badges-section {
    padding: 2rem 0;
  }
}

/* ========================================
   SNS Section - Elegant Version (全ページ共通)
   和 × 上品 × 柔らかい × 静か
   ======================================== */
.sns-section {
  background: #fafaf9;
  padding: 8rem 0; /* Increased vertical spacing: +50px */
}

/* SNS Section Title Enhancement */
.sns-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.3em; /* Increased tracking */
  color: #c8b37a; /* Muted gold */
  text-transform: uppercase;
  margin-bottom: 1rem; /* Increased spacing from subtitle */
}

.sns-section-subtitle {
  margin-bottom: 3rem; /* Increased spacing: +10px */
}

/* Card: Unified beige/cream background */
.sns-card-v2 {
  background: #faf8f4; /* Pale cream unified background */
  border-radius: 12px; /* Reduced from 20px */
  padding: 3rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* Very light shadow */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.sns-card-v2:hover {
  transform: translateY(-3px); /* Minimal movement */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

/* Remove specific LINE/Instagram card colors */
.line-card-v2,
.instagram-card-v2 {
  background: #faf8f4; /* Same unified background */
  border-color: rgba(0, 0, 0, 0.06);
}

.line-card-v2:hover,
.instagram-card-v2:hover {
  border-color: rgba(200, 179, 122, 0.25); /* Muted gold border on hover */
}

/* Icon: Subdued and elegant */
.sns-icon-wrapper {
  width: 76px; /* Reduced 15% from 90px */
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

/* LINE icon: White background with muted gold border */
.line-icon {
  background: white;
  color: #c8b37a; /* Muted gold */
  border: 1.5px solid rgba(200, 179, 122, 0.35);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.line-card-v2:hover .line-icon {
  transform: scale(1.03); /* Minimal scale */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  border-color: rgba(200, 179, 122, 0.5);
}

/* Instagram icon: Muted single color (ink or muted gold) */
.instagram-icon {
  background: #4a4238; /* Ink color instead of gradient */
  color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.instagram-card-v2:hover .instagram-icon {
  transform: scale(1.03); /* Minimal scale */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  background: #c8b37a; /* Muted gold on hover */
}

/* Title: Elegant typography */
.sns-card-v2-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 1.75rem;
  font-weight: 400; /* Lighter weight */
  color: #4a4238; /* Ink color */
  margin: 0;
  margin-top: 0.5rem; /* Increased spacing from icon: +8px */
  line-height: 1.3;
  letter-spacing: 0.04em;
}

/* Description: More breathing room */
.sns-card-v2-description {
  color: #6b6158; /* Muted color */
  font-weight: 300;
  line-height: 1.6; /* Reduced from 1.8 for elegance */
  font-size: 0.95rem;
  font-family: 'Noto Sans JP', sans-serif;
  max-width: 320px;
  margin-top: 0.25rem; /* Increased spacing from title */
}

/* Button: Elegant border style */
.sns-btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.25rem; /* Reduced 12% */
  font-weight: 400; /* Lighter weight */
  border-radius: 35px; /* Reduced from 50px */
  font-size: 0.9rem; /* Smaller font */
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: none; /* No shadow */
  font-family: 'Noto Sans JP', sans-serif;
}

/* LINE button: White with muted gold border */
.line-btn-v2 {
  background: transparent;
  color: #4a4238; /* Ink color */
  border: 1.2px solid rgba(74, 66, 56, 0.35);
}

.line-btn-v2 i {
  color: #c8b37a; /* Muted gold icon */
}

.line-btn-v2:hover {
  background: rgba(200, 179, 122, 0.05);
  color: #4a4238;
  border-color: rgba(74, 66, 56, 0.5);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: none;
}

.line-btn-v2:hover i {
  color: #c8b37a;
}

/* Instagram button: Same elegant style */
.instagram-btn-v2 {
  background: transparent;
  color: #4a4238;
  border: 1.2px solid rgba(74, 66, 56, 0.35);
}

.instagram-btn-v2 i {
  color: #c8b37a; /* Muted gold icon */
}

.instagram-btn-v2:hover {
  background: rgba(200, 179, 122, 0.05);
  color: #4a4238 !important;
  border-color: rgba(74, 66, 56, 0.5);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: none;
}

.instagram-btn-v2:hover i {
  color: #c8b37a;
}

@media (max-width: 1024px) {
  .sns-section {
    padding: 6rem 0;
  }
  
  .sns-card-v2 {
    padding: 2.5rem 1.5rem;
  }
  
  .sns-icon-wrapper {
    width: 68px; /* Proportionally smaller */
    height: 68px;
  }
  
  .sns-card-v2-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .sns-section {
    padding: 5rem 0;
  }
  
  .sns-card-v2 {
    padding: 2rem 1.25rem;
  }
  
  .sns-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .sns-icon-wrapper i {
    font-size: 1.75rem;
  }
  
  .sns-card-v2-title {
    font-size: 1.35rem;
  }
  
  .sns-btn-v2 {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
  }
}

/* ========================================
   CONTACT US + ACCESS Section - Elegant Version (全ページ共通)
   和 × 上品 × 柔らかい × 静か
   ======================================== */

/* CONTACT US Section */
.contact-section-fullbleed {
  padding: 8.5rem 0; /* Increased vertical spacing: +50px */
}

/* Background blur enhancement */
.contact-section-fullbleed .absolute.inset-0.z-0 img {
  filter: blur(3px) brightness(1.1) saturate(0.8); /* Lighter, less intense */
}

/* Overlay: Lighter for better readability */
.contact-section-fullbleed .absolute.inset-0.z-10 {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.08)) !important;
}

.contact-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem; /* Slightly reduced from 2.5rem */
  font-weight: 400; /* Lighter weight */
  letter-spacing: 0.15em; /* Increased tracking for elegance */
  margin-bottom: 1.5rem;
  color: white;
}

@media (min-width: 768px) {
  .contact-section-title {
    font-size: 2.5rem;
    letter-spacing: 0.2em;
  }
}

.contact-section-description {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Noto Sans JP', sans-serif;
}

.contact-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* CTA Buttons: Elegant border style */
.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem; /* Slightly reduced */
  height: 52px; /* Reduced from 56px */
  border-radius: 12px;
  border: 1.2px solid rgba(255, 255, 255, 0.6); /* Thinner border */
  color: white !important;
  background: transparent;
  font-weight: 400; /* Lighter weight */
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem; /* Slightly smaller */
  font-family: 'Noto Sans JP', sans-serif;
  box-shadow: none; /* No shadow */
}

.contact-cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white !important;
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: none; /* Keep no shadow */
}

/* Icons: Fine line style */
.contact-cta-btn i {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 300;
}

.contact-cta-btn:hover i {
  color: white !important;
}

/* ACCESS Section */
.contact-access-section {
  background: #fafaf9;
  padding: 8rem 0; /* Increased vertical spacing: +50px */
}

.access-block {
  background: transparent;
  box-shadow: none;
}

.access-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400; /* Lighter weight */
  color: #4a4238; /* Ink color */
  letter-spacing: 0.15em; /* Increased tracking +10 */
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(200, 179, 122, 0.25); /* Thin muted gold line */
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* Increased spacing: +12px */
}

.access-info-item {
  display: flex;
  align-items: flex-start;
  color: #3e3a37; /* Not too dark ink color */
  line-height: 1.75; /* Increased from 1.6 */
  font-weight: 300;
  font-family: 'Noto Sans JP', sans-serif;
}

/* Icon color unification */
.access-info-item i {
  color: #c8b37a; /* Muted gold */
  font-size: 0.9rem;
  margin-top: 0.15rem;
  min-width: 1.25rem;
}

.access-company-name {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 400; /* Lighter weight */
  color: #4a4238; /* Ink color */
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

/* Notice text: Subdued */
.access-info-item.text-sm {
  font-size: 0.85rem;
  color: #8c857c; /* Lighter muted color */
  line-height: 1.6;
}

/* Google Map: Elegant card style */
.access-map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06); /* Very light shadow */
}

.access-map-container iframe {
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .contact-section-fullbleed {
    padding: 6rem 0;
  }
  
  .contact-access-section {
    padding: 6rem 0;
  }
  
  .contact-access-section .grid {
    gap: 2rem;
  }
  
  .contact-section-title {
    font-size: 2rem;
    letter-spacing: 0.12em;
  }
  
  .access-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 640px) {
  .contact-section-fullbleed {
    padding: 5rem 0;
  }
  
  .contact-access-section {
    padding: 5rem 0;
  }
  
  .contact-block .grid {
    padding: 2rem;
  }
  
  .contact-section-title {
    font-size: 1.75rem;
    letter-spacing: 0.1em;
  }
  
  .contact-buttons-container {
    margin-top: 1.5rem;
  }
  
  .access-title {
    font-size: 1.5rem;
  }
  
  .access-map-container iframe {
    height: 280px;
  }
}

/* ========================================
   Footer - Elegant Version (和 × 上品 × 静か)
   営業時間・定休日完全削除済み
   
   【構成】
   左: ロゴ + 住所 + TEL
   中央: グローバルナビ（横並び）
   右: コピーライト
   
   【絶対禁止】
   - writing-mode による縦書き
   - 文字の1文字ずつ改行
   - 営業時間・定休日の復活
   ======================================== */

.footer-elegant {
  background-color: rgba(255, 255, 255, 0.95); /* ヘッダーと同じ */
  border-top: 1px solid rgba(200, 179, 122, 0.2); /* 細い薄いボーダー */
  padding: 2rem 0 1rem; /* もっと狭く！！！（32px / 16px） */
}

/* ===== PC Layout: Grid 3カラム ===== */
.footer-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 均等3分割 */
  align-items: center; /* 垂直方向中央 */
  gap: 2rem; /* もっと狭く */
}

/* ===== 左ブロック: ロゴ + 住所 + TEL ===== */
.footer-block-left {
  /* Grid カラムで自動調整 */
}

.footer-logo {
  margin-bottom: 0.5rem; /* もっと狭く */
}

.footer-logo-image {
  height: 3.5rem; /* 56px - もう少し大きく */
  width: auto;
  opacity: 0.95;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* もっと狭く */
}

.footer-address {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  color: #3c3733;
  line-height: 1.7;
  margin: 0;
}

.footer-tel {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  color: #3c3733;
  margin: 0;
}

/* ===== 中央ブロック: グローバルナビ（完全中央） ===== */
.footer-block-center {
  display: flex;
  justify-content: center; /* 水平方向中央 */
  align-items: center; /* 垂直方向中央 */
}

.footer-nav-wrapper {
  display: flex;
  flex-direction: column; /* 上下に並べる */
  gap: 0.5rem; /* 上段と下段の間隔 */
  align-items: center; /* 中央揃え */
}

.footer-nav-horizontal {
  display: flex;
  flex-wrap: nowrap; /* 折り返さない */
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0; /* gap は使わず、セパレーターとpaddingで制御 */
}

.footer-nav-row-top {
  /* 上段4つ */
}

.footer-nav-row-bottom {
  /* 下段2つ */
}

.footer-nav-horizontal li {
  display: inline-block; /* 絶対にblock化しない */
}

.footer-nav-link {
  display: inline-block; /* 絶対にblock化しない */
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  color: #3c3733;
  text-decoration: none;
  padding: 0.25rem 0.75rem; /* 上下・左右の余白 */
  white-space: nowrap; /* 絶対に折り返さない */
  transition: color 0.2s ease, border-bottom 0.2s ease;
  border-bottom: 1px solid transparent;
}

.footer-nav-link:hover {
  color: #5a524a; /* 少しだけ濃く */
  border-bottom: 1px solid rgba(60, 55, 51, 0.3); /* 細い下線 */
}

/* ナビのセパレーター */
.footer-nav-sep {
  display: inline-block; /* 絶対にblock化しない */
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem; /* 12px */
  font-weight: 300;
  color: rgba(60, 55, 51, 0.25);
  padding: 0 0.25rem;
  user-select: none;
}

/* ===== 右ブロック: 空 ===== */
.footer-block-right {
  /* Grid カラムで自動調整 */
}

/* ===== コピーライト: 最下に、さりげなく ===== */
.footer-copyright-bottom {
  margin-top: 1rem; /* もっと狭く */
  text-align: center; /* 中央揃え */
}

.footer-copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.6875rem; /* 11px - さらに小さく、さりげなく */
  font-weight: 300;
  color: #a8a199; /* より薄く、さりげなく */
  margin: 0;
  line-height: 1.5;
}

/* ===== Responsive: タブレット（1024px以下） ===== */
@media (max-width: 1024px) {
  .footer-content-wrapper {
    grid-template-columns: 1fr; /* 1カラムに */
    gap: 1.5rem; /* もっと狭く */
  }
  
  .footer-block-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-block-center {
    justify-content: center;
  }
  
  /* ナビは横並びのまま */
  .footer-nav-link {
    font-size: 0.8125rem; /* 13px */
    padding: 0.25rem 0.5rem; /* 少しコンパクトに */
  }
  
  .footer-nav-sep {
    font-size: 0.6875rem; /* 11px - 少し小さく */
  }
  

}

/* ===== Responsive: 小型スマホ（640px以下） ===== */
@media (max-width: 640px) {
  .footer-elegant {
    padding: 2rem 0 1rem; /* 32px / 16px - しっかり余白確保 */
  }
  
  .footer-content-wrapper {
    display: flex; /* Grid を無効化 */
    flex-direction: column; /* 縦並び */
    align-items: center; /* 中央配置 */
    gap: 1.5rem; /* 24px */
  }
  
  /* ===== 左ブロック: ロゴ + 住所 + TEL（完全中央） ===== */
  .footer-block-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    order: 1; /* 最初に表示 */
  }
  
  .footer-logo {
    margin-bottom: 0.75rem; /* 12px */
  }
  
  .footer-logo-image {
    height: 2.5rem; /* 40px */
    width: auto;
  }
  
  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; /* 8px */
  }
  
  .footer-address {
    font-size: 0.75rem; /* 12px */
    line-height: 1.6;
    text-align: center;
    margin: 0;
  }
  
  .footer-tel {
    font-size: 0.75rem; /* 12px */
    text-align: center;
    margin: 0;
  }
  
  /* ===== 中央ブロック: ナビゲーション（縦並び・シンプル） ===== */
  .footer-block-center {
    width: 100%;
    order: 2; /* 2番目に表示 */
  }
  
  .footer-nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0; /* ギャップなし */
    width: 100%;
  }
  
  /* ナビゲーションを完全縦並び・セパレーター非表示 */
  .footer-nav-horizontal {
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: center;
    width: 100%;
    gap: 0; /* ギャップなし */
    margin: 0;
    padding: 0;
  }
  
  .footer-nav-horizontal li {
    display: block; /* ブロック化 */
    width: 100%;
    text-align: center;
  }
  
  .footer-nav-link {
    display: block; /* ブロック化 */
    width: 100%;
    font-size: 0.8125rem; /* 13px */
    padding: 0.625rem 0; /* 10px 上下 */
    border-bottom: 1px solid rgba(200, 179, 122, 0.15); /* 区切り線 */
    text-align: center;
    color: #3c3733;
    transition: all 0.2s ease;
  }
  
  .footer-nav-link:hover {
    color: #5a524a;
    background-color: rgba(200, 179, 122, 0.05);
  }
  
  /* 最後のリンクは区切り線なし */
  .footer-nav-horizontal li:last-child .footer-nav-link {
    border-bottom: none;
  }
  
  /* セパレーターを非表示 */
  .footer-nav-sep {
    display: none;
  }
  
  /* 上段と下段の間に余白 */
  .footer-nav-row-bottom {
    margin-top: 0.5rem; /* 8px */
    padding-top: 0.5rem; /* 8px */
    border-top: 1px solid rgba(200, 179, 122, 0.2);
  }
  
  /* ===== 右ブロック: 非表示 ===== */
  .footer-block-right {
    display: none;
  }
  
  /* ===== コピーライト ===== */
  .footer-copyright-bottom {
    margin-top: 1.5rem; /* 24px */
    order: 3; /* 最後に表示 */
  }
  
  .footer-copyright {
    font-size: 0.6875rem; /* 11px */
    text-align: center;
  }
}
  
  .about-us-card-arrow i {
    font-size: 0.875rem;
  }
}

/* =========================
   フローページ・FAQページ用スタイル
   ========================= */

/* ステップカード */
.step-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(191, 164, 90, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #BFA45A 0%, #d4b76a 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: var(--font-family-english);
  box-shadow: 0 4px 15px rgba(191, 164, 90, 0.3);
}

.step-card h3 {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #2F4F4F;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.step-card p {
  color: #3C2F2F;
  line-height: 1.7;
  margin: 0;
}

/* FAQアイテム */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(191, 164, 90, 0.2);
}

/* ニュースボタン */
.news-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 44px;
  background-color: #BFA45A;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.news-button:hover {
  background-color: #A6915B;
  text-decoration: none;
  color: white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .vertical-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 2rem;
    text-align: center;
    padding: 1rem 0;
  }
  
  .vertical-title::after {
    display: none;
  }
  
  .vertical-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #BFA45A;
    margin: 0 auto 1rem;
  }
  
  .news-button {
    width: 100%;
    margin-top: 1rem;
  }
}

/* =============================================
   ロゴスタイル - 背景透明化
   ============================================= */

/* ヘッダー用ロゴ（白背景対応） */
.logo-blend {
  mix-blend-mode: multiply;
  filter: contrast(1.2) brightness(0.9);
}

/* フッター用ロゴ（ダーク背景対応） */
.logo-blend-white {
  filter: invert(1) brightness(1.2) contrast(1.1);
  mix-blend-mode: screen;
}

/* 高画質ロゴ用の追加最適化 */
.logo-hq {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* =============================================
   ミニマル・エレガントスタイル
   ============================================= */

/* ミニマルCTAボタン - 明るいトーン */
.minimal-cta-primary {
  @apply inline-flex items-center px-10 py-4 bg-primary-600 hover:bg-primary-700 text-white rounded-lg font-medium text-lg tracking-wide transition-all duration-300 shadow-lg hover:shadow-xl hover:scale-105;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.minimal-cta-secondary {
  @apply inline-flex items-center px-10 py-4 bg-white hover:bg-gray-50 text-gray-800 rounded-lg font-medium text-lg tracking-wide transition-all duration-300 border-2 border-gray-200 hover:border-primary-600 shadow-lg hover:shadow-xl hover:scale-105;
  letter-spacing: 0.05em;
}

/* エレガントなセクションスタイル */
.elegant-section {
  @apply py-20 px-6;
}

.elegant-section-white {
  @apply bg-white;
}

.elegant-section-light {
  @apply bg-gray-50;
}

/* ミニマルカード */
.minimal-card {
  @apply bg-white border border-gray-200 p-8 transition-all duration-300 hover:shadow-lg hover:border-primary-300;
}

/* エレガントタイポグラフィ */
.elegant-heading {
  @apply font-light text-4xl md:text-5xl text-gray-800 mb-6 tracking-wide;
}

.elegant-subheading {
  @apply font-light text-xl md:text-2xl text-gray-600 leading-relaxed;
}

/* ゴールドアクセント */
.gold-accent {
  color: var(--color-primary);
}

.gold-border {
  border-color: var(--color-primary);
}

.gold-bg {
  background-color: var(--color-primary);
}

/* z-index階層管理 */
.z-header {
  z-index: 100;
}

.z-hero-content {
  z-index: 10;
}

.z-hero-bg {
  z-index: 0;
}

/* ヘッダー透明度調整 */
.header-transparent {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/* テキスト視認性向上 */
.hero-text-shadow {
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 明るく軽やかなテキストプレート */
.text-plate-light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* 和風アクセント */
.japanese-accent {
  background: linear-gradient(135deg, 
    rgba(255, 182, 193, 0.2) 0%,  /* 桜色 */
    rgba(255, 255, 255, 0.3) 50%,
    rgba(240, 248, 255, 0.2) 100% /* 淡い空色 */
  );
}

/* =============================================
   シンプル高級感Heroスタイル
   ============================================= */

/* シンプル高級感テキストスタイル */
.hero-text-elegant {
  color: #ffffff;
  font-family: var(--font-family-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 8px rgba(0, 0, 0, 0.6),
    0 1px 2px rgba(0, 0, 0, 1);
}

/* スタイリッシュなブランドロゴ */
.hero-stylish-brand {
  color: #d4af37;
  font-family: var(--font-family-english);
  font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 6rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 8px rgba(0, 0, 0, 0.6),
    0 1px 2px rgba(0, 0, 0, 1);
  position: relative;
}

/* スタイリッシュな装飾効果 */
.hero-stylish-brand::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

/* 高級感のあるタイポグラフィ */
.hero-main-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 2rem;
  line-height: 1.3;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hero-main-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.4;
  }
  
  .hero-stylish-brand {
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: 0.2em;
  }
  
  .hero-stylish-brand::after {
    width: 60px;
    bottom: -6px;
  }
}

/* ===============================
   About ページ専用スタイル
   =============================== */

/* ==============================================
   About ヒーローセクション
   トップページと世界観統一（和・上品・静か）
   ============================================== */

.about-hero-section {
  background: linear-gradient(to bottom, #fdfcfa 0%, #faf9f7 100%);
  position: relative;
  min-height: 400px; /* 固定高さで安定 */
  display: flex;
  align-items: center; /* 垂直方向中央 */
  justify-content: center; /* 水平方向中央 */
  padding: 6rem 0; /* 上下に十分な余白 */
}

/* コンテンツラッパー：完全中央配置 */
.about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* 水平方向中央 */
  justify-content: center; /* 垂直方向中央 */
  text-align: center;
  width: 100%;
  padding: 3rem 1.5rem; /* 上下に余白 */
  margin-top: 2rem; /* ヘッダー下の余白を追加 */
}

.about-hero-background {
  width: 100%;
  height: 100%;
  /* 中央はふんわり白、周辺に淡い和柄 */
  background: 
    /* 中央から外側への強いグラデーション */
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(250, 249, 247, 0.7) 40%, rgba(245, 241, 234, 0.5) 70%, rgba(245, 241, 234, 0.3) 100%),
    #fdfcfa;
  position: relative;
}

.about-hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  /* 麻の葉パターン - コントラスト弱く */
  background-image: 
    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='%23c8b37a' fill-opacity='0.08'%3E%3Cpath d='M30 0l15 26-15 26-15-26z'/%3E%3Cpath d='M0 30l26 15-26 15V30z'/%3E%3Cpath d='M60 30l-26 15 26 15V30z'/%3E%3Cpath d='M30 60l-15-26 15-26 15 26z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  /* 左右端でしっかり見え、中央はふんわり薄く */
  opacity: 0.6; /* 全体の不透明度を下げる */
  -webkit-mask-image: 
    radial-gradient(ellipse at center, transparent 0%, transparent 30%, black 60%, black 100%);
  mask-image: 
    radial-gradient(ellipse at center, transparent 0%, transparent 30%, black 60%, black 100%);
  pointer-events: none;
}

/* 金箔装飾は削除（シンプルに） */
.gold-foil-decoration {
  display: none; /* アニメーションなし、静かに */
}

/* ABOUT（英字見出し） */
.about-hero-english {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; /* 16px - 少し小さめ */
  font-weight: 400;
  letter-spacing: 0.4em; /* 広めの字間 */
  color: #c9a961; /* ゴールド */
  text-transform: uppercase;
  line-height: 1.2;
  user-select: none;
  pointer-events: none;
  opacity: 0.7; /* 控えめ */
  margin-bottom: 1.25rem; /* タイトルとの間隔 */
}

/* メインタイトル */
.about-hero-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 2.75rem; /* 44px - 少し大きく */
  font-weight: 500; /* 少ししっかり */
  color: #2c2c2c; /* 深めの色 */
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* 柔らかい影 */
  position: relative;
  padding-bottom: 2rem; /* 下に余白（ライン用） */
  margin: 0; /* マージンリセット */
}

/* タイトル下の細いライン */
.about-hero-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c8b37a, transparent);
  opacity: 0.5;
}

.about-hero-description {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.about-hero-description p {
  margin-bottom: 0.75rem;
}

.about-hero-description p:last-child {
  margin-bottom: 0;
}

/* ===== スマホ版（768px以下） ===== */
@media (max-width: 768px) {
  .about-hero-section {
    min-height: 280px; /* スマホ: 280px（少しコンパクト） */
  }
  
  .about-hero-content {
    padding: 3.5rem 1.5rem; /* 上下余白は少し詰める */
  }
  
  .about-hero-background::before {
    opacity: 0.4; /* スマホではさらに薄く */
    background-size: 60px 60px; /* パターン少し小さく */
  }
  
  .about-hero-english {
    font-size: 0.875rem; /* 14px */
    letter-spacing: 0.3em;
    margin-bottom: 1rem; /* 少し詰める */
  }
  
  .about-hero-title {
    font-size: 1.75rem; /* 28px */
    letter-spacing: 0.08em;
    padding-bottom: 1rem;
  }
  
  .about-hero-title::after {
    width: 60px; /* ライン短く */
  }
}

/* セクションタイトル */
.section-title-english {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #BFA45A;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-title-japanese {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #2F4F4F;
  line-height: 1.3;
}

/* カウンセラーメッセージセクション */
.counselor-card {
  padding: 2rem 0;
}

.counselor-image-container {
  display: flex;
  justify-content: center;
}

.counselor-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid #BFA45A;
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(191, 164, 90, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counselor-image:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.12),
    0 6px 20px rgba(191, 164, 90, 0.25);
  border-color: #D4AF37;
}

.counselor-position {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.counselor-position.primary {
  color: #BFA45A;
}

.counselor-position.secondary {
  color: #374151;
}

.counselor-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.counselor-name.primary {
  color: #BFA45A;
}

.counselor-name.secondary {
  color: #374151;
}

.counselor-greeting {
  font-size: 1.125rem;
  color: #6B7280;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.counselor-description {
  color: #374151;
  line-height: 1.8;
  font-size: 1rem;
  margin-top: 1.5rem;
}

.counselor-description p {
  margin-bottom: 1.2rem;
}

.counselor-description p:last-child {
  margin-bottom: 0;
}

.counselor-text {
  padding: 1rem 0;
}

/* 想い・理念セクション */
.philosophy-section {
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ea 100%);
  position: relative;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    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='%23BFA45A' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='50' cy='50' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

.philosophy-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #BFA45A;
  line-height: 1.2;
  position: relative;
  text-align: left;
  padding: 1rem 0 2rem 0;
  margin-bottom: 2rem;
}

.philosophy-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 3px;
  background: 
    url("data:image/svg+xml,%3Csvg width='150' height='3' viewBox='0 0 150 3' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cpath d='M0 1.5 L50 1.5' stroke='%23BFA45A' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M60 1.5 L90 1.5' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M100 1.5 L150 1.5' stroke='%23BFA45A' stroke-width='3' stroke-linecap='round'/%3E%3Ccircle cx='30' cy='1.5' r='1.5' fill='%23D4AF37'/%3E%3Ccircle cx='75' cy='1.5' r='1' fill='%23BFA45A'/%3E%3Ccircle cx='120' cy='1.5' r='1.5' fill='%23D4AF37'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
}

.philosophy-catchphrase {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #2F4F4F;
  background: linear-gradient(135deg, #BFA45A 0%, #d4b76a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
}

.philosophy-content {
  color: #374151;
  font-size: 1rem;
  line-height: 1.8;
}

.philosophy-image-container {
  display: flex;
  justify-content: center;
}

.philosophy-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(191, 164, 90, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-image:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.12),
    0 6px 20px rgba(191, 164, 90, 0.15);
}

/* 事業所概要セクション */
.business-info-section {
  background: 
    radial-gradient(circle at 100% 0%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, 
      #BFA45A 0%, 
      #d4b76a 10%, 
      #f0d785 20%, 
      #e6c870 30%, 
      #d4b76a 40%, 
      #BFA45A 50%, 
      #c4a663 60%, 
      #d4b76a 70%, 
      #e8ca72 80%, 
      #d4b76a 90%, 
      #BFA45A 100%
    );
  position: relative;
  overflow: hidden;
}

.business-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, 
      rgba(255, 255, 255, 0.15) 0%, 
      transparent 20%, 
      rgba(255, 255, 255, 0.08) 40%, 
      transparent 60%, 
      rgba(255, 255, 255, 0.12) 80%, 
      transparent 100%
    ),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 25%);
  pointer-events: none;
  animation: shimmer 8s ease-in-out infinite;
}

.business-info-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(255, 215, 0, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 85% 15%, rgba(255, 215, 0, 0.3) 1.5px, transparent 1.5px),
    radial-gradient(circle at 15% 85%, rgba(255, 215, 0, 0.35) 1px, transparent 1px),
    radial-gradient(circle at 85% 85%, rgba(255, 215, 0, 0.45) 2px, transparent 2px),
    radial-gradient(circle at 50% 25%, rgba(255, 223, 128, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 25% 75%, rgba(255, 215, 0, 0.25) 1.5px, transparent 1.5px),
    radial-gradient(circle at 75% 75%, rgba(255, 223, 128, 0.4) 1px, transparent 1px);
  background-size: 120px 120px, 150px 150px, 130px 130px, 140px 140px, 160px 160px, 110px 110px, 170px 170px;
  pointer-events: none;
  animation: sparkle 12s linear infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes sparkle {
  0%, 100% { transform: translateX(0) translateY(0) scale(1); }
  25% { transform: translateX(2px) translateY(-1px) scale(1.02); }
  50% { transform: translateX(-1px) translateY(1px) scale(0.98); }
  75% { transform: translateX(1px) translateY(-2px) scale(1.01); }
}

.business-info-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.1),
    0 4px 20px rgba(191, 164, 90, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.business-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .business-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(191, 164, 90, 0.1);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(191, 164, 90, 0.15);
}

.info-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #BFA45A;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
}

.info-icon {
  font-size: 1.125rem;
  color: #BFA45A;
  width: 18px;
  text-align: center;
}

.info-value {
  color: #374151;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-left: 2.25rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .about-hero-section {
    padding: 6rem 0;
    min-height: 70vh;
  }
  
  .counselor-card {
    margin-bottom: 3rem;
  }
  
  .counselor-name {
    font-size: 1.5rem;
  }
  
  .philosophy-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .philosophy-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
  }
}
  
  .philosophy-catchphrase {
    font-size: 1.125rem;
  }
  
  .business-info-card {
    padding: 2rem;
  }
  
  .business-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .info-item {
    padding: 1rem;
  }
}
/* ===============================
   Service ページ専用スタイル
   =============================== */

/* Service Hero Section */
.service-hero-section {
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ea 100%);
  position: relative;
}

.service-hero-background {
  width: 100%;
  height: 100%;
  /* 中央は白、周辺に和柄装飾 */
  background: 
    radial-gradient(circle at 0% 0%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    radial-gradient(circle at 100% 0%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    radial-gradient(circle at 0% 100%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    radial-gradient(circle at 100% 100%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    #FEFDFB;
  position: relative;
}

.service-hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    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='%23BFA45A' fill-opacity='0.15'%3E%3Cpath d='M30 0l15 26-15 26-15-26z'/%3E%3Cpath d='M0 30l26 15-26 15V30z'/%3E%3Cpath d='M60 30l-26 15 26 15V30z'/%3E%3Cpath d='M30 60l-15-26 15-26 15 26z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  -webkit-mask-image: 
    radial-gradient(circle at 0% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 0% 100%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 100%, black 0%, black 20%, transparent 35%);
  -webkit-mask-composite: source-over;
  mask-image: 
    radial-gradient(circle at 0% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 0% 100%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 100%, black 0%, black 20%, transparent 35%);
  mask-composite: add;
  pointer-events: none;
}

.service-hero-english {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: rgba(191, 164, 90, 0.2);
  text-transform: uppercase;
  line-height: 1.2;
  user-select: none;
  pointer-events: none;
}

.service-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #BFA45A;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.service-hero-description {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.service-hero-description p {
  margin-bottom: 0.75rem;
}

.service-hero-description p:last-child {
  margin-bottom: 0;
}

/* Plans Section */
.plans-section {
  position: relative;
}

.section-subtitle {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.6;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Plan Card */
.plan-card {
  background: white;
  border: 2px solid rgba(191, 164, 90, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(191, 164, 90, 0.2);
  border-color: #BFA45A;
}

.plan-card-featured {
  border: 3px solid #BFA45A;
  background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
  box-shadow: 0 8px 30px rgba(191, 164, 90, 0.15);
}

.plan-card-featured:hover {
  box-shadow: 0 16px 50px rgba(191, 164, 90, 0.25);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #BFA45A 0%, #D4AF37 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(191, 164, 90, 0.3);
}

/* Plan Header */
.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(191, 164, 90, 0.2);
}

.plan-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.plan-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2F4F4F;
  margin-bottom: 0.5rem;
}

.plan-subtitle {
  color: #6B7280;
  font-size: 0.95rem;
  font-weight: 400;
}

/* Plan Price */
.plan-price {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ea 50%, #faf9f7 100%);
  border-radius: 12px;
}

.price-label {
  font-size: 0.875rem;
  color: #6B7280;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #BFA45A;
  line-height: 1;
}

.price-unit {
  font-size: 1.5rem;
  margin-left: 0.25rem;
}

.price-note {
  font-size: 0.875rem;
  color: #9CA3AF;
  margin-top: 0.5rem;
}

/* Plan Features */
.plan-features {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-icon {
  color: #BFA45A;
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Plan Description */
.plan-description {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(250, 249, 247, 0.5);
  border-radius: 12px;
  border-left: 3px solid #BFA45A;
}

.plan-description p {
  color: #4B5563;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* Plan CTA */
.plan-cta {
  text-align: center;
}

.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: white;
  color: #BFA45A;
  border: 2px solid #BFA45A;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.plan-button:hover {
  background: #BFA45A;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(191, 164, 90, 0.3);
}

.plan-button-featured {
  background: linear-gradient(135deg, #BFA45A 0%, #D4AF37 100%);
  color: white;
  border: none;
}

.plan-button-featured:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #BFA45A 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 30px rgba(191, 164, 90, 0.4);
}

/* Service Details Section */
.service-details-section {
  position: relative;
}

.service-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .service-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-details-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-detail-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(191, 164, 90, 0.1);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(191, 164, 90, 0.15);
  border-color: #BFA45A;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ea 100%);
  border-radius: 50%;
  font-size: 2rem;
  color: #BFA45A;
  border: 2px solid rgba(191, 164, 90, 0.2);
}

.service-detail-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2F4F4F;
  margin-bottom: 1rem;
}

.service-detail-description {
  color: #4B5563;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* FAQ Section */
.faq-section {
  position: relative;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(191, 164, 90, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(191, 164, 90, 0.15);
  border-color: #BFA45A;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.faq-icon {
  color: #BFA45A;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.faq-question h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2F4F4F;
  line-height: 1.4;
  margin: 0;
}

.faq-answer {
  padding-left: 2.5rem;
}

.faq-answer p {
  color: #4B5563;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .service-hero-english {
    font-size: 2rem;
  }
  
  .service-hero-title {
    font-size: 2rem;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .plan-card {
    padding: 2rem 1.5rem;
  }
  
  .plan-name {
    font-size: 1.5rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .service-details-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-answer {
    padding-left: 0;
    margin-top: 1rem;
  }
}

/* ===============================
   Flow ページ専用スタイル
   =============================== */

/* Flow Hero Section */
.flow-hero-section {
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ea 100%);
  position: relative;
}

/* PC表示でテキストセット全体を下げる */
.flow-hero-section .container > div {
  padding-top: 8rem !important;
  padding-bottom: 4rem !important;
}

.flow-hero-background {
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 0% 0%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    radial-gradient(circle at 100% 0%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    radial-gradient(circle at 0% 100%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    radial-gradient(circle at 100% 100%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    #FEFDFB;
  position: relative;
}

.flow-hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    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='%23BFA45A' fill-opacity='0.15'%3E%3Cpath d='M30 0l15 26-15 26-15-26z'/%3E%3Cpath d='M0 30l26 15-26 15V30z'/%3E%3Cpath d='M60 30l-26 15 26 15V30z'/%3E%3Cpath d='M30 60l-15-26 15-26 15 26z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  -webkit-mask-image: 
    radial-gradient(circle at 0% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 0% 100%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 100%, black 0%, black 20%, transparent 35%);
  -webkit-mask-composite: source-over;
  mask-image: 
    radial-gradient(circle at 0% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 0% 100%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 100%, black 0%, black 20%, transparent 35%);
  mask-composite: add;
  pointer-events: none;
}

.flow-hero-english {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: rgba(191, 164, 90, 0.2);
  text-transform: uppercase;
  line-height: 1.2;
  user-select: none;
  pointer-events: none;
}

.flow-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #BFA45A;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.flow-hero-description {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.flow-hero-description p {
  margin-bottom: 0.5rem;
}

.flow-hero-description p:last-child {
  margin-bottom: 0;
}

/* Flow Steps Section */
.flow-steps-section {
  position: relative;
}

.flow-step-item {
  margin-bottom: 4rem;
  position: relative;
}

.flow-step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #BFA45A;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-align: center;
}

.flow-step-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .flow-step-left .flow-step-content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .flow-step-right .flow-step-content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.flow-step-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.flow-step-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(191, 164, 90, 0.2);
}

.flow-step-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.flow-step-text {
  padding: 1rem;
}

.flow-step-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2F4F4F;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.flow-step-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #BFA45A 0%, transparent 100%);
}

.flow-step-description {
  color: #4B5563;
  font-size: 1rem;
  line-height: 1.8;
}

.flow-step-description p {
  margin-bottom: 1.5rem;
}

.flow-step-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.flow-step-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

.flow-step-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.125rem;
  width: 8px;
  height: 8px;
  background: #BFA45A;
  border-radius: 50%;
}

/* Flow Step Divider */
.flow-step-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
  position: relative;
}

.flow-divider-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(191, 164, 90, 0.3) 20%, 
    rgba(191, 164, 90, 0.5) 50%, 
    rgba(191, 164, 90, 0.3) 80%, 
    transparent 100%
  );
}

.flow-divider-icon {
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid #BFA45A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BFA45A;
  font-size: 1rem;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(191, 164, 90, 0.15);
}

/* Flow Final Message */
.flow-final-message {
  margin-top: 5rem;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ea 100%);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.flow-final-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #BFA45A 0%, #D4AF37 100%);
  border-radius: 50%;
  color: white;
  font-size: 2.5rem;
  box-shadow: 0 8px 20px rgba(191, 164, 90, 0.3);
}

.flow-final-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2F4F4F;
  margin-bottom: 1rem;
}

.flow-final-text {
  color: #4B5563;
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Duration Section */
.flow-duration-section {
  position: relative;
}

.duration-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .duration-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.duration-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(191, 164, 90, 0.1);
  transition: all 0.3s ease;
}

.duration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(191, 164, 90, 0.15);
  border-color: #BFA45A;
}

.duration-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ea 100%);
  border-radius: 50%;
  color: #BFA45A;
  font-size: 2rem;
  border: 2px solid rgba(191, 164, 90, 0.2);
}

.duration-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2F4F4F;
  margin-bottom: 1rem;
}

.duration-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #BFA45A;
  margin-bottom: 1rem;
  line-height: 1;
}

.duration-description {
  color: #4B5563;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .flow-hero-english {
    font-size: 2rem;
  }
  
  .flow-hero-title {
    font-size: 2rem;
  }
  
  .flow-step-content-wrapper {
    grid-template-columns: 1fr !important;
  }
  
  .flow-step-title {
    font-size: 1.5rem;
  }
  
  .flow-step-text {
    padding: 0;
  }
  
  .flow-final-message {
    padding: 2rem 1.5rem;
  }
  
  .flow-final-title {
    font-size: 1.5rem;
  }
  
  .flow-final-text {
    font-size: 1rem;
  }
}

/* ===============================
   FAQ（よくあるご質問）ページ専用スタイル
   =============================== */

/* Hero Section */
.faq-hero-section {
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ea 100%);
  position: relative;
}

.faq-hero-background {
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 0% 0%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    radial-gradient(circle at 100% 0%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    radial-gradient(circle at 0% 100%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    radial-gradient(circle at 100% 100%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    #FEFDFB;
  position: relative;
}

.faq-hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    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='%23BFA45A' fill-opacity='0.15'%3E%3Cpath d='M30 0l15 26-15 26-15-26z'/%3E%3Cpath d='M0 30l26 15-26 15V30z'/%3E%3Cpath d='M60 30l-26 15 26 15V30z'/%3E%3Cpath d='M30 60l-15-26 15-26 15 26z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  -webkit-mask-image: 
    radial-gradient(circle at 0% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 0% 100%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 100%, black 0%, black 20%, transparent 35%);
  -webkit-mask-composite: source-over;
  mask-image: 
    radial-gradient(circle at 0% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 0% 100%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 100%, black 0%, black 20%, transparent 35%);
  mask-composite: add;
  pointer-events: none;
}

.faq-hero-english {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: rgba(191, 164, 90, 0.2);
  text-transform: uppercase;
  line-height: 1.2;
  user-select: none;
  pointer-events: none;
}

.faq-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #BFA45A;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.faq-hero-description {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.faq-hero-description p {
  margin-bottom: 0.5rem;
}

.faq-hero-description p:last-child {
  margin-bottom: 0;
}

/* FAQ List Section */
.faq-list-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.faq-list-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(191, 164, 90, 0.1);
  transition: all 0.3s ease;
}

.faq-list-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(191, 164, 90, 0.15);
  border-color: #BFA45A;
}

.faq-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #BFA45A 0%, #D4AF37 100%);
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(191, 164, 90, 0.3);
}

.faq-content {
  flex: 1;
}

.faq-question-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #2F4F4F;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.faq-answer-box {
  background: linear-gradient(to bottom, #faf9f7 0%, #ffffff 100%);
  border-left: 4px solid #BFA45A;
  border-radius: 8px;
  padding: 1.5rem 2rem;
}

.faq-answer-box p {
  color: #4B5563;
  font-size: 1.0625rem;
  line-height: 1.9;
  margin: 0;
}

.faq-answer-label {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #BFA45A;
  margin-right: 0.5rem;
  vertical-align: baseline;
}

/* CTA Section */
.faq-cta-section {
  max-width: 1000px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
}

.faq-cta-box {
  background: linear-gradient(135deg, #2F4F4F 0%, #3d5e5e 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(47, 79, 79, 0.2);
}

.faq-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px);
  pointer-events: none;
}

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

.faq-cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.faq-cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.faq-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: white;
  color: #2F4F4F;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #BFA45A;
  color: white;
}

.faq-cta-button i {
  font-size: 1.25rem;
}

.faq-cta-button-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.faq-cta-button-secondary:hover {
  background: white;
  color: #2F4F4F;
  border-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-hero-english {
    font-size: 2rem;
  }
  
  .faq-hero-title {
    font-size: 2rem;
  }
  
  .faq-list-section {
    padding: 3rem 1rem;
  }
  
  .faq-list-item {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  
  .faq-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .faq-question-title {
    font-size: 1.125rem;
  }
  
  .faq-answer-box {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-answer-box p {
    font-size: 0.9375rem;
  }
  
  .faq-answer-label {
    font-size: 1.25rem;
  }
  
  .faq-cta-section {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  
  .faq-cta-box {
    padding: 3rem 2rem;
  }
  
  .faq-cta-title {
    font-size: 1.5rem;
  }
  
  .faq-cta-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .faq-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .faq-cta-button {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ===============================
   Contact（お問い合わせ）ページ専用スタイル
   =============================== */

/* Hero Section */
.contact-hero-section {
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ea 100%);
  position: relative;
}

.contact-hero-background {
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 0% 0%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    radial-gradient(circle at 100% 0%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    radial-gradient(circle at 0% 100%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    radial-gradient(circle at 100% 100%, rgba(245, 241, 234, 0.95) 0%, transparent 25%),
    #FEFDFB;
  position: relative;
}

.contact-hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    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='%23BFA45A' fill-opacity='0.15'%3E%3Cpath d='M30 0l15 26-15 26-15-26z'/%3E%3Cpath d='M0 30l26 15-26 15V30z'/%3E%3Cpath d='M60 30l-26 15 26 15V30z'/%3E%3Cpath d='M30 60l-15-26 15-26 15 26z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  -webkit-mask-image: 
    radial-gradient(circle at 0% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 0% 100%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 100%, black 0%, black 20%, transparent 35%);
  -webkit-mask-composite: source-over;
  mask-image: 
    radial-gradient(circle at 0% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 0%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 0% 100%, black 0%, black 20%, transparent 35%),
    radial-gradient(circle at 100% 100%, black 0%, black 20%, transparent 35%);
  mask-composite: add;
  pointer-events: none;
}

.contact-hero-english {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: rgba(191, 164, 90, 0.2);
  text-transform: uppercase;
  line-height: 1.2;
  user-select: none;
  pointer-events: none;
}

.contact-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #BFA45A;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-hero-description {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.contact-hero-description p {
  margin-bottom: 0.5rem;
}

.contact-hero-description p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero-english {
    font-size: 2rem;
  }
  
  .contact-hero-title {
    font-size: 2rem;
  }
}

/* ===============================
   Blog（ブログ）ページ専用スタイル
   =============================== */

/* Hero Section */
.blog-hero-section {
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ea 100%);
  position: relative;
}

.blog-hero-background {
  width: 100%;
  height: 100%;
  background-image: 
    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='%23BFA45A' fill-opacity='0.12'%3E%3Cpath d='M30 0l15 26-15 26-15-26z'/%3E%3Cpath d='M0 30l26 15-26 15V30z'/%3E%3Cpath d='M60 30l-26 15 26 15V30z'/%3E%3Cpath d='M30 60l-15-26 15-26 15 26z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.08'%3E%3Ccircle cx='20' cy='20' r='10'/%3E%3Ccircle cx='0' cy='0' r='10'/%3E%3Ccircle cx='40' cy='0' r='10'/%3E%3Ccircle cx='0' cy='40' r='10'/%3E%3Ccircle cx='40' cy='40' r='10'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px, 60px 60px;
  opacity: 0.9;
}

.blog-hero-english {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: rgba(191, 164, 90, 0.15);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: -1rem;
  user-select: none;
  pointer-events: none;
}

.blog-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #BFA45A;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.blog-hero-description {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.blog-hero-description p {
  margin-bottom: 0.5rem;
}

.blog-hero-description p:last-child {
  margin-bottom: 0;
}

/* Blog List Section */
.blog-list-section {
  position: relative;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(201, 169, 97, 0.2);
  border-color: #c9a961;
}

.blog-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

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

.blog-card-content {
  padding: 2rem 2rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  margin-bottom: 1rem;
}

.category-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c9a961 0%, #b39451 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
  transition: all 0.3s ease;
}

.category-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

.blog-card-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.2rem;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.blog-card-title a:hover {
  color: #c9a961;
}

.blog-card-description {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.blog-card-date {
  font-size: 0.875rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
}

.blog-card-link {
  color: #c9a961;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-card-link:hover {
  color: #b39451;
  transform: translateX(4px);
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.pagination-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border: 2px solid rgba(201, 169, 97, 0.2);
  border-radius: 10px;
  color: #4b5563;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: white;
  min-width: 44px;
  justify-content: center;
}

.pagination-button:hover {
  background: #fdfcfa;
  border-color: #c9a961;
  color: #c9a961;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.15);
}

.pagination-button.active {
  background: linear-gradient(135deg, #c9a961 0%, #b39451 100%);
  color: white;
  border-color: #c9a961;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-hero-section {
    padding: 6rem 0 3rem;
  }
  
  .blog-hero-english {
    font-size: 2rem;
    margin-bottom: -0.5rem;
  }
  
  .blog-hero-title {
    font-size: 2.25rem;
  }
  
  .blog-hero-description {
    font-size: 1rem;
  }
  
  .blog-card-image {
    height: 180px;
  }
  
  .blog-card-content {
    padding: 1.25rem;
  }
  
  .blog-card-title {
    font-size: 1.125rem;
  }
  
  .blog-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .pagination-button {
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
  }
}

/* =========================
   Hero Elegant - 上品な公式サイト版
   ========================= */

/* Heroセクション全体 */
.hero-elegant {
  background-color: #1a1410;
}

/* コンテンツラッパー（画面の40-45%位置に配置 - 微調整済み） */
.hero-content-wrapper {
  padding-top: 40vh;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .hero-content-wrapper {
    padding-top: 48vh;
  }
}

/* 上品なオーバーレイ（薄め・茶寄り黒 - 自然さ重視） */
.hero-overlay {
  background: rgba(26, 20, 16, 0.28);
  /* 茶系の黒：rgba(26, 20, 16) は #1a1410 の RGB値 */
}

/* ===== ヒーロー要素のフェードインアニメーション ===== */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-fade-in {
  animation: heroFadeIn 1.2s ease-out forwards;
  opacity: 0; /* 初期状態は透明 */
}

.hero-fade-in-delay-1 {
  animation: heroFadeIn 1.2s ease-out 0.3s forwards;
  opacity: 0; /* 初期状態は透明 */
}

.hero-fade-in-delay-2 {
  animation: heroFadeIn 1.2s ease-out 0.6s forwards;
  opacity: 0; /* 初期状態は透明 */
}

/* メインコピー */
.hero-main-copy {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-main-copy {
    font-size: 3rem;
    letter-spacing: 0.15em;
  }
}

@media (min-width: 1024px) {
  .hero-main-copy {
    font-size: 3.5rem;
  }
}

/* ブランド名（メインコピーの70〜85%サイズ - カーニング調整済み） */
.hero-brand-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.95;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
  margin-bottom: 4.5rem;
}

@media (min-width: 768px) {
  .hero-brand-name {
    font-size: 2.5rem;
    letter-spacing: -0.8px;
  }
}

@media (min-width: 1024px) {
  .hero-brand-name {
    font-size: 2.75rem;
    letter-spacing: -1px;
  }
}

/* 控えめCTAボタン（上品・小さめ - サイズ最適化済み） */
.hero-cta-button {
  display: inline-block;
  padding: 0.75rem 2.25rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: transparent;
  border: 1.2px solid rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

.hero-cta-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-1px);
  text-decoration: none;
  color: #ffffff;
}

@media (max-width: 640px) {
  .hero-cta-button {
    padding: 0.65rem 1.875rem;
    font-size: 0.8125rem;
  }
}


/* =========================
   Story Section Elegant - ヒーロー調和版
   ========================= */

/* セクション背景（淡いクリーム） */
.story-section-elegant {
  background-color: #fafaf9;
  position: relative;
}

/* 見出し */
.story-section-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #4a4238;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .story-section-title {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
  }
}

/* サブコピー */
.story-section-copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #6b6158;
  max-width: 32rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .story-section-copy {
    font-size: 1.125rem;
  }
}

/* 控えめCTAボタン（ヒーロー統一） */
.story-cta-button {
  display: inline-block;
  padding: 0.75rem 2.25rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #4a4238;
  background: transparent;
  border: 1.2px solid rgba(201, 179, 122, 0.5);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-cta-button:hover {
  background: rgba(201, 179, 122, 0.08);
  border-color: rgba(201, 179, 122, 0.75);
  transform: translateY(-1px);
  text-decoration: none;
  color: #4a4238;
}

@media (max-width: 640px) {
  .story-cta-button {
    padding: 0.65rem 1.875rem;
    font-size: 0.8125rem;
  }
}

/* =========================
   News Section Elegant - ヒーロー調和版
   ========================= */

/* セクション背景（白） */
.news-section-elegant {
  background-color: #ffffff;
  position: relative;
}

/* 縦書き見出し（PC） / 横書き見出し（SP） */
.news-section-title-elegant {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #4a4238;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1.8;
  padding: 1rem 0;
  position: relative;
}

/* 縦ラインを薄く細く */
.news-section-title-elegant::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #dcd3c1 20%,
    #dcd3c1 80%,
    transparent 100%
  );
}

@media (max-width: 768px) {
  .news-section-title-elegant {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e0d7;
    width: 100%;
  }
  
  .news-section-title-elegant::after {
    display: none;
  }
}

/* 記事アイテム */
.news-item-elegant {
  display: block;
  padding: 1.5rem 0;
}

/* 記事間の区切り線（薄く） */
.news-item-border {
  border-bottom: 1px solid #e5e0d7;
}

/* 記事タイトル */
.news-item-title-elegant {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #4a4238;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.news-item-title-elegant:hover {
  color: #c9b37a;
  text-decoration: none;
}

@media (min-width: 768px) {
  .news-item-title-elegant {
    font-size: 1.125rem;
  }
}

/* メタ情報（日付＋カテゴリ） */
.news-item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* 日付 */
.news-item-date-elegant {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #8b7f73;
  letter-spacing: 0.03em;
}

/* カテゴリタグ（薄金背景×金文字） */
.news-item-category-elegant {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #a89567;
  background: rgba(201, 179, 122, 0.12);
  border: 1px solid rgba(201, 179, 122, 0.25);
  border-radius: 2px;
}

/* 記事一覧ボタン（ヒーロー統一） */
.news-cta-button {
  display: inline-block;
  padding: 0.75rem 2.25rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #4a4238;
  background: transparent;
  border: 1.2px solid rgba(201, 179, 122, 0.5);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-cta-button:hover {
  background: rgba(201, 179, 122, 0.08);
  border-color: rgba(201, 179, 122, 0.75);
  transform: translateY(-1px);
  text-decoration: none;
  color: #4a4238;
}

@media (max-width: 640px) {
  .news-cta-button {
    padding: 0.65rem 1.875rem;
    font-size: 0.8125rem;
  }
}

/* ==============================================
   全ページ共通ヒーローセクション
   ============================================== */

/* Service Hero */
.service-hero-section {
  background: linear-gradient(to bottom, #fdfcfa 0%, #faf9f7 100%);
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-background {
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(250, 249, 247, 0.7) 40%, rgba(245, 241, 234, 0.5) 70%, rgba(245, 241, 234, 0.3) 100%),
    #fdfcfa;
  position: relative;
}

.service-hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    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='%23c8b37a' fill-opacity='0.08'%3E%3Cpath d='M30 0l15 26-15 26-15-26z'/%3E%3Cpath d='M0 30l26 15-26 15V30z'/%3E%3Cpath d='M60 30l-26 15 26 15V30z'/%3E%3Cpath d='M30 60l-15-26 15-26 15 26z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.6;
  -webkit-mask-image: 
    radial-gradient(ellipse at center, transparent 0%, transparent 30%, black 60%, black 100%);
  mask-image: 
    radial-gradient(ellipse at center, transparent 0%, transparent 30%, black 60%, black 100%);
  pointer-events: none;
}

.service-hero-english {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: #c8b37a;
  text-transform: uppercase;
  opacity: 0.85;
}

.service-hero-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #3c3733;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  padding-bottom: 1.5rem;
  margin: 0;
}

.service-hero-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c8b37a, transparent);
  opacity: 0.5;
}

/* Flow, FAQ, Contact, Blog Hero - 同じスタイル適用 */
.flow-hero-section,
.faq-hero-section,
.contact-hero-section,
.blog-hero-section {
  background: linear-gradient(to bottom, #fdfcfa 0%, #faf9f7 100%);
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-hero-background,
.faq-hero-background,
.contact-hero-background,
.blog-hero-background {
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(250, 249, 247, 0.7) 40%, rgba(245, 241, 234, 0.5) 70%, rgba(245, 241, 234, 0.3) 100%),
    #fdfcfa;
  position: relative;
}

.flow-hero-background::before,
.faq-hero-background::before,
.contact-hero-background::before,
.blog-hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    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='%23c8b37a' fill-opacity='0.08'%3E%3Cpath d='M30 0l15 26-15 26-15-26z'/%3E%3Cpath d='M0 30l26 15-26 15V30z'/%3E%3Cpath d='M60 30l-26 15 26 15V30z'/%3E%3Cpath d='M30 60l-15-26 15-26 15 26z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.6;
  -webkit-mask-image: 
    radial-gradient(ellipse at center, transparent 0%, transparent 30%, black 60%, black 100%);
  mask-image: 
    radial-gradient(ellipse at center, transparent 0%, transparent 30%, black 60%, black 100%);
  pointer-events: none;
}

.flow-hero-english,
.faq-hero-english,
.contact-hero-english,
.blog-hero-english {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: #c8b37a;
  text-transform: uppercase;
  opacity: 0.85;
}

.flow-hero-title,
.faq-hero-title,
.contact-hero-title,
.blog-hero-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #3c3733;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  position: relative;
  padding-bottom: 1.5rem;
  margin: 0;
}

.flow-hero-title::after,
.faq-hero-title::after,
.contact-hero-title::after,
.blog-hero-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c8b37a, transparent);
  opacity: 0.5;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .service-hero-title,
  .flow-hero-title,
  .faq-hero-title,
  .contact-hero-title,
  .blog-hero-title,
  .about-hero-title {
    font-size: 2rem;
  }
}

/* ==============================================
   カウンセラーメッセージセクション
   ============================================== */

/* セクション全体 */
.counselor-message-section {
  background: linear-gradient(to bottom, #ffffff 0%, #faf9f7 50%, #ffffff 100%);
}

/* セクションタイトル */
.message-section-english {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: #c8b37a;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.message-section-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #3c3733;
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.message-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c8b37a, transparent);
  opacity: 0.6;
}

/* カウンセラーカード */
.counselor-card-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.counselor-card-first {
  margin-bottom: 8rem; /* 128px = 8rem */
}

.counselor-card-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

/* 写真エリア */
.counselor-photo-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.counselor-photo-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.counselor-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.3) 85%,
    rgba(255, 255, 255, 0.6) 100%
  );
  z-index: 10;
}

.counselor-photo-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 28px 80px rgba(0, 0, 0, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.counselor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  border-radius: 32px;
  position: relative;
  z-index: 1;
}

/* 山口さん - 顔が上部にあるため上寄りに */
.counselor-photo-yamaguchi {
  object-position: center 25%;
}

/* 飯島さん - 顔が上部にあるため上寄りに */
.counselor-photo-iijima {
  object-position: center 30%;
}

/* テキストエリア */
.counselor-text-box {
  padding: 1.5rem 0;
}

.counselor-role {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.counselor-role.primary {
  color: #c8b37a;
}

.counselor-role.secondary {
  color: #a89968;
}

.counselor-name {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.counselor-name.primary {
  color: #2d2926;
}

.counselor-name.secondary {
  color: #3c3733;
}

.name-reading {
  font-size: 0.75rem;
  font-weight: 400;
  color: #8a8278;
  letter-spacing: 0.05em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.counselor-message {
  color: #3c3733;
  line-height: 1.9;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.counselor-message p {
  margin-bottom: 1.25rem;
}

.counselor-message p:last-child {
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .counselor-card-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .counselor-photo-frame {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .counselor-name {
    justify-content: center;
  }
  
  .counselor-text-box {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .message-section-title {
    font-size: 1.75rem;
  }
  
  .counselor-card-wrapper {
    margin-bottom: 3rem !important;
  }
  
  .counselor-name {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 0.35rem;
  }
  
  .counselor-message {
    font-size: 0.9rem;
    line-height: 1.85;
  }
  
  .counselor-photo-frame {
    max-width: 240px;
    margin: 0 auto !important;
  }
  
  .counselor-photo {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
  }
}

/* ==============================================
   想い・理念セクション
   ============================================== */

.philosophy-section {
  background: linear-gradient(to bottom, #ffffff 0%, #faf9f7 50%, #ffffff 100%);
  padding: 6rem 0;
}

.philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* テキストエリア */
.philosophy-text-area {
  padding-right: 2rem;
}

.philosophy-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 500;
  color: #3c3733;
  letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1.25rem;
}

/* 3本のゴールドライン */
.philosophy-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c8b37a 0%, #d4c5a0 50%, #c8b37a 100%);
  border-radius: 2px;
}

.philosophy-title::before {
  content: '';
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #d4c5a0 0%, #e8dcc5 50%, #d4c5a0 100%);
  opacity: 0.6;
  border-radius: 1px;
}

.philosophy-message {
  color: #3c3733;
  font-size: 0.95rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
}

.philosophy-message p {
  margin-bottom: 1.5rem;
}

.philosophy-message p:last-child {
  margin-bottom: 0;
}

/* 写真エリア */
.philosophy-photo-area {
  position: relative;
}

.philosophy-photo-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: white;
  padding: 12px;
}

.philosophy-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* 写真フレームに上品なアクセント */
.philosophy-photo-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(200, 179, 122, 0.15);
  border-radius: 16px;
  pointer-events: none;
  z-index: 1;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .philosophy-text-area {
    padding-right: 0;
    text-align: left;
  }
  
  .philosophy-photo-frame {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .philosophy-section {
    padding: 4rem 0;
  }
  
  .philosophy-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  .philosophy-message {
    font-size: 0.9rem;
    line-height: 1.8;
  }
  
  .philosophy-message p {
    margin-bottom: 1.25rem;
  }
  
  .philosophy-photo-frame {
    max-width: 100%;
  }
}

/* ==============================================
   事業所概要セクション
   ============================================== */

.business-info-section {
  background: linear-gradient(135deg, #fdfcfa 0%, #faf9f7 50%, #fdfcfa 100%);
  padding: 6rem 0;
  position: relative;
}

/* 和柄背景（薄く） */
.business-info-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    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='%23c8b37a' fill-opacity='0.04'%3E%3Cpath d='M30 0l15 26-15 26-15-26z'/%3E%3Cpath d='M0 30l26 15-26 15V30z'/%3E%3Cpath d='M60 30l-26 15 26 15V30z'/%3E%3Cpath d='M30 60l-15-26 15-26 15 26z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.5;
  pointer-events: none;
}

.business-info-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* セクションタイトル */
.business-info-header {
  text-align: center;
  margin-bottom: 3rem;
}

.business-info-english {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: #c8b37a;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.business-info-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #3c3733;
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.business-info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c8b37a, transparent);
  opacity: 0.6;
}

/* カード */
.business-info-card {
  background: white;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
}

.business-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(200, 179, 122, 0.12);
  border-radius: 12px;
  pointer-events: none;
}

/* 情報リスト */
.business-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.business-info-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ラベル（左側） */
.business-info-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 180px;
  color: #8a7d6f;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.business-info-label i {
  font-size: 24px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8b37a;
  flex-shrink: 0;
}

.business-info-label span {
  flex-shrink: 0;
}

/* コンテンツ（右側） */
.business-info-content {
  flex: 1;
  color: #3c3733;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.business-info-note {
  display: block;
  font-size: 0.875rem;
  color: #6b6460;
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .business-info-section {
    padding: 4rem 0;
  }
  
  .business-info-container {
    padding: 0 1rem;
  }
  
  .business-info-title {
    font-size: 1.75rem;
  }
  
  .business-info-card {
    padding: 2rem 1.5rem;
    border-radius: 8px;
  }
  
  .business-info-list {
    gap: 1.75rem;
  }
  
  .business-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .business-info-label {
    min-width: auto;
    width: 100%;
  }
  
  .business-info-label i {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  
  .business-info-content {
    width: 100%;
    padding-left: 0;
    font-size: 0.95rem;
  }
  
  .business-info-note {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .business-info-card {
    padding: 1.5rem 1rem;
  }
  
  .business-info-list {
    gap: 1.5rem;
  }
}

/* ==============================================
   新料金プランセクション
   ============================================== */

.plans-section {
  background: white;
  padding: 6rem 0;
  position: relative;
}

.plans-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ヘッダー */
.plans-header {
  text-align: center;
  margin-bottom: 4rem;
}

.plans-english {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: #c8b37a;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.plans-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #3c3733;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.plans-subtitle {
  font-size: 0.95rem;
  color: #6b6460;
  letter-spacing: 0.05em;
}

/* メイングリッド（3カード横並び） */
.plans-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

/* サブグリッド（成婚料＋準備中） */
.plans-sub-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* プランカード */
.new-plan-card {
  background: white;
  border-radius: 12px;
  padding: 3.5rem 2rem 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.new-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* おすすめプラン */
.new-plan-featured {
  border-color: #c8b37a;
  transform: scale(1.03);
}

.new-plan-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.new-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c8b37a 0%, #d4c5a0 100%);
  color: white;
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 8px rgba(200, 179, 122, 0.3);
}

/* プランタグ（単発、定番、集中サポート） */
.new-plan-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(200, 179, 122, 0.15);
  color: #8a7d6f;
  padding: 0.3rem 0.9rem;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* 準備中プラン（横長） */
.new-plan-comingsoon-wide {
  background: white;
  border-radius: 12px;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 2px solid #e0d8c8;
  opacity: 0.7;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.new-plan-comingsoon-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: #8a7d6f;
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.new-plan-comingsoon-left {
  flex-shrink: 0;
  min-width: 200px;
  padding-top: 0.25rem;
}

.new-plan-comingsoon-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #3c3733;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.new-plan-comingsoon-price {
  font-size: 0.95rem;
  color: #6b6460;
}

.new-price-amount-small {
  font-size: 1.75rem;
  font-weight: 700;
  color: #c8b37a;
  margin: 0 0.25rem;
}

.new-price-unit-small {
  font-size: 0.95rem;
  color: #8a7d6f;
}

.new-plan-comingsoon-right {
  flex: 1;
}

.new-plan-comingsoon-text {
  font-size: 0.9rem;
  color: #3c3733;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* プラン名 */
.new-plan-name {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #3c3733;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-align: center;
}

/* 料金表示 */
.new-plan-price {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200, 179, 122, 0.2);
}

.new-price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c8b37a;
  letter-spacing: -0.02em;
}

.new-price-unit {
  font-size: 1.2rem;
  color: #8a7d6f;
  margin-left: 0.25rem;
}

.new-price-period {
  font-size: 0.9rem;
  color: #8a7d6f;
  margin-left: 0.5rem;
}

/* 説明文 */
.new-plan-description {
  color: #3c3733;
  font-size: 0.95rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.new-plan-description p {
  margin-bottom: 1.25rem;
}

.new-plan-description p:last-child {
  margin-bottom: 0;
}

.new-plan-content-title {
  font-weight: 600;
  color: #8a7d6f;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem !important;
}

.new-plan-content {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #6b6460;
  padding-left: 0.5rem;
}

.new-plan-note {
  font-size: 0.8rem;
  color: #a0978d;
  margin-top: 0.5rem;
  font-style: italic;
}

/* 成婚料ボックス（横長） */
.new-plan-success-fee {
  background: white;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(200, 179, 122, 0.3);
  display: flex;
  align-items: center;
  gap: 3rem;
}

.new-success-fee-prices {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 240px;
}

.new-success-fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.new-success-fee-title {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #3c3733;
  letter-spacing: 0.1em;
}

.new-success-fee-price {
  white-space: nowrap;
}

.new-success-fee-badge {
  display: inline-block;
  background: rgba(200, 179, 122, 0.15);
  color: #8a7d6f;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.new-success-fee-text {
  flex: 1;
  font-size: 0.9rem;
  color: #6b6460;
  line-height: 1.7;
  text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .plans-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .new-plan-featured {
    transform: scale(1);
  }
  
  .new-plan-featured:hover {
    transform: translateY(-4px);
  }
  
  .new-plan-comingsoon-wide {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  
  .new-plan-comingsoon-left {
    min-width: auto;
    width: 100%;
  }
  
  .new-plan-comingsoon-right {
    width: 100%;
  }
  
  .new-plan-success-fee {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  
  .new-success-fee-prices {
    min-width: auto;
    width: 100%;
  }
  
  .new-success-fee-row {
    justify-content: space-between;
    width: 100%;
  }
  
  .new-success-fee-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .plans-section {
    padding: 4rem 0;
  }
  
  .plans-container {
    padding: 0 1rem;
  }
  
  .plans-header {
    margin-bottom: 3rem;
  }
  
  .plans-title {
    font-size: 1.75rem;
  }
  
  .new-plan-card,
  .new-plan-success-fee {
    padding: 2rem 1.5rem;
  }
  
  .new-plan-name,
  .new-success-fee-title {
    font-size: 1.4rem;
  }
  
  .new-price-amount {
    font-size: 2rem;
  }
  
  .plans-main-grid {
    margin-bottom: 2rem;
  }
  
  .new-plan-comingsoon-wide {
    padding: 1.5rem;
  }
  
  .new-plan-comingsoon-title {
    font-size: 1.15rem;
  }
  
  .new-plan-comingsoon-text {
    font-size: 0.85rem;
  }
  
  .new-plan-success-fee {
    padding: 1.5rem;
  }
  
  .new-success-fee-title {
    font-size: 1.2rem;
  }
}

/* ==============================================
   Blog CTA Section - Relax Tone
   カフェの黒板風・深呼吸できる余白・話してOKトーン
   ============================================== */

.section-relax {
  background: #FBF8F2; /* 薄いクリーム系 */
  padding: 4rem 0; /* 64px 上下余白を少し詰める */
  margin-top: 3.5rem; /* 本文との区切り */
}

.relax-card {
  background: #FFFFFF; /* 真っ白 */
  border-radius: 30px; /* 大きめの角丸 */
  max-width: 680px; /* 820px→680pxに狭める */
  margin: 0 auto;
  padding: 3rem 4rem; /* 48px 64px - 余白を詰める */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04); /* 極薄シャドウ */
}

/* 見出し - ひと休みしていきませんか？ */
.relax-title {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif; /* システムフォントでより柔らかく */
  font-size: 1.75rem; /* 28px - 少し小さく */
  font-weight: 400; /* 500→400でもっと柔らかく */
  line-height: 1.5;
  text-align: center;
  color: #3a3a3a; /* もう少し柔らかいグレー */
  margin-bottom: 1.5rem; /* 24px */
  letter-spacing: 0.02em; /* 字間を詰める */
}

/* 本文テキスト - 箇条書き風 */
.relax-text {
  font-size: 0.95rem; /* 15.2px - 少し小さく */
  line-height: 1.65; /* 1.8→1.65に狭める */
  text-align: center;
  color: #555555; /* より読みやすいグレー */
  margin-bottom: 2.25rem; /* 36px */
  font-weight: 400;
}

.relax-text p {
  margin-bottom: 0.35rem; /* 行間を詰める */
}

/* ボタンコンテナ */
.relax-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem; /* 16px - ギャップを詰める */
  align-items: stretch; /* 高さを揃える */
}

/* ボタン共通スタイル - pill型 */
.btn-relax-main,
.btn-relax-line {
  border-radius: 40px; /* pill型 */
  padding: 0.875rem 1.75rem; /* 14px 28px - パディング調整 */
  font-size: 0.9rem; /* 14.4px - 少し小さく */
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 左ボタン - ちょっと聞いてほしい（無料） */
.btn-relax-main {
  background: #C9B898;
  color: #FFFFFF;
  border: none;
}

.btn-relax-main:hover {
  background: #b8a687; /* わずかに濃く */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 184, 152, 0.25);
}

/* 右ボタン - LINEで相談してみる */
.btn-relax-line {
  background: transparent;
  border: 2px solid #C9B898;
  color: #C9B898;
}

.btn-relax-line:hover {
  background: #C9B898;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 184, 152, 0.25);
}

/* レスポンシブ: スマホでは縦並び */
@media (max-width: 640px) {
  .section-relax {
    padding: 3rem 0; /* スマホは少し詰める */
    margin-top: 2.5rem;
  }
  
  .relax-card {
    padding: 2.25rem 1.5rem; /* 36px 24px */
    border-radius: 24px; /* 角丸を少し小さく */
    max-width: 100%; /* スマホでは幅いっぱい */
  }
  
  .relax-title {
    font-size: 1.4rem; /* 22.4px */
    margin-bottom: 1.25rem;
  }
  
  .relax-text {
    font-size: 0.9rem; /* 14.4px */
    margin-bottom: 1.75rem;
    line-height: 1.6;
  }
  
  .relax-buttons {
    flex-direction: column; /* 縦並び */
    gap: 1rem; /* 16px 上下ギャップ */
    width: 100%;
  }
  
  .btn-relax-main,
  .btn-relax-line {
    width: 100%;
    font-size: 0.875rem; /* 14px */
  }
}

/* タブレット用の中間サイズ */
@media (min-width: 641px) and (max-width: 1024px) {
  .relax-card {
    padding: 2.5rem 3rem; /* 40px 48px */
    max-width: 600px;
  }
  
  .relax-title {
    font-size: 1.6rem; /* 25.6px */
  }
}



/* ==========================================
   MOBILE MENU - MINIMAL VERSION
   ========================================== */

/* Overlay - 背景の半透明カバー */
#mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9998;
  display: none;
}

#mobile-menu-overlay.show {
  display: block;
}

/* Menu - 右からスライドするドロワー */
#mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  /* ステータスバー対策：確実に白背景 */
  background: #ffffff;
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 24px;
  box-sizing: border-box;
}

#mobile-menu.show {
  right: 0;
}

/* Header - MENUタイトルと閉じるボタン */
#mobile-menu .menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

#mobile-menu .menu-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #333;
}

#mobile-menu .close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* Navigation - メニュー項目リスト */
#mobile-menu .menu-nav {
  margin-bottom: 24px;
}

#mobile-menu .menu-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  text-decoration: none;
  font-size: 15px;
}

#mobile-menu .menu-nav a:hover {
  color: #C9B898;
}

#mobile-menu .menu-nav a i {
  font-size: 12px;
  color: #C9B898;
}

/* Footer - LINEボタン */
#mobile-menu .menu-footer {
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

#mobile-menu .menu-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid #C9B898;
  border-radius: 32px;
  color: #C9B898;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

#mobile-menu .menu-footer a:hover {
  background-color: #C9B898;
  color: #fff;
}

#mobile-menu .menu-footer a i {
  margin-right: 8px;
  font-size: 16px;
}

/* Body scroll lock */
body.menu-open {
  overflow: hidden;
  /* ステータスバーを白のまま維持 */
  background-color: #ffffff;
}

/* PC表示では非表示 */
@media (min-width: 768px) {
  #mobile-menu-overlay,
  #mobile-menu {
    display: none !important;
  }
}


/* Override Tailwind's hidden class for menu */
#mobile-menu.hidden {
  display: block !important;
}

#mobile-menu-overlay.hidden {
  display: none !important;
}

/* ==========================================
   ABOUT PAGE - ENHANCED MOBILE OPTIMIZATION
   ========================================== */

/* Small mobile devices (375px and below) */
@media (max-width: 375px) {
  /* Hero Section */
  .about-hero-section {
    min-height: 240px;
    padding: 4rem 0;
  }
  
  .about-hero-content {
    padding: 2.5rem 1rem;
  }
  
  .about-hero-english {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
  }
  
  .about-hero-title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  
  /* Counselor Section */
  .counselor-message-section {
    padding: 3rem 0;
  }
  
  .counselor-message-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .message-section-title {
    font-size: 1.5rem;
  }
  
  .counselor-photo-frame {
    max-width: 200px !important;
    margin: 0 auto !important;
  }
  
  .counselor-photo {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
  }
  
  .counselor-name {
    font-size: 1.25rem;
  }
  
  .name-reading {
    font-size: 0.7rem;
  }
  
  .counselor-message {
    font-size: 0.875rem;
    line-height: 1.75;
  }
  
  .counselor-card-first {
    margin-bottom: 4rem !important;
  }
  
  /* Philosophy Section */
  .philosophy-section {
    padding: 3rem 0;
  }
  
  .philosophy-container {
    padding: 0 1rem;
  }
  
  .philosophy-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .philosophy-message {
    font-size: 0.875rem;
  }
  
  .philosophy-photo-frame {
    max-width: 100% !important;
  }
  
  /* Business Info Section */
  .business-info-section {
    padding: 3rem 0;
  }
  
  .business-info-container {
    padding: 0 1rem;
  }
  
  .business-info-title {
    font-size: 1.5rem;
  }
  
  .business-info-label {
    font-size: 0.8rem;
  }
  
  .business-info-label i {
    font-size: 0.875rem;
  }
  
  .business-info-content {
    font-size: 0.875rem;
  }
  
  .business-info-note {
    font-size: 0.75rem;
  }
}

/* Medium mobile devices (376px - 640px) */
@media (min-width: 376px) and (max-width: 640px) {
  .counselor-photo-frame {
    max-width: 220px !important;
  }
  
  .philosophy-photo-frame {
    max-width: 400px !important;
  }
}

/* Ensure proper spacing on all mobile devices */
@media (max-width: 768px) {
  /* Add breathing room for all sections */
  .counselor-message-section,
  .philosophy-section,
  .business-info-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  
  /* Ensure text is readable */
  .counselor-message p,
  .philosophy-message p,
  .business-info-content {
    text-align: left;
  }
  
  /* Prevent horizontal overflow */
  .counselor-card-wrapper,
  .philosophy-container,
  .business-info-container {
    overflow-x: hidden;
  }
}


/* ==========================================
   SERVICE PAGE - ENHANCED MOBILE OPTIMIZATION
   ========================================== */

/* All mobile devices (768px and below) */
@media (max-width: 768px) {
  /* Hero Section */
  .service-hero-section {
    min-height: 50vh !important;
  }
  
  .service-hero-english {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
  }
  
  .service-hero-title {
    font-size: 1.875rem;
    letter-spacing: 0.08em;
  }
  
  /* Plans Section */
  .plans-section {
    padding: 3.5rem 0;
  }
  
  .plans-container {
    padding: 0 1rem;
  }
  
  .plans-title {
    font-size: 1.75rem;
  }
  
  .plans-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  
  /* Main Plan Grid - Stack vertically on mobile */
  .plans-main-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 0 0.5rem;
  }
  
  .plans-sub-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 0 0.5rem;
  }
  
  /* Plan Cards */
  .new-plan-card {
    padding: 1.75rem 1.25rem !important;
  }
  
  .new-plan-name {
    font-size: 1.5rem !important;
    margin-top: 1.5rem !important;
  }
  
  /* スタンダード（おすすめバッジあり）はさらに下に */
  .new-plan-featured .new-plan-name {
    margin-top: 2.5rem !important;
  }
  
  /* プレミアムもさらに下に */
  .new-plan-card:nth-child(3) .new-plan-name {
    margin-top: 2.5rem !important;
  }
  
  .new-price-amount {
    font-size: 2rem !important;
  }
  
  .new-price-period {
    font-size: 0.875rem !important;
  }
  
  .new-plan-description {
    font-size: 0.9rem !important;
  }
  
  .new-plan-content {
    font-size: 0.85rem !important;
    line-height: 1.75 !important;
  }
  
  /* Success Fee Section */
  .new-success-fee-title {
    font-size: 1.125rem !important;
  }
  
  .new-success-fee-text {
    font-size: 0.875rem !important;
  }
}

/* Small mobile devices (375px and below) */
@media (max-width: 375px) {
  .service-hero-section {
    min-height: 40vh !important;
    padding: 3rem 0 !important;
  }
  
  .service-hero-english {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
  }
  
  .service-hero-title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    padding-bottom: 0.75rem;
  }
  
  /* Plans Section - Extra compact */
  .plans-section {
    padding: 2.5rem 0;
  }
  
  .plans-title {
    font-size: 1.5rem;
  }
  
  .plans-subtitle {
    font-size: 0.85rem;
  }
  
  .plans-main-grid,
  .plans-sub-grid {
    gap: 1.5rem !important;
  }
  
  .new-plan-card {
    padding: 1.5rem 1rem !important;
  }
  
  .new-plan-tag {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.75rem !important;
  }
  
  .new-plan-name {
    font-size: 1.35rem !important;
    margin-top: 1.5rem !important;
  }
  
  /* スタンダード（おすすめバッジあり）はさらに下に */
  .new-plan-featured .new-plan-name {
    margin-top: 2.5rem !important;
  }
  
  /* プレミアムもさらに下に */
  .new-plan-card:nth-child(3) .new-plan-name {
    margin-top: 2.5rem !important;
  }
  
  .new-price-amount {
    font-size: 1.75rem !important;
  }
  
  .new-price-unit {
    font-size: 0.875rem !important;
  }
  
  .new-price-period {
    font-size: 0.75rem !important;
  }
  
  .new-plan-description {
    font-size: 0.85rem !important;
  }
  
  .new-plan-content {
    font-size: 0.8rem !important;
  }
  
  .new-plan-content-title {
    font-size: 0.875rem !important;
  }
  
  /* Success Fee - Compact */
  .new-success-fee-prices {
    gap: 1rem !important;
  }
  
  .new-success-fee-title {
    font-size: 1rem !important;
  }
  
  .new-success-fee-text {
    font-size: 0.8rem !important;
    line-height: 1.65 !important;
  }
  
  .new-success-fee-badge {
    font-size: 0.7rem !important;
  }
  
  /* Coming Soon Section */
  .new-plan-comingsoon-title {
    font-size: 1.125rem !important;
  }
  
  .new-plan-comingsoon-price {
    font-size: 0.85rem !important;
  }
}

/* Ensure cards don't overflow on very small screens */
@media (max-width: 320px) {
  .plans-container {
    padding: 0 0.75rem;
  }
  
  .new-plan-card {
    padding: 1.25rem 0.875rem !important;
  }
  
  .new-plan-name {
    font-size: 1.25rem !important;
    margin-top: 1.5rem !important;
  }
  
  /* スタンダード（おすすめバッジあり）はさらに下に */
  .new-plan-featured .new-plan-name {
    margin-top: 2.5rem !important;
  }
  
  /* プレミアムもさらに下に */
  .new-plan-card:nth-child(3) .new-plan-name {
    margin-top: 2.5rem !important;
  }
  
  .new-price-amount {
    font-size: 1.5rem !important;
  }
}


/* ==========================================
   FLOW PAGE - ENHANCED MOBILE OPTIMIZATION
   ========================================== */

@media (max-width: 768px) {
  .flow-hero-section {
    min-height: 50vh !important;
  }
  
  .flow-hero-title {
    font-size: 1.875rem !important;
  }
  
  .flow-steps-section {
    padding: 3.5rem 0 !important;
  }
  
  .flow-step-card {
    padding: 1.75rem 1.25rem !important;
  }
  
  .flow-step-number {
    font-size: 1.875rem !important;
  }
  
  .flow-step-title {
    font-size: 1.25rem !important;
  }
  
  .flow-step-description {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 375px) {
  .flow-hero-title {
    font-size: 1.5rem !important;
  }
  
  .flow-steps-section {
    padding: 2.5rem 0 !important;
  }
  
  .flow-step-card {
    padding: 1.5rem 1rem !important;
  }
  
  .flow-step-number {
    font-size: 1.5rem !important;
  }
  
  .flow-step-title {
    font-size: 1.125rem !important;
  }
  
  .flow-step-description {
    font-size: 0.85rem !important;
  }
}

/* ==========================================
   BLOG PAGE - ENHANCED MOBILE OPTIMIZATION
   ========================================== */

@media (max-width: 768px) {
  .blog-hero-section {
    min-height: 50vh !important;
  }
  
  .blog-hero-title {
    font-size: 1.875rem !important;
  }
  
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .blog-card {
    padding: 1.25rem !important;
  }
  
  .blog-card-title {
    font-size: 1.125rem !important;
  }
  
  .blog-card-excerpt {
    font-size: 0.875rem !important;
  }
}

@media (max-width: 375px) {
  .blog-hero-title {
    font-size: 1.5rem !important;
  }
  
  .blog-card {
    padding: 1rem !important;
  }
  
  .blog-card-title {
    font-size: 1rem !important;
  }
  
  .blog-card-excerpt {
    font-size: 0.8rem !important;
  }
}

/* ==========================================
   FAQ PAGE - ENHANCED MOBILE OPTIMIZATION
   ========================================== */

@media (max-width: 768px) {
  .faq-hero-section {
    min-height: 50vh !important;
  }
  
  .faq-hero-title {
    font-size: 1.875rem !important;
  }
  
  .faq-section {
    padding: 3.5rem 0 !important;
  }
  
  .faq-container {
    padding: 0 1rem !important;
  }
  
  .faq-category-title {
    font-size: 1.375rem !important;
  }
  
  .faq-item {
    padding: 1.25rem !important;
  }
  
  .faq-question {
    font-size: 0.9375rem !important;
    padding-right: 2rem !important;
  }
  
  .faq-answer {
    font-size: 0.875rem !important;
    padding: 1rem 0.5rem !important;
  }
}

@media (max-width: 375px) {
  .faq-hero-title {
    font-size: 1.5rem !important;
  }
  
  .faq-section {
    padding: 2.5rem 0 !important;
  }
  
  .faq-category-title {
    font-size: 1.25rem !important;
  }
  
  .faq-question {
    font-size: 0.875rem !important;
  }
  
  .faq-answer {
    font-size: 0.8rem !important;
  }
}

/* ==========================================
   CONTACT PAGE - ENHANCED MOBILE OPTIMIZATION
   ========================================== */

@media (max-width: 768px) {
  .contact-hero-section {
    min-height: 50vh !important;
  }
  
  .contact-hero-title {
    font-size: 1.875rem !important;
  }
  
  .contact-form-section {
    padding: 3.5rem 0 !important;
  }
  
  .contact-form-container {
    padding: 0 1rem !important;
  }
  
  .contact-form-group label {
    font-size: 0.9rem !important;
  }
  
  .contact-form-input,
  .contact-form-textarea,
  .contact-form-select {
    font-size: 1rem !important;
    padding: 0.75rem !important;
  }
  
  .contact-form-submit {
    font-size: 1rem !important;
    padding: 0.875rem 2rem !important;
  }
  
  .contact-info-section {
    padding: 2.5rem 1rem !important;
  }
  
  .contact-info-item {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 375px) {
  .contact-hero-title {
    font-size: 1.5rem !important;
  }
  
  .contact-form-section {
    padding: 2.5rem 0 !important;
  }
  
  .contact-form-group label {
    font-size: 0.875rem !important;
  }
  
  .contact-form-input,
  .contact-form-textarea,
  .contact-form-select {
    font-size: 0.9375rem !important;
    padding: 0.625rem !important;
  }
  
  .contact-form-submit {
    font-size: 0.9375rem !important;
    padding: 0.75rem 1.5rem !important;
  }
  
  .contact-info-item {
    font-size: 0.85rem !important;
  }
}

/* ==========================================
   GLOBAL MOBILE FIXES FOR ALL PAGES
   ========================================== */

@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Ensure all sections have proper padding */
  section {
    overflow-x: hidden;
  }
  
  /* Container fixes */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Hero sections consistent height */
  [class*="-hero-section"] {
    padding: 4rem 0 3rem 0;
  }
  
  /* Section titles */
  [class*="-title"] {
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  
  /* Buttons */
  button,
  .btn,
  [class*="-button"],
  [class*="-btn"] {
    font-size: 0.9375rem !important;
    padding: 0.75rem 1.5rem !important;
  }
}

@media (max-width: 375px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  [class*="-hero-section"] {
    padding: 3rem 0 2.5rem 0;
  }
}

/* =========================
   Footer Mobile Adjustments
   ========================= */

/* Hide footer navigation separators on mobile */
@media (max-width: 768px) {
  .footer-nav-sep {
    display: none !important;
  }
}

/* =========================
   MOBILE HEADER - Always Sticky
   ========================= */

@media (max-width: 768px) {
  /* ヘッダーをスマホで固定表示（さらに透明に） */
  header {
    position: fixed !important;
    top: 0 !important;
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
  }
  
  /* ヘッダーの高さを少し狭く */
  header .container > div {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }
  
  /* ロゴをもう少し大きく & もっと左に寄せる */
  header img[alt*="MATCH"] {
    height: 90px !important;
  }
  
  header .container > div > div:first-child {
    margin-left: -1rem !important;
  }
  
  /* ハンバーガーメニューをさらに大きく */
  #mobile-menu-toggle {
    font-size: 2.25rem !important;
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* ヘッダーの高さ分、bodyに余白を追加 */
  body {
    padding-top: 85px !important;
  }
}

/* =========================
   HOME PAGE - Mobile Adjustments
   ========================= */

@media (max-width: 768px) {
  /* Hero section - 左右中央配置 */
  /* ヒーローコンテンツセット全体を左右中央に配置 */
  .hero-content-wrapper {
    padding-top: 28vh !important;
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    text-align: center !important;
  }
  
  /* メインコピーを中央揃え */
  .hero-main-copy {
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-size: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  
  /* ブランド名を中央揃え */
  .hero-brand-name {
    text-align: center !important;
    font-size: 2.125rem !important;
    margin-bottom: 3.5rem !important;
  }
  
  /* CTAボタンを中央揃え */
  .hero-cta-button {
    font-size: 0.9375rem !important;
    padding: 0.8rem 2.5rem !important;
    display: inline-block !important;
  }
  
  /* Story section title - add line break and center */
  .story-section-title {
    text-align: center !important;
  }
  
  .story-section-title::before {
    content: "親子で支える\A温かい結婚相談所";
    white-space: pre-line;
    display: block;
  }
  
  /* Hide original text (use ::before instead) */
  .story-section-title {
    font-size: 0;
  }
  
  .story-section-title::before {
    font-size: 1.875rem;
    line-height: 1.4;
  }
  
  /* Reasons section title - add line break and center */
  .reasons-section-title {
    text-align: center !important;
  }
  
  .reasons-section-title::before {
    content: "MATCHが選ばれる\A３つの理由";
    white-space: pre-line;
    display: block;
  }
  
  .reasons-section-title {
    font-size: 0;
  }
  
  .reasons-section-title::before {
    font-size: 1.875rem;
    line-height: 1.4;
  }
  
  /* About Us vertical title - smaller and subtle */
  .about-us-vertical-title {
    font-size: 1rem !important;
    opacity: 0.85 !important;
    letter-spacing: 0.15em !important;
  }
}

@media (max-width: 375px) {
  .story-section-title::before {
    font-size: 1.625rem !important;
  }
  
  .reasons-section-title::before {
    font-size: 1.625rem !important;
  }
  
  .about-us-vertical-title {
    font-size: 0.9rem !important;
  }
}

/* =========================
   和 × やわらかさ × 誠実 - 控えめなアニメーション
   ========================= */

/* スクロールアニメーション（統一スタイル） */
.fade-slide-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

/* =========================
   ① ヒーローエリア（TOP）
   ========================= */

/* 背景写真：フェード＋わずかなズームアウト */
.hero-zoom {
  animation: heroZoom 1.2s ease-out forwards;
}

@keyframes heroZoom {
  from { 
    opacity: 0; 
    transform: scale(1.03); 
  }
  to { 
    opacity: 1; 
    transform: scale(1); 
  }
}

/* キャッチコピー：fade-slide-up適用済み */
/* CTAボタン：遅延表示 */
.hero-cta-delayed {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeSlideUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s forwards;
}

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

/* 花びら1枚の控えめな落下アニメーション */
.sakura-petal {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0;
  pointer-events: none;
  animation: petalFall 15s ease-in-out infinite;
}

@keyframes petalFall {
  0% {
    top: -5%;
    left: 70%;
    opacity: 0;
    transform: rotate(0deg) translateX(0);
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    top: 105%;
    left: 65%;
    opacity: 0;
    transform: rotate(180deg) translateX(50px);
  }
}

/* =========================
   ② 理由・特徴カード
   ========================= */

/* カードごとに0.08秒ずつ遅延 */
.reasons-card:nth-child(1),
.feature-card:nth-child(1) {
  transition-delay: 0s;
}

.reasons-card:nth-child(2),
.feature-card:nth-child(2) {
  transition-delay: 0.08s;
}

.reasons-card:nth-child(3),
.feature-card:nth-child(3) {
  transition-delay: 0.16s;
}

/* カードホバー効果 */
.reasons-card, .feature-card, .service-card, 
.plan-card, .reason-card, .blog-card, 
.new-plan-card, .faq-item, .counselor-card {
  transition: transform 0.4s ease-out,
              box-shadow 0.4s ease-out;
}

.reasons-card:hover, .feature-card:hover,
.service-card:hover, .plan-card:hover, .reason-card:hover, 
.blog-card:hover, .new-plan-card:hover, .counselor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.faq-item:hover {
  transform: translateX(2px);
}

/* =========================
   ③ 数字で見るコンテンツ（IBJデータ）
   ========================= */

/* 数字カウントアップ用 */
.count-up-number {
  display: inline-block;
}

.ibj-stats-card {
  transition: transform 0.4s ease-out,
              box-shadow 0.4s ease-out;
}

.ibj-stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

/* =========================
   ④ 料金プラン（3プラン）
   ========================= */

/* 登場順：中央 → 左 → 右 */
.new-plan-card:nth-child(1) {
  transition-delay: 0.08s;
}

.new-plan-card:nth-child(2) {
  transition-delay: 0s; /* 中央が最初 */
}

.new-plan-card:nth-child(3) {
  transition-delay: 0.16s;
}

/* おすすめプラン（中央）のホバーを強める */
.new-plan-featured:hover,
.plan-featured:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

/* =========================
   ⑤ CTA「ひと休みしていきませんか？」
   ========================= */

.cta-btn, .hero-cta-button, .story-cta-button, 
.news-cta-button, .ibj-cta-button {
  transition: transform 0.3s ease-out,
              box-shadow 0.3s ease-out;
}

.cta-btn:hover, .hero-cta-button:hover, 
.story-cta-button:hover, .news-cta-button:hover, 
.ibj-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* =========================
   ⑥ ハンバーガーメニュー（スライドドロワー）
   ========================= */

/* 開閉：右→左のスライドイン */
.drawer-menu, #mobile-menu {
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.drawer-menu.open, #mobile-menu.show {
  transform: translateX(0);
}

.drawer-overlay, #mobile-menu-overlay {
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}

.drawer-overlay.active, #mobile-menu-overlay.show {
  opacity: 0.45;
  pointer-events: all;
}

/* メニュー項目の順次フェードイン */
#mobile-menu nav a:nth-child(1) {
  animation: menuItemFadeIn 0.3s ease-out 0.05s backwards;
}

#mobile-menu nav a:nth-child(2) {
  animation: menuItemFadeIn 0.3s ease-out 0.10s backwards;
}

#mobile-menu nav a:nth-child(3) {
  animation: menuItemFadeIn 0.3s ease-out 0.15s backwards;
}

#mobile-menu nav a:nth-child(4) {
  animation: menuItemFadeIn 0.3s ease-out 0.20s backwards;
}

#mobile-menu nav a:nth-child(5) {
  animation: menuItemFadeIn 0.3s ease-out 0.25s backwards;
}

#mobile-menu nav a:nth-child(6) {
  animation: menuItemFadeIn 0.3s ease-out 0.30s backwards;
}

#mobile-menu nav a:nth-child(7) {
  animation: menuItemFadeIn 0.3s ease-out 0.35s backwards;
}

#mobile-menu nav a:nth-child(8) {
  animation: menuItemFadeIn 0.3s ease-out 0.40s backwards;
}

@keyframes menuItemFadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* メニューが閉じている時はアニメーションをリセット */
#mobile-menu:not(.show) nav a {
  animation: none;
}

/* =========================
   その他のホバー効果
   ========================= */

/* 一般的なボタン・リンク */
a, button, .btn {
  transition: all 0.3s ease-out;
}

a:hover, button:hover {
  opacity: 0.8;
}

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

/* 画像の控えめな効果 */
.counselor-photo, .blog-image {
  transition: transform 0.5s ease-out;
}

.counselor-photo:hover, .blog-image:hover {
  transform: scale(1.02);
}

/* フォーム - 控えめなフォーカス */
input, textarea, select {
  transition: border-color 0.3s ease-out,
              box-shadow 0.3s ease-out;
}

input:focus, textarea:focus, select:focus {
  box-shadow: 0 2px 8px rgba(107, 114, 128, 0.06);
}

/* ナビゲーション - 下線効果 */
nav a {
  position: relative;
  transition: color 0.3s ease-out;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

nav a:hover::after {
  width: 100%;
}

/* モバイルメニュー */
#mobile-menu {
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
              opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

#mobile-menu-overlay {
  transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ヘッダー */
header {
  transition: background 0.3s ease-out,
              box-shadow 0.3s ease-out,
              backdrop-filter 0.3s ease-out;
}

/* スムーススクロール */
html {
  scroll-behavior: smooth;
}

/* アクセシビリティ: モーション削減 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .fade-slide-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================
   モバイル専用アニメーション強化
   ========================= */

@media (max-width: 768px) {
  /* モバイルでもスクロールアニメーションを確実に動作させる */
  .fade-slide-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  
  .fade-slide-up.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ヒーローエリアのアニメーション */
  .hero-zoom {
    animation: heroZoom 1.2s ease-out forwards;
  }
  
  .hero-cta-delayed {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeSlideUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s forwards;
  }
  
  /* 花びらアニメーション（モバイルでも表示） */
  .sakura-petal {
    display: block;
    opacity: 0;
    animation: petalFall 15s ease-in-out infinite;
  }
  
  /* カードのホバー効果をタップに対応 */
  .reasons-card:active, .feature-card:active,
  .service-card:active, .plan-card:active, 
  .new-plan-card:active, .counselor-card:active,
  .ibj-stats-card:active {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  }
  
  /* おすすめプランのタップ効果 */
  .new-plan-featured:active,
  .plan-featured:active {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
  }
  
  /* CTAボタンのタップ効果 */
  .cta-btn:active, .hero-cta-button:active, 
  .story-cta-button:active, .news-cta-button:active, 
  .ibj-cta-button:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }
  
  /* FAQアイテムのタップ効果 */
  .faq-item:active {
    transform: translateX(2px);
  }
  
  /* カード遅延アニメーション（モバイル） */
  .reasons-card:nth-child(1),
  .feature-card:nth-child(1),
  .ibj-stats-card:nth-child(1) {
    transition-delay: 0s;
  }
  
  .reasons-card:nth-child(2),
  .feature-card:nth-child(2),
  .ibj-stats-card:nth-child(2) {
    transition-delay: 0.08s;
  }
  
  .reasons-card:nth-child(3),
  .feature-card:nth-child(3),
  .ibj-stats-card:nth-child(3) {
    transition-delay: 0.16s;
  }
  
  /* 料金プランの登場順（モバイル） */
  .new-plan-card:nth-child(1) {
    transition-delay: 0.08s;
  }
  
  .new-plan-card:nth-child(2) {
    transition-delay: 0s; /* 中央が最初 */
  }
  
  .new-plan-card:nth-child(3) {
    transition-delay: 0.16s;
  }
  
  /* スムーズなスクロール体験 */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  /* タッチデバイス用のホバー効果削除（誤作動防止） */
  @media (hover: none) {
    .reasons-card:hover, .feature-card:hover,
    .service-card:hover, .plan-card:hover, 
    .new-plan-card:hover, .counselor-card:hover,
    .ibj-stats-card:hover {
      transform: none;
      box-shadow: none;
    }
    
    /* activeのみ有効 */
    .reasons-card:active, .feature-card:active,
    .service-card:active, .plan-card:active, 
    .new-plan-card:active, .counselor-card:active,
    .ibj-stats-card:active {
      transform: translateY(-4px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    }
  }
}

