@charset "UTF-8";
/*
Theme Name: Digicata
Theme URI: https://digicata-pub.jp/
Author: Digital Catapult Inc.
Author URI: https://digital-catapult.com/
Description: デジカタ編集部公式テーマ。漫画作品のIPファネル戦略に基づく自作テーマ。
Version: 0.12.5t
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: digicata
*/

/* ========================
   デザイントークン(白基調+ティール)
   ======================== */
:root {
  /* ブランドカラー */
  --brand: #00aebe;
  --brand-bright: #1cc4d4;
  --brand-dark: #008b99;
  --brand-pale: #e6f7f9;

  /* テキスト */
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #888;

  /* 背景 */
  --bg-base: #ffffff;
  --bg-soft: #f7f9fa;
  --bg-card: #ffffff;
  --bg-section: #fafbfc;

  /* ボーダー */
  --border-light: #e5e7e9;
  --border-mid: #cfd4d8;

  /* アクセント */
  --accent-warm: #ff6b35;   /* 無料配信・期間限定 */
  --accent-warm-dark: #d8542a;
  --line-green: #06C755;
}

/* リセット */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: var(--brand-dark);
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  line-height: 1.4;
  font-weight: 700;
}

/* STG用バナー(開発中表示) */
.dev-banner {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}
