@charset "UTF-8";
.page-news {
  padding: 68px 25px;
  background-color: #f7f3ec;
}
@media screen and (min-width: 768px) and (max-width: 1249px) {
  .page-news {
    margin-top: 93px;
  }
}
@media screen and (max-width: 767px) {
  .page-news {
    margin-top: 80px;
    padding: 40px 25px;
  }
}
.page-news_content {
  display: flex;
  flex-direction: column;
  gap: 68px;
  margin-bottom: 69px;
}
@media screen and (max-width: 767px) {
  .page-news_content {
    gap: 60px;
  }
}
.page-news_title {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 350;
  font-size: 50px;
  line-height: 58px;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-news_title {
    font-size: 36px;
  }
}
.page-news_tag-list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .page-news_tag-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 325px;
    width: 100%;
    margin: 0 auto;
  }
}
.page-news_tag-list li a {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  text-underline-offset: 0.2em;
  white-space: nowrap;
  font-size: 21px;
  font-weight: 300;
  overflow: hidden;
  transition: color 0.3s ease;
  text-decoration: none;
}
.page-news_tag-list li a.is-current {
  color: #d3b778;
}
.page-news_tag-list li a.is-current::before {
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .page-news_tag-list li a {
    font-size: 18px;
    line-height: 100%;
  }
}
.page-news_tag-list li a::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 5px;
  border-radius: 50%;
  background-color: #d3b778;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.page-news_tag-list li a:hover {
  color: #d3b778;
  transition: color 0.3s ease;
}
.page-news_tag-list li a:hover::before {
  transform: translateY(0);
}
.page-news_list {
  display: flex;
  flex-direction: column;
  row-gap: 29px;
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .page-news_list {
    row-gap: 40px;
    max-width: 325px;
  }
}
.page-news_card {
  display: flex;
  gap: 45px;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0d6c5;
}
@media screen and (max-width: 767px) {
  .page-news_card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 20px;
    padding-bottom: 20px;
  }
}
.page-news_card:hover {
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.page-news_card-image {
  width: 274px;
  height: 174px;
  justify-content: center;
  align-items: center;
  padding: 2%;
  background-color: #fff;
  aspect-ratio: 3/4;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .page-news_card-image {
    max-width: 325px;
    width: 100%;
    height: auto;
    padding: 8px;
    aspect-ratio: 4/3;
  }
}
.page-news_card-image-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-news_card-content {
  display: flex;
  flex-direction: column;
  max-width: 489px;
  width: 100%;
  height: auto;
  gap: 10px;
}
.page-news_card-meta {
  display: flex;
  gap: 15px;
  align-items: center;
}
.page-news_card-meta-date {
  font-family: "Inter";
  font-style: "normal";
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  color: #b1934f;
}
.page-news_card-meta-tag {
  position: relative;
  font-size: 12px;
  background-color: #d3b778;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .page-news_card-meta-tag {
    line-height: 26px;
    letter-spacing: 0.05em;
    padding: 2px 10px;
  }
}
.page-news_card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .page-news_card-title {
    font-weight: 300;
    font-size: 18px;
  }
}
.page-news_card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 180%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* 垂直方向に配置 */
  overflow: hidden;
  /* 溢れた部分を隠す */
  text-overflow: ellipsis;
  /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 767px) {
  .page-news_card-text {
    font-weight: 300;
  }
}
.page-news__pagination {
  max-width: 328px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  color: #fff;
  background-color: #B1934F;
}

.pagination {
  display: flex;
  padding: 7px 9px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.pagination__link-text {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 15px;
  text-align: center;
  align-items: center;
}
.pagination__link--prev {
  border-right: 1px solid #fff;
  padding-right: 15px;
}
.pagination__link--prev :hover {
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.pagination__link--prev-icon {
  padding: 0 10px;
}
.pagination__link--next {
  border-left: 1px solid #fff;
  padding-left: 15px;
}
.pagination__link--next :hover {
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.pagination__link--next-icon {
  padding: 0 10px;
}
.pagination__select {
  font-style: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  padding-right: 24px;
  height: 50px;
}
.pagination__select-wrapper {
  gap: 4px;
}
.pagination__select-icon {
  width: 8px;
  height: 8px;
}

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