﻿/*
 * reset.css
 * Josh Comeau's Modern CSS Reset
 * 株式会社井清不動産 - iseifudousan-child テーマ用
 *
 * 参考 https://www.joshwcomeau.com/css/custom-css-reset/
 */

/* 1. box-sizingを全要素に適用 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. デフォルトのmarginを削除 */
* {
  margin: 0;
}

/* 3. bodyの高さを確保し、テキストレンダリングを改善 */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* 日本語ゴシックを基本フォントに（未指定だと iOS で明朝になるため） */
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "YuGothic", "BIZ UDPGothic", "Meiryo",
    "Helvetica Neue", Arial, sans-serif;
}

/* 4. メディア要素をブロック扱いにし、最大幅を親に合わせる */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 5. フォーム要素のフォントをbodyから継承 */
input, button, textarea, select {
  font: inherit;
}

/* 6. 長い単語・URLの折り返し制御 */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 7. スタック内のルートを作り、スタッキングコンテキストを整理 */
#root, #__next {
  isolation: isolate;
}
