/*================================================================
ブラウザごとにデフォルトで効いたCSSによる表示の
差異を無くすためのもの。
================================================================*/

@charset "utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;/*ボーダースタイルのリセット*/
  font: inherit;/*親要素に指定されたフォントを引き継ぐ*/
  font-size: 100%;/*ウェブブラウザのフォントサイズ設定に基いた表示上のフォントサイズに変更される*/
  margin: 0;
  padding: 0;
  line-height:1;/*行ボックスに1文字分の高さを設定*/
  vertical-align: baseline;/*テキストの行の中で画像の垂直位置を決める際、中央が中心になる*/
  box-sizing: border-box;/*要素に指定した widthやheight内で収めるようブラウザーに指示する。*/
  text-decoration: none;/*テキストに施される装飾を無くす*/
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style: none;
  text-decoration: none;

}

ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

mark {
  background-color:#ff9;
  color:#000;
  font-style:italic;
  font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}


table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
}

hr {
  display:block;
  height:1px;
  border:0;  
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}
