@charset "UTF-8";
/* CSS Document */

html {
  margin: 0px;
  padding: 0px;
  font-size: 10px;
  line-height: 1;
}

body {
  margin: 0px;
  padding: 0px;
  min-height: 100vh;
}

/*エリア分けするタグたち*/
header,
footer,
article,
section,
nav,
aside,
div {
  margin: 0px;
  padding: 0px;
  display: block;
  font-weight: normal;
}

/*情報を分類するタグたち*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
figcaption {
  font-size: 100%;
  font-weight: inherit;
  margin: 0px;
  padding: 0px;
  display: block;
}

p {
  text-align: justify;
}

/*リスト*/
ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  font-weight: inherit;
}
li {
  margin: 0px;
  padding: 0px;
  font-weight: inherit;
}

dl,
dt,
dd {
  margin: 0px;
  padding: 0px;
  font-weight: inherit;
  text-align: justify;
}

/*画像*/
img {
  margin: 0px;
  padding: 0px;
  vertical-align: bottom;
  display: inline-block;
}

/*初期設定が display:inline のタグたち*/
a,
span,
time,
strong,
em,
small {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
  font-weight: inherit;
  font-style: normal;
  display: inline;
}

/*表組*/
table {
  margin: 0px;
  padding: 0px;
  border-collapse: collapse;
}
tr {
  margin: 0px;
  padding: 0px;
}
td {
  margin: 0px;
  padding: 0px;
}
th {
  margin: 0px;
  padding: 0px;
  font-weight: inherit;
  text-align: left;
}
