/*
Theme Name: My Template
Theme URI: https://example.com/mytemplate
Author: Your Name
Author URI: https://example.com
Description: 自作ブログ用のスターターテーマ。
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mytemplate
Tags: blog, custom-menu, featured-images, threaded-comments
*/

/*
 * このファイルは WordPress がテーマを認識するために必須です。
 * 実際のスタイルは sass/ で書き、css/ にコンパイルして読み込む想定なので、
 * ここには最低限のリセットと基本設定だけ置いています。
 * （上のコメントヘッダーは絶対に消さないでください）
 */

:root {
  --color-text: #222;
  --color-bg: #fff;
  --color-accent: #2b6cb0;
  --color-muted: #666;
  --color-border: #e2e2e2;
  --max-width: 720px;
  --font-body: "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-body);
  line-height: 1.8;
}

a { color: var(--color-accent); }

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