@charset "utf-8";
/* CSS Document */
.news_f {
  gap: 48px;
  align-items: flex-start;
}
/* =========================
   左カテゴリ
   ========================= */
.news_f .cate-wrap {
  position: sticky;
  align-self: flex-start;
  flex: 0 0 250px;
  top: 120px;
}
.news_f .cate-wrap .titlebox {
  border-bottom: 1px solid #d9ddd7;
  margin-bottom: 24px;
  padding-bottom: 12px;
}
.news_f .cate-wrap .titlebox p {
  margin: 0;
  color: #ff6e1d;
  letter-spacing: 0.04em;
}
.news_f .cate-wrap .webgene-blog {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.news_f .cate-wrap .webgene-blog .webgene-item a {
  position: relative;
  display: block;
  padding-left: 18px;
  text-decoration: none;
}
.news_f .cate-wrap .webgene-blog .webgene-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f35122;
  transform: translateY(-50%);
}
.news_f .cate-wrap .webgene-blog .webgene-item a p {
  margin: 0;
  color: #333;
  line-height: 1.6;
}
.news_f .cate-wrap .webgene-blog .webgene-item a.on p {
  color: #f35122;
}
/* =========================
   右一覧
   ========================= */
.news_f .contents.news_list {
  flex: 1;
  min-width: 0;
}
.news_f .contents .webgene-blog {
  gap: 30px 18px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: row;
  align-items: stretch;
}
.news_f .contents .webgene-blog .webgene-item {
  width: calc((100% - 18px) / 2);
}
.news_f .contents .webgene-blog .webgene-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.news_f .contents .webgene-blog .webgene-item .imgbox {
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.news_f .contents .webgene-blog .webgene-item .imgbox img {
  display: block;
  width: 100%;
  height: auto;
}
.news_f .contents .webgene-blog .webgene-item a .catename {
  display: inline-block;
  color: #ff6e1d;
  background: #fbeee4;
  line-height: 1.5;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
}
.news_f .contents .txtbox {
  padding: 0 20px 20px;
}
/* =========================
   ページネーション
   ========================= */
.news_f .webgene-pagination {
  width: 100%;
  margin-top: 24px;
}
.news_f .webgene-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.news_f .webgene-pagination ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #FF6E1D;
  color: #333;
  text-decoration: none;
  line-height: 1;
  font-size: clamp(16px, 2vw, 20px);
}
.news_f .webgene-pagination ul .selected a {
  pointer-events: none;
  background: #FF6E1D;
  color: #fff;
  border-color: #FF6E1D;
}
/* =========================
   responsive
   ========================= */
@media screen and (max-width: 1080px) {
  .news_f {
    flex-direction: column;
  }
  .news_f .cate-wrap {
    flex: 0 0 130px;
    width: 100%;
    position: relative;
    top: 0px;
    align-self: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .news_f {
    flex-direction: column;
  }
  .news_f .cate-wrap {
    width: 100%;
    position: static;
    top: auto;
  }
}
@media screen and (max-width: 576px) {
  .news_f .contents .webgene-blog .webgene-item {
    width: 100%;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}