@charset "utf-8";
/*------------------------------------------------------------------*/
/*     初期設定用CSS                                                */
/*     対象：全ページ                                               */
/*------------------------------------------------------------------*/


/* format
------------------------------------------------------------------- */
* {
  font-size: 100%;
  line-height: 100%;
  box-sizing: border-box;
}

html,
body,
div,
dl, dt, dd,
ul, ol, li,
h1, h2, h3, h4, h5, h6,
pre,
form, fieldset, input, textarea, button,
hr, p, blockquote,
th, td {
  margin: 0;
  padding: 0;
}


/* html 設定
------------------------------------------------------------------- */
html {
  width: 100%;
  height: 100%;
  color: #333;
  font-size: 62.5%;
  overflow-y: scroll;
  filter: expression(document.execCommand("BackgroundImageCache",false,true));
  -webkit-text-size-adjust: none;
}


/* リンク 設定
------------------------------------------------------------------- */
a {
  text-decoration: none;
  outline: none;
}

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

li { list-style-type: none; }

img { border: none; }

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
}


/* clearfix 設定
------------------------------------------------------------------- */
.cf:before,
.cf:after {
  content:"";
  display: table;
}

.cf:after { clear:both; }

.cf { zoom: 1; }


/* body 設定
------------------------------------------------------------------- */
body {
  width: 100%;
  font-size: 1.4em;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ヒラギノ丸ゴ Pro W4","Hiragino Maru Gothic Pro",Osaka,"メイリオ","MS PGothic",sans-serif;
  background: #fff;
}