@charset "utf-8";

/*------------------------
  リセットCSS
-------------------------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, img, ins, kbd, q, samp,
small, sub, var,
b, i, dl, li, fieldset, form, label, legend,
caption, tbody, tfoot, thead,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:bottom;
  background:transparent;
}

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

li, dl{
  list-style:none;
}

/*------------------------
 各ページのベースとなるCSS
-------------------------*/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  width: 100%;
}
   
body {
  color: #000;
  font-style: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro," メイリオ", Meiryo, Osaka," ＭＳ Ｐゴシック", MS PGothic," sans-serif";
  -webkit-font-smoothing: antialiased;
}

a{
  text-decoration: none;
}