@charset "utf-8";

/* soles official
   Addition CSS
============================== */

#home .archive > dl.archive > dt.new {
  font-weight: bold;
  color: red;
  animation:archiveNew 0.8s ease-in-out infinite alternate;
}
#home .archive > dl.archive > dt.new::after {
  content: "New";
  padding-left: 0.4em;
}
@keyframes archiveNew{
  0% {opacity:0;}
  100% {opacity:1;}
}

/* Banner */
aside.banner {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  border: 2px solid #fff;
}
aside.banner figure {
  display: grid;
  grid-template-columns: 20% 80%;
  align-items: center;
}
aside.banner figure figcaption {
  padding: 0 1.0em;
}
aside.banner figure figcaption span {
  font-weight: bold;
  display: block;
  font-size: 1.4em;
}


@media (min-width:600px) {
  aside.banner {
    max-width: 500px;
  }
  aside.banner figure figcaption span {
    display: inline ;
    padding-right: 0.5em;
  }
}


/* Religion */
main::before {
  content: "";
  background-image: url(../images/religion.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: fixed;
  left: 0;
  bottom: -220px;
  width: 100%;
  height: 100%;
  z-index: -999;
  opacity: 0;
  animation: religion 6s ease infinite 
}
@keyframes religion {
  0% {opacity: 0;}
  25% {opacity: 0.8;}
  50% {opacity: 0;}
  75% {opacity: 0.8;filter: drop-shadow(0px 0px 5px #fff) invert(75%);}
}

/* Store */
.note {
  background-color: #fff;
  border: 2px solid #000;
  color: #000;
  img {
    width: 4em;
  }
}


/* Comment */
header section {
  padding: 2.0rem 0;
  h2 {
    font-family: "Noto Serif JP", serif;
    line-height: 1.2;
    margin-bottom: 0.4em;
  }
  p {
    padding: 0.4em 0;
  }
}