@charset "UTF-8";
body {
  background-color: #ff008e;
}

@media screen and (min-width: 768px) {
  .copy {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1340px) {
  .copy {
    /* 幅1340px以下の場合の非表示 */
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-height: 660px) {
  .copy {
    /* 高さ660px以下の場合の非表示 */
    display: none;
  }
}

.scroll {
  position: fixed;
  right: 30px;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  font-size: 13px;
  flex-direction: column;
  align-items: center;
  display: none;
  z-index: 99;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .scroll {
    display: flex;
    bottom: min(124px, 22%);
  }
}
.scroll.is-up {
  flex-direction: column-reverse;
  cursor: pointer;
}
.scroll.is-up svg {
  transform: rotate(-90deg);
  position: relative;
  top: 0;
  transition: top 0.3s ease;
}
.scroll.is-up:hover svg {
  top: -6px;
  transition: top 0.3s ease;
}
.scroll svg {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.scroll.fade {
  opacity: 0;
}

.page-news {
  padding-top: 52px;
  position: relative;
  margin-bottom: 264px;
}
@media screen and (max-width: 767px) {
  .page-news {
    margin-bottom: 136px;
  }
}
.page-news__copyright {
  display: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  z-index: 10;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1230px) {
  .page-news__copyright {
    display: block;
  }
}
.page-news__copyright-text {
  font-size: 1.1rem;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0;
  color: #0d0d0d;
}
.page-news__breadcrumb {
  width: 100%;
  max-width: 1258px;
  margin: 18px auto 21px;
  padding-inline: 15px;
}
.page-news__content {
  max-width: 860px;
  width: 100%;
  padding-inline: 10px;
  margin-inline: auto;
  margin-top: 47px;
}
@media screen and (max-width: 767px) {
  .page-news__content {
    margin-top: 52px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page-news__content.is-noPosts {
  max-width: 747px;
  margin-top: 83px;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .page-news__content.is-noPosts {
    margin-top: 52px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 95px;
  }
}
.page-news__item-link {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  padding: 30px;
  column-gap: 20px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #0d0d0d;
  transition: all 0.3s ease-in-out;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-news__item-link {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    justify-content: flex-start;
    gap: 17px 16px;
    padding: 20px 0;
  }
}
.page-news__item-link:hover {
  opacity: 0.8;
}
.page-news__item-link:hover .page-news__item-icon {
  transform: translateX(15px);
}
.page-news__item-time {
  font-size: 1.4rem;
  font-family: "Cormorant Infant", serif;
  line-height: 1.2;
  letter-spacing: 0;
  color: #0d0d0d;
}
.page-news__item-category-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
}
.page-news__item-category {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  width: 145px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid #0d0d0d;
  background-color: #ffffff;
  text-decoration: none;
}
.page-news__item-category-image {
  width: auto;
  height: 12px;
}
.page-news__item-category-text {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  letter-spacing: -0.1rem;
  color: #0d0d0d;
}
.page-news__item-title {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #0d0d0d;
}
@media screen and (max-width: 767px) {
  .page-news__item-title {
    grid-column: span 2;
  }
}
.page-news__item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .page-news__item-icon {
    display: none;
  }
}
.page-news__note {
  font-size: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .page-news__note {
    font-size: 1.6rem;
  }
}
.page-news__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 840px;
  margin-top: 85px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .page-news__pagination {
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
}