@charset "UTF-8";

/* 構造要素とブロックレベル要素 */
html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address, ul, ol, li, dl, dt, dd,
table, th, td, form, fieldset {
  margin: 0;
  padding: 0;
  color: #333;
}

/* HTML5の新要素 */
section, nav, article, aside, hgroup,
header, footer, figure, figcaption, summary {
  display: block;
  margin: 0;
  padding: 0;
  color: #000;
}
/* テーブルセルのボーダーの設定 */
table {
  border-spacing: 0;
  border-collapse: collapse;
}
/* 画像のリンクボーダーを非表示に */
img {
  border: 0;
}
/* 画像とフォームパーツの上下位置をテキストの真ん中に */
img, input, select, textarea {
  vertical-align: middle;
}
