@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
}
html {
  font-size: 16px;
}
body {
  font-family: 'Zen Kaku Gothic Antique',sans-serif;
}
body * {
  box-sizing: inherit; /* box-sizingの値は継承されないので明示的に設定 */
}
header, footer, nav, menu, article, aside, section, details, figcaption, figure{
  display: block;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
a img {
  border: none;
}
strong {
  font-weight: normal;
}
i{
    font-style: normal;
}
a{
  color: black;
  text-decoration: none;
}
