body {
  margin: 0;
  /* 変数は theme.json から自動生成されたものを使用 */
  color: var(--wp--preset--color--text);
  background-color: var(--wp--preset--color--white);
}

/* 画像のはみ出し防止 */
img {
  max-width: 100%;
  height: auto;
}

/* コンテンツ幅の制御（WordPressの整列クラスに対応） */
.alignwide {
  max-width: var(--wp--style--global--wide-size);
  margin-left: auto;
  margin-right: auto;
}
.alignfull {
  max-width: 100%;
}
