/*
 * ソバエル様提供 CSS のリセット部分を分離したファイル。
 * Gutenberg エディタ iframe には流入させない（add_editor_style 対象外）。
 * フロントでは style.css より先に enqueue する（順序: reset → main）。
 * 内容は src_html/css/style.css の「リセットCSS」セクションをそのまま転記。
 */

/* -----リセットCSS----- */
*{margin:0;padding:0;min-height: 0;min-width: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
html {height:100%;scroll-behavior: smooth;}
ul li ,ol li{list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight: var(--fw-base);font-size: 100%;margin: 0;}
p{margin: 0;}
strong{font-weight: inherit;}
a:focus, *:focus{ outline:none; }
article, header, footer, aside, figure, figcaption, nav, section,main{
  display:block;
}
.imgauto{
	height: auto;
	width: 100%;
	box-sizing: unset;
	line-height: 1rem;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
