@charset "UTF-8";
/*------------------------------------------------------------
	サイト幅でセンタリング
------------------------------------------------------------*/
/*------------------------------------------------------------
	breakpoint
------------------------------------------------------------*/
/*------------------------------------------------------------
	フォント
------------------------------------------------------------*/
/*------------------------------------------------------------
	clearfix
------------------------------------------------------------*/
/*------------------------------------------------------------
	flex
------------------------------------------------------------*/
/*------------------------------------------------------------
	Other
------------------------------------------------------------*/
.news_page {
  padding-top: 13.4rem;
}
@media screen and (max-width: 850px) {
  .news_page {
    padding-top: 10rem;
  }
}

.news_title {
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.news_main_content {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 7.6rem;
  padding: 0 2rem;
}

.news_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem;
}
@media screen and (max-width: 850px) {
  .news_list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.news_item {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s;
}
.news_item:hover {
  opacity: 0.8;
}

.news_image {
  width: 100%;
  aspect-ratio: 330/203;
  height: auto;
  object-fit: cover;
  margin-bottom: 1rem;
}
@media screen and (max-width: 850px) {
  .news_image {
    margin-bottom: 0.6rem;
  }
}

.news_info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 850px) {
  .news_info {
    margin-bottom: 0.6rem;
  }
}

.news_category {
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.news_date {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  font-family: "Source Sans 3", "Noto Sans JP", sans-serif;
  transform: skewX(-8deg);
}

.news_content {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000;
}

.news_pagination {
  margin-top: 6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}
.news_pagination .page,
.news_pagination .current,
.news_pagination .extend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  height: 3.2rem;
  padding: 0 0.8rem;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  text-decoration: none;
  color: #000;
  border: 0.1rem solid #ddd;
  background: #fff;
}
.news_pagination .current {
  background: #000;
  color: #fff;
  border-color: #000;
}
.news_pagination .extend {
  border: none;
  background: transparent;
}

.news_detail_container {
  max-width: 102rem;
  margin: 0 auto;
  padding: 0 2rem 8rem;
}

.news_breadcrumb {
  font-size: 1.4rem;
  color: #5C5C5C;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news_breadcrumb a {
  color: #5C5C5C;
  text-decoration: none;
  transition: opacity 0.3s;
}
.news_breadcrumb a:hover {
  opacity: 0.7;
}
.news_breadcrumb .breadcrumb_separator {
  color: #5C5C5C;
}
.news_breadcrumb .breadcrumb_current {
  color: #5C5C5C;
}

.news_detail_title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #000;
}
@media screen and (max-width: 850px) {
  .news_detail_title {
    font-size: 2.8rem;
  }
}

.news_detail_meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.news_detail_meta .news_category {
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  font-weight: 500;
}
.news_detail_meta .news_date {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
}

.news_detail_image {
  margin-bottom: 2.4rem;
}
.news_detail_image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.8rem;
}

.news_detail_body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news_detail_text {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #000;
}

.news_detail_heading {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-top: 1rem;
}

.news_detail_image_block {
  margin: 1rem 0;
}
.news_detail_image_block img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.8rem;
}

.news_empty {
  text-align: center;
  color: #999;
  font-size: 1.6rem;
  padding: 4rem 0;
}