@charset "utf-8";
/*!
 * DI Tokyo theme — reset / base normalization
 * ブラウザ既定値の差異を吸収するためのリセット用スタイル。
 * テーマ固有の装飾(フォント・カラーなど)は style.css 側に置く。
 * functions.php で style.css より前に読み込む。
 */

/* ===== Box sizing ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ===== Document / page wrapper ===== */
html, body, #root {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ===== Body baseline ===== */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ===== Media elements ===== */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* ===== Form elements inherit font ===== */
input, button, textarea, select {
  font: inherit;
}

/* ===== Long-word wrapping ===== */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}