/* reset.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  font-family: sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

pre {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  white-space: pre-wrap;
  word-wrap: break-word;        /* 古いブラウザ用 */
  overflow-wrap: break-word;    /* 新しいブラウザ用 */
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}

.clearfix:after {
	content: ""; 
	display: block;
	clear: both;
}