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

/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
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 {
  vertical-align: bottom;
  max-width: 100%;
}

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

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