@charset "utf-8";

/* reset
-------------------------------------*/
html, body, div, span,
h1, h2, h3, h4, h5, h6, p,
img,
small, strong,
dl, dt, dd, ol, ul, li,
table, tbody, tfoot, thead, tr, th, td,
article, aside,
footer, header, menu, nav, section, figure {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
}

nav ul {
    list-style-type:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

*{
    box-sizing: border-box;
    text-decoration: none;
    font-weight: normal;
    list-style-type:none;
}

/* setting
-------------------------------------*/
body {
  color: #222;
  font-family: Meiryo, "メイリオ", 'MS PGothic', "ＭＳ Ｐゴシック", 'Hiragino Kaku Gothic Pro', "ヒラギノ角ゴ Pro W3", Osaka, 'Lucida Grande', "sans-serif";
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
}
html {
  font-size: 62.5%;
}
main {
  display: block; /* ie用 */
}
a,input[type=submit] {
  cursor: pointer;
}

/* clearfix
-------------------------------------*/
.clear:before,
.clear:after {
  content: '';
  display: table;
}
.clear:after {
  clear: both;
}
.clear {
  zoom: 1;
}
