@charset "UTF-8";
/*

Last Update 2009-11-20

各ブラウザ間の差異を無くすためのスタイルシートです。
そのため、こちらの書き換えは行わないでください。

もしここで指定されている値で、上書きが必要なものに関しては、ここの内容を
変更せずに、各ページごとのスタイルシートで上書きしてください。

例）文字の大きさを変更したい
#base（一番外のコンテナ）に、font-sizeを指定する　等

*/
/* margin,padding
--------------------------------------------------------------------*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
div,
p,
pre,
address,
blockquote,
section,
article,
figure,
aside,
ul,
ol,
dl,
dt,
dd,
form,
fieldset {
  display: block;
  margin: 0;
  padding: 0;
}

/* heading
--------------------------------------------------------------------*/
/* font 
--------------------------------------------------------------------*/
address,
em {
  font-style: normal;
}

/* list 
--------------------------------------------------------------------*/
ol,
ul {
  list-style-type: none;
}

/* img 
--------------------------------------------------------------------*/
img {
  border: none;
  vertical-align: bottom;
}

/* form
--------------------------------------------------------------------*/
input,
select,
textarea,
button {
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
}

/* table
--------------------------------------------------------------------*/
/*table,
thead,
tbody,
tfoot,
tr,
th,
td,
caption,
col,
colgroup {
	text-align: inherit;
	line-height: inherit;
	font-size: 100%;
}*/
table {
  display: table;
}

thead {
  display: table-header-group;
}

tbody {
  display: table-row-group;
}

tfoot {
  display: table-footer-group;
}

tr {
  display: table-row;
}

th,
td {
  display: table-cell;
}

caption {
  display: table-caption;
}

col {
  display: table-column;
}

colgroup {
  display: table-column-group;
}

/* clearfix
--------------------------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/*IE7用*/
/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
