/*
 * 各タグのベースになるスタイルを定義するためのファイル。
 * （このファイルは基本的に更新する必要はない。）
 *
 * HTML側で読み込んでいる reset.min.css でブラウザ標準のスタイルは消して、ブラウザごとの差異をなくし、本ファイルで最低限のベースになるスタイルを定義している。
 */

* {
  box-sizing: border-box;
  border-collapse: collapse;
}

body {
  font: 14px;
  line-height: 1.8;
  *font-size: small;
  /* for IE */
  *font: x-small;
  /* for IE in quirks mode */
  word-wrap: break-word;
}

h1, h2, h3, h4, h5, h6,
div, span, p, a, li, th, td {
  color: #3e3a39;
  font-family: "Shippori Mincho","Noto Sans JP","Instrument Serif","source-sans-3","ＭＳ Ｐゴシック","MS PGothic","Sans-Serif","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,verdana,Osaka;
}

a {
  color: #111111;
}

a:hover {
  color: #BBBBBB;
	transition: 0.5s;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  border-style: none;
}

body {
  -webkit-tap-highlight-color:rgba(#FFF, 0);
}

	

