/*
Theme Name: 狛江フェスティバル2026
Theme URI: https://komae-fes.example.jp/
Author: 狛江フェスティバル制作チーム
Description: 狛江フェスティバル2026 公式サイト用オリジナルテーマ（Figma準拠・ピクセルパーフェクト）。
Version: 0.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: komafes
*/

/* =========================================================
   Design Tokens（Figma変数より）
   ========================================================= */
:root {
  /* Colors */
  --c-white: #ffffff;
  --c-black: #000000;
  --c-main: #ffcd00;        /* メインの黄 */
  --c-yellow-light: #ffee9c; /* 薄い黄色 */
  --c-gray-bg: #f2f2f2;      /* 薄いグレー背景（hover等）※実装時に実値へ調整 */

  /* Typography（実装時にFigmaの実値で確定） */
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --lh-body: 1.75;   /* 本文 */
  --lh-head: 1.5;    /* 見出し・リード */

  /* Layout */
  --w-pc: 1280px;    /* PCベース幅 */
  --w-sp: 375px;     /* SPベース幅 */
  --bp-sp: 768px;    /* ブレークポイント（SP切替） */
}

/* =========================================================
   Minimal reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-base);
  line-height: var(--lh-body);
  color: var(--c-black);
  background: var(--c-white);
}
img, svg { max-width: 100%; height: auto; vertical-align: middle; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; cursor: pointer; }

/* セクション別CSSは assets/css/ に分割し functions.php で読み込む */
