@charset "UTF-8";
@keyframes blink_animation {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
リセット
/***********************/
html, body, div, object,
h1, h2, p,
a, address, big, code, img, q, s,
small, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li, form, tr, th, td,
article, canvas, details,
figure, figcaption, footer, header, nav, section,
time {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

 th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a, a:hover {
  text-decoration: none;
}

a > img, nav > img, li > img, div > img {
  width: 100%;
  height: auto;
}

a img {
  border: none;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

article, details, figcaption, figure, footer, header, main, nav, section, div {
  display: block;
  position: relative;
}

body {
  position: absolute;
  background-color: #fff;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

body * {
  box-sizing: border-box;
}

div, h1, h2, ul, ol, li, dl, dt, dd {
  position: relative;
}

h1, h2 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

p, div {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}

img,
a img {
  border: none;
  display: block;
}

img {
  width: 100%;
  height: auto;
}
