/*
Theme Name: Daruma Taxi Blog Child
Theme URI: https://darumataxi.com/blog/
Description: だるまタクシー公式サイトと同一の見た目で /blog/ を表示する、TT25(Twenty Twenty-Five)ブロックテーマの子テーマ。ヘッダ・フッター・CSSはサイト本体と共有し、投稿一覧/単一記事のみブログとして機能する。
Author: 株式会社ななはち
Template: twentytwentyfive
Version: 1.0.0
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: daruma-taxi-blog
*/

/* ============================================================
   実際の見た目は functions.php が読み込む
     assets/css/daruma-shared.css（ヘッダ/ドロワー/サブHERO/フッター/SP CTA）
     assets/css/daruma-blog.css  （本文カード一覧・単一記事プロース）
   に集約している。ここは子テーマの最終上書き用の薄い層。
   ============================================================ */

/* TT25 のルートに紙地背景が透けないよう、ページ全体の地色をサイト本体に合わせる */
body{
  margin: 0;
  background: #0e0f12; /* --char3 */
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

/* TT25 が挿入する既定の上下余白・max-width を /blog/ では殺し、
   .dz 側のフルブリード・レイアウトを優先する */
.wp-site-blocks{ padding: 0 !important; }
.wp-site-blocks > .dz,
.wp-site-blocks > * > .dz{ margin: 0; }
