@charset "utf-8";


html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, table, tr, th, td, input, textarea, button {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align:baseline;
	/* border, paddingをwidthに含める */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article, header, footer, aside, figure, figcaption, nav, section { 
  display:block;
}
 table, tr, th, td{ border:0; }
body {
  line-height: 1;
	/* スマホのPortrate,Landscape時に文字サイズが変わるのを防ぐ */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
ol, ul {
  list-style: none;
  list-style-type: none;
}
img {
	max-width : 100%;
	height : auto;
	vertical-align: bottom;
}
img[src$=".svg"] {
    width: 100%;
}