@charset "UTF-8";

/**
 * オリジナルcss
 */

.archive_elements {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
  a {
    width: calc((100% - 48px) / 3);
    text-decoration: none;
    .archive_image {
      position: relative;
      img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
      }
    }
    .archive_image::before {
      content: "";
      display: block;
      padding-top: calc(25300% / 384);
    }
    .archive_header {
      margin-top: 16px;
      h3 {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin: 16px 0 0 0;
        font-size: 1.6rem;
        font-weight: normal;
      }
    }
  }
}

.archive_pagenation {
    margin-top: 60px;
    text-align: center;
}

@media screen and (max-width: 1110px) {
}
@media screen and (max-width: 740px) {
  .archive_elements {
    a {
      width: 100%;
    }
  }
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 500px) {
}
