/* Box sizingの定義 */
*,
*::before,
*::after {
  box-sizing: border-box;
}
 
/* デフォルトのpaddingを削除 */
ul,
ol{
  padding: 0;
}
 
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
 
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
 
/* ul、ol要素のリストスタイルを削除 */
ul,
ol{
  list-style: none;
}

/* 見出しスタイルを削除 */
h1,
h2,
h3,
h4,
h5,
h6{
  font-size: inherit;
  font-weight: inherit;
}
 
/* aタグの装飾を削除 */
a{
  text-decoration: none;
  color: inherit;
}
/* a:not([class]) {
  text-decoration-skip-ink: auto;
} */
 
/* img要素の扱いを簡単にする */
img {
  /* max-width: 100%; */
  /* display: block; */
  width: 100%;
}

/* article要素内の要素に自然な流れとリズムを定義 */
article > * + * {
  margin-top: 1em;
}
 
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
}
 
/* すべてのアニメーションとトランジションを削除 */
/* @media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} */

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

table {
  border-collapse: collapse;
}