/* --------------------------------------
	reset css
-------------------------------------- */

/* border-box を全要素にセット */
:where(*, ::before, ::after) {
  box-sizing: border-box;
}

/* 全要素のマージンをリセット */
* {
  margin: 0;
}

/* 親要素をはみ出さないようにする + 隙間ができないようにする */
:where(img, video) {
  display: block;
  max-width: 100%;
  height: auto;
}

/* iframe */
:where(iframe) {
  display: block;
  border: none;
}

/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* フォーム要素のタイポグラフィをリセット */
:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  text-transform: none;
}

/* テキストエリアの水平リサイズを無効に */
:where(textarea) {
  resize: vertical;
}

/* カーソル セット */
:where(button, label, select, summary) {
  cursor: pointer;
}
