@keyframes shakeLR {
  0% {
    transform: translateX(0px);
  }
  10% {
    transform: translateX(10px);
  }
  20% {
    transform: translateX(0px);
  }
  30% {
    transform: translateX(10px);
  }
  40% {
    transform: translateX(0px);
  }
}
@keyframes shakeUD {
  0% {
    transform: translateY(0px);
  }
  10% {
    transform: translateY(10px);
  }
  20% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(10px);
  }
  40% {
    transform: translateY(0px);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes denied {
  0% {
    transform: translateX(0px);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
  }
}
.pagepeel {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.pagepeel:hover {
  transform-origin: top right;
  transform: scale(0.9);
  transition: transform 0.1s ease-in;
}

.header__logoSvg {
  width: 20%;
  max-width: 200px;
  padding: 10px;
}
@media screen and (max-width: 414px) {
  .header__logoSvg {
    width: 30%;
  }
}

h2 {
  font-size: 120px;
  font-weight: normal;
  margin: 5px 0 10px;
  color: #a60066;
  text-align: center;
}
@media screen and (max-width: 414px) {
  h2 {
    font-size: 4em;
  }
}

.archive_items_wrap {
  color: #333;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  padding: 10px;
}
@media screen and (max-width: 414px) {
  .archive_items_wrap {
    gap: 20px;
  }
}
.archive_items_wrap .archive_item {
  position: relative;
  background: #fff;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  box-sizing: border-box;
  width: calc(33.3333333333% - 20px);
  font-size: 100%;
  padding: 0.5em;
  opacity: 0;
  animation: item_ani 2s forwards 1s;
}
.archive_items_wrap .archive_item::before, .archive_items_wrap .archive_item::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #fefefe;
  z-index: -1;
}
.archive_items_wrap .archive_item::after {
  background: #ddd;
  transform: translate(8px, 8px);
  z-index: -2;
}
@media screen and (max-width: 414px) {
  .archive_items_wrap .archive_item::after {
    transform: translate(4px, 4px);
  }
}
@media screen and (max-width: 414px) {
  .archive_items_wrap .archive_item {
    width: calc(50% - 10px);
  }
}
@keyframes item_ani {
  100% {
    opacity: 1;
  }
}
.archive_items_wrap .archive_item::after {
  transform: translate(4px, 4px);
}
@media screen and (max-width: 414px) {
  .archive_items_wrap .archive_item::after {
    transform: translate(2px, 2px);
  }
}
.archive_items_wrap .archive_item .thumbnail {
  position: relative;
  margin-top: 20px;
}
.archive_items_wrap .archive_item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive_items_wrap .archive_item .thumbnail::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  padding-top: 90%;
}
.archive_items_wrap .archive_item h3 {
  font-size: 1.1em;
  margin: 10px 0;
}
.archive_items_wrap .archive_item .excerpt {
  font-size: 0.9em;
}
.archive_items_wrap .archive_item .ico-pin {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 30px;
  filter: hue-rotate();
  transform: translate(40%, -20px);
  opacity: 0;
}
.archive_items_wrap .archive_item .ico-pin.show {
  animation: pin_ani 0.1s ease-in 0.5s forwards;
}
@keyframes pin_ani {
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

#js-pagePeel-in {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
#js-pagePeel-in .pagePeel_BG {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  opacity: 1;
}
@keyframes BGfadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#js-pagePeel-in .pagePeel_curl {
  width: 30%;
  height: 100vh;
  background: #e6e6e6;
  transform: skewX(5deg) translateX(-50%);
}
@keyframes peelAni {
  20% {
    transform: skewX(5deg) translateX(-100%);
  }
  50% {
    transform: skewX(0deg) translateX(0);
    width: 100%;
  }
  90% {
    transform: none;
    width: 100%;
  }
  100% {
    opacity: 0;
  }
}
#js-pagePeel-in.peel .pagePeel_curl {
  animation: peelAni 2s ease-in-out forwards;
}
#js-pagePeel-in.peel .pagePeel_BG {
  animation: BGfadeout 2s forwards 1s;
}/*# sourceMappingURL=archive.css.map */