/* 投稿ページ・投稿一覧以外でリセットCSS＆擬似要素リセット */
h1,
h2,
h3,
h4,
h5,
p,
a {
  margin: 0;
  padding: 0;
  color: #333;
  text-decoration: none;
}

/* 擬似要素リセット */
h1::before,
h1::after,
h2::before,
h2::after,
h3::before,
h3::after,
h4::before,
h4::after,
h5::before,
h5::after,
p::before,
p::after,
a::before,
a::after {
  content: none;
  display: none;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

/*　投稿一覧のパンくずリスト非表示　*/
body:not(.single) .breadcrumb {
	display: none;
}

/*  基本設定始め  */

/*  固定ページの上下の余白のみ消す（商品ページや投稿ページの余白は残す）  */
body.page:not(.woocommerce-cart) .site-body {
	padding: 0;
}

body, html {
	font-family: "hiragino-kaku-gothic-pron","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Noto Sans JP", "Lato", "メイリオ", Meiryo, "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
}

