/* -------------------------------------
   PreCog-8 専用薄水色テーマ
   base.cssの変数を上書きする形で適用
--------------------------------------*/

:root {

  /* **背景色（全体の雰囲気）** */
  --bg-body: #e8f4ff; /* 薄い水色 */

  /* **コンテンツカード背景** */
  --bg-panel: #ffffff;

  /* **アクセントカラー（見出し・強調用）** */
  --accent-orange: #1d7cc3; /* ブルー寄りアクセント */

  /* **サブアクセント：ふわっとした水色（区切り表現用）** */
  --accent-orange-light: #d4ecff;

  /* **ボタン色（青系）** */
  --btn-blue: #1d7cc3; /* メインボタン */
  --btn-green: #3aa86e; /* そのまま残し（他ページとの統一用） */

  /* **文字色** */
  --text-main: #103b56; /* 落ち着いた濃紺 */
  --text-muted: #5b7c93; /* 柔らかいグレー×青 */

  /* **枠線** */
  --border-light: #c7dff1;

  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.05);
}


/* -------------------------------------
   ページ固有の微調整（オプション）
--------------------------------------*/




/* ヘッダー背景少し淡く */
.site-header {
  background: transparent !important;
  backdrop-filter: none !important;
}



.section .main-title {
  text-align: center;
  margin-bottom: 12px; /* optional:見た目調整 */
}

/* PreCog-8 の説明画像レイアウト */
.overview-figure {
  text-align: center;
  margin-top: 14px;
}

.overview-figure img {
  max-width: 60%; /* スマホで見ても大きすぎないバランス */
  height: auto;
  display: inline-block;
}


/* 見出し強調 */
.section-title {
  color: var(--btn-blue);
}

/* 強調テキスト */
strong {
  color: var(--btn-blue);
}

/* PDFリンクのスタイル改善 */
.text-link {
  color: var(--btn-blue);
}
.text-link:hover {
  text-decoration: underline;
}

/* CTA（ダウンロード部分など）に淡い水色背景 */
.section.download,
.section.highlight {
  background: var(--accent-orange-light);
}

/* リスト（ul,ol）統一 */
.tool-card-list li {
  margin-bottom: 5px;
}

/* クリックできる画像のホバー演出 */
.clickable-image:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(29, 124, 195, 0.25);
}

.back-container {
  text-align: center;
  margin-top: 22px;   /* ボタンとの距離 */
  margin-bottom: 20px;
}

.back-button {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  color: #ffffff;
  background-color: var(--btn-blue);
  transition: 0.2s ease;
}

.back-button:hover {
  filter: brightness(1.05);
}


.contact-section {
  margin-top: 16px;
  text-align: left;
  background: var(--bg-panel);
}

/* フッターグレー調整 */
.site-footer {
  color: #5c6f7d;
}