/* Box sizingの定義 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* デフォルトのリストスタイルを削除 */
ul,
ol {
  padding:0;
  list-style:none;
}

/* フォント設定 */
body {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}

/* リンクの色設定を単純化 */
a {
  color:inherit;
}

/* 画像の設定 */
img {
  max-width: 100%;
  vertical-align: bottom;
}

/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
}

/* テーブルのデフォルト */
table {
  border-collapse:collapse;
  border-spacing:0;
}

/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
/* JavaScriptの監視に影響する場合があるため、使う場合のみコメント解除 */
/* 
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
*/