/*
Theme Name: LP Demo Theme
Author: とーり ホームページ製作
Description: 営業用LPデモサイト専用テーマ。テーマCSSの干渉なし・ブロックエディター完全対応。
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: lp-demo-theme
*/

/* ========================================
   完全ブランクキャンバス化リセット
   WordPressがデフォルトで付けるパディング/マージンを除去
======================================== */
body {
  margin: 0;
  padding: 0;
}

/* 外側ラッパーのみリセット（.is-layout-flow は wp:column にも自動付与されるため含めない） */
.wp-site-blocks {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.entry-content,
.wp-block-post-content {
  padding: 0 !important;
  max-width: none !important;
}

/* セクション間のギャップのみゼロ（カード内部には適用しない） */
.wp-site-blocks > * + * {
  margin-top: 0 !important;
}

/* WordPress管理バー表示時のオフセット（ログイン中） */
.admin-bar .lp-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .lp-header {
    top: 46px;
  }
}

/* alignfull/alignwide サポート */
.alignfull  { width: 100%; max-width: 100%; }
.alignwide  { max-width: 1200px; margin-left: auto; margin-right: auto; }
