@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  font-size: 16px;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  line-height: 1.47;
}

ul,
ol {
  list-style: none;
}

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

img,
video {
  max-width: 100%;
  vertical-align: top;
}

footer {
  display: flex;
  justify-content: space-between;
  color: white;
  font-family: 'Iowan Old Style', 'Palatino Linotype', 'URW Palladio L', P052, serif;
  width: 970px;
  max-width: 90vw;
  margin: 0 auto 0.5em;
}

footer a {
  transition-duration: 0.1s;
}

footer a:hover {
  opacity: 0.8;
}

@media (max-width: 800px) {

  /* フッター */
  footer {
    display: block;
    text-align: center;
  }

  footer>p:nth-child(2) {
    margin-top: 0.95em;
  }
}