/*** The new CSS Reset - version 1.2.0 (last updated 23.7.2021) ***/
 
/* ブラウザのUAスタイルシートのすべてのスタイルを削除します、displayは除く */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

/* フォーカスのスタイル */
*:focus-visible {
  outline: 2px solid ;
  border-radius: 3px;
}
:focus:not(:focus-visible) {
outline: 0;
}
/* box-sizingの優先値 */
*,
*::before,
*::after {
  box-sizing: border-box;
}
 
/*
  リストのスタイル（箇条書き・番号）を削除します
  normalize.cssで使用する場合
*/
ol, ul {
  list-style: none;
}
 
/* 画像がコンテナを超えないようにするため */
img {
  max-width: 100%;
}
 
/* テーブルのセル間のスペースを削除します */
table {
  border-collapse: collapse;
}
 
/* Safariのtextarea要素のwhite-spaceプロパティを元に戻します */
textarea {
  white-space: revert;
}

/* テキストのオーバーフローを回避します */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
