@charset "UTF-8";

/*****************************
  base.css
  CSS初期化
*****************************/

/*  すべての要素を初期化
-------------------------- */
body, div, pre, p, blockquote,
form, fieldset, input, textarea, select, option,
dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
table, th, td, embed, object{
  margin:0;
  padding:0;
  vertical-align:baseline;
  color:#666;
  box-sizing: border-box;
}

body{
  font-family:"メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック", "MS PGothic", "verdana","Osaka",sans-serif;
  font-size:0.75em;
  line-height:1.4;
  text-align:center;
  min-width: 980px;
}

h1, h2, h3, h4, h5, h6{
  font-style:normal;
  font-weight:normal;
  font-size:0.75em;
}

ul{
  list-style-type:none;
}

img{
  border:none;
}
a,
a:active,
a:visited{
  text-align:left;
  border:0 none;
  overflow:hidden;
  outline: none;
}

@media screen and (max-width: 760px){
body {
  min-width: initial;
}
}