@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif&display=swap");

:root {
  --text-color: #222;
  --wh: #fff;
  --bk: #222;
  --gray: #dddcda;
}

/* @font-face でローカルフォントを優先 */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}

@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
/* ====================================================
 Under　MV
==================================================== */
.under-mv {
  position: relative;
}

.under-mv__title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 23rem;
}

@media screen and (max-width: 1200px) {
  .under-mv__title {
    padding-top: 18rem;
  }
}

@media screen and (max-width: 834px) {
  .under-mv__title {
    padding-top: 14rem;
  }
}

@media screen and (max-width: 640px) {
  .under-mv__title {
    padding-top: 10rem;
  }
}

.under-mv__title-img {
  height: 11.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 1200px) {
  .under-mv__title-img {
    height: 10rem;
  }
}

@media screen and (max-width: 834px) {
  .under-mv__title-img {
    height: 8.5rem;
  }
}

@media screen and (max-width: 640px) {
  .under-mv__title-img {
    height: 7rem;
  }
}

@media screen and (max-width: 499px) {
  .under-mv__title-img {
    height: 6rem;
  }
}

/* ====================================================
 Pagination
==================================================== */
.pagination {
  margin: 10rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .pagination {
    margin: 8rem 0;
  }
}

@media screen and (max-width: 834px) {
  .pagination {
    margin: 6rem 0;
  }
}

@media screen and (max-width: 640px) {
  .pagination {
    margin: 4rem 0;
  }
}

.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
  width: 3.6rem;
  height: 3.6rem;
  gap: 2rem;
}

@media screen and (max-width: 834px) {
  .pagination .page-numbers {
    gap: 1rem;
  }
}

@media screen and (max-width: 640px) {
  .pagination .page-numbers {
    width: 3.2rem;
    height: 3.2rem;
    gap: 0;
  }
}

@media screen and (max-width: 499px) {
  .pagination .page-numbers {
    font-size: 1.2rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}

.pagination .page-numbers.current {
  background-color: #333;
  color: #fff;
  border-radius: 100vmax;
}

.pagination .page-numbers .material-symbols-outlined {
  font-weight: 100;
  font-size: 28px;
}

/*# sourceMappingURL=under.css.map */