/* カラーテーマ変数 */
:root {
  /* ライトモード（デフォルト）のカラー */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --border-color: #dee2e6;
  --card-bg: #ffffff;
  --card-header-bg: rgba(248, 249, 250, 0.7);
  --accent-blue: #3498db;
  --accent-red: #e74c3c;
  --accent-green: #2ecc71;
  --accent-yellow: #f1c40f;
}

/* ダークモード変数 */
[data-theme="dark"] {
  --bg-primary: #121212;
  --bg-secondary: #1e1e1e;
  --text-primary: #f8f9fa;
  --text-secondary: #adb5bd;
  --border-color: #495057;
  --card-bg: #2d2d2d;
  --card-header-bg: #343a40;
  --accent-blue: #4a6bff;
  --accent-red: #ff5252;
  --accent-green: #00e676;
  --accent-yellow: #ffeb3b;
}

/* ベーススタイル */
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s, color 0.3s;
}

/* ユーザーのシステム設定を無視する */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    /* システム設定がダークモードでも、明示的にテーマが設定されていなければライトモードを維持 */
  }
}

/* リッチなカード表示 */
.card {
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

.card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-header {
  border-bottom: 1px solid var(--border-color);
  background-color: var(--card-header-bg);
}

/* キーポイント表示強化 */
.key-point {
  border-left: 3px solid var(--accent-blue);
  padding-left: 0.5rem;
}

.key-point h4 {
  color: var(--text-primary);
}

/* 箇条書きスタイル改善 */
.card-body ul {
  padding-left: 0;
}

.card-body ul li {
  margin-bottom: 0.5rem;
  list-style-type: none;
  position: relative;
}

.card-body ul li:before {
  content: '•';
  color: var(--accent-blue);
  font-weight: bold;
  display: inline-block;
  margin-right: 0.5rem;
}

/* テーマ切り替えボタン */
.theme-toggle {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.theme-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle i {
  font-size: 1.2rem;
  color: var(--text-primary);
}

/* 追加カラースタイル */
.bg-light-red {
  background-color: rgba(255, 99, 132, 0.1);
}

.bg-light-blue {
  background-color: rgba(54, 162, 235, 0.1);
}

.bg-light-yellow {
  background-color: rgba(255, 205, 86, 0.1);
}

.bg-light-green {
  background-color: rgba(75, 192, 192, 0.1);
}

/* ダークモード時の調整 */
[data-theme="dark"] .bg-light-red {
  background-color: rgba(255, 99, 132, 0.2);
}

[data-theme="dark"] .bg-light-blue {
  background-color: rgba(54, 162, 235, 0.2);
}

[data-theme="dark"] .bg-light-yellow {
  background-color: rgba(255, 205, 86, 0.2);
}

[data-theme="dark"] .bg-light-green {
  background-color: rgba(75, 192, 192, 0.2);
}

/* フレームワーク特有のスタイル */
/* 4アクションフレームワーク */
.four-actions .card {
  height: 100%;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.four-actions .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* 非顧客分析 */
.non-customers-analysis .card {
  border-left-width: 3px;
}

.non-customers-analysis .card:nth-child(1) {
  border-left-color: var(--accent-blue);
}

.non-customers-analysis .card:nth-child(2) {
  border-left-color: var(--accent-yellow);
}

.non-customers-analysis .card:nth-child(3) {
  border-left-color: var(--accent-red);
}

/* チャート関連のスタイル */
.chart-container {
  padding: 10px;
  border-radius: 8px;
  background-color: var(--card-bg);
}

/* 段落間の間隔調整 */
.card-text p {
  margin-bottom: 1rem;
}

.card-text p:last-child {
  margin-bottom: 0;
}

/* プレースホルダーアイコン大型化 */
.placeholder-icon i {
  opacity: 0.7;
}

/* レスポンシブ調整 */
@media (max-width: 767.98px) {
  .row.g-4 {
    --bs-gutter-y: 1rem;
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  .four-actions .card {
    margin-bottom: 0.5rem;
  }
}

/* アニメーション効果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.tab-pane.fade.show.active {
  animation: fadeInUp 0.5s ease;
}

/* タブの強調表示 */
.nav-tabs .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-tabs .nav-link:hover:not(.active) {
  color: var(--text-primary);
  border-bottom-color: var(--border-color);
}

.nav-tabs .nav-link.active {
  color: var(--accent-blue);
  border-bottom-color: var(--accent-blue);
}

/* ボタンの改善 */
.btn {
  border-radius: 6px;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  transition: all 0.2s ease;
}

/* テキスト書式の改善 */
.section-content {
  line-height: 1.7;
}

.section-content p {
  margin-bottom: 1rem;
}

.section-content ul, 
.section-content ol {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.section-content ul li, 
.section-content ol li {
  margin-bottom: 0.5rem;
}