/* ===== Minimal Reset (modern) ===== */

/* box-sizingを全体に */
*,
*::before,
*::after {
  margin: 0; padding: 0; 
  box-sizing: border-box;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #1a1a1a;
  background: #f0f4f0;
  line-height: 1.7;
  /* max-width: 480px; */
  margin: 0 auto !important; 
  /* overflow-x: hidden; */
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }



/* 余白の初期化 */
body, h1, h2, h3, h4, h5, h6, p,
ul, ol, li, dl, dt, dd,
figure, figcaption,
blockquote {
  margin: 0;
  padding: 0;
}


/* 画像ははみ出し防止＆下の謎の隙間対策 */
picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォーム系：フォント統一 */
input, button, textarea, select {
  font: inherit;
}

/* リストの黒丸・番号を消したいサイト用（必要なら） */
ul, ol {
  list-style: none;
}
