html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
body {
  max-width: 960px;
  margin: 0 auto;
  background: #000;
  font-family: sans-serif;
  font-size: 1.0rem;
  color: #ccc;
  animation: fade-in 1s;
}
.bg_anime {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: -1;
  animation:
    fade-in 2s,
    bgmove 30s linear infinite;
}
.gazou {
  background-image: url("img/bghorn.webp");
  background-position: 50% 0;
  background-size: 1200px;
}
a {
  color: inherit;
  text-decoration: none;
}
h1 {
  margin-top: 60px;
  left: 0;
  right: 0;
  margin-bottom: 100px;
  text-align: center;
}
.down {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  text-align: center;
}
.down2 {
  width: 100%;
  height: auto;
  max-width: 830px;
  animation:
    fade-in 2s linear 5s 1 normal both,
    blinking 1.5s ease-in-out 5s infinite alternate;
}
.tophoto {
  margin-top: 60px;
  left: 0;
  right: 0;
  margin-bottom: 40px;
  text-align: center;
  z-index: -1;
}
.tophoto2 {
  width: 100%;
  height: auto;
  max-width: 830px;
  animation: top-in 10s forwards;
}
.flex1 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
.poyo {
  animation: poyo 5s ease-out 2s infinite;
}
.thumb {
  width: 400px;
  height: 225px;
}
.com {
  box-sizing: border-box;
  width: 400px;
  height: 225px;
  aspect-ratio: 16 / 9;
  background-color: rgb(47 46 46 / 50%);
}
.postday {
  padding-top: 1em;
  padding-left: 1em;
  font-family: serif;
  font-size: 0.9em;
  color: #bbb;
}
.postitle1 {
  padding-top: 1em;
  padding-left: 1em;
  font-size: 1.2em;
  color: #ddd;
}
.postitle2 {
  padding-top: 1em;
  padding-left: 1em;
  font-size: 1.1em;
}
.postitle3 {
  padding-top: 0.3em;
  padding-left: 1em;
  font-size: 1.1em;
}
.topmenu {
  position: fixed;
  box-sizing: border-box;
  width: 830px;
  height: 30px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-left: 40px;
  font-family: serif;
  display: flex;
  align-items: center;
  gap: 0 40px;
  background-color: rgb(0 0 0 / 70%);
}
.pagetop {
  position: fixed;
  bottom: 16px;
  right: 16px;
}
.foot {
  margin: 120px 0;
  text-align: center;
  font-family: serif;
  font-size: 0.8em;
}
@keyframes fade-in {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes top-in {
  0% {opacity: 0;}
  50% {opacity: 1;}
  100% {opacity: 0.6;}
}
@keyframes blinking {
  0%   {opacity: 0;}
  100% {opacity: 0.6;}
}
@keyframes poyo {
  0%, 6%, 12%, 18%, 24%, 30%, 100% { transform: scale(1.0);}
  3% { transform: scale(0.95);}
  9% { transform: scale(0.96);}
  15% { transform: scale(0.97);}
  21% { transform: scale(0.98);}
  27% { transform: scale(0.99);}
}
@keyframes bgmove {
  from { background-position: 50% 0;}
  to { background-position: 50% -1742px;}
}