#fj-news_contants {
  padding: 40px 20px;
  padding-bottom: 160px;
}
@media (max-width: 768px) {
  #fj-news_contants {
    padding: 0 20px;
  }
}
#fj-news_contants .fj-inner {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #fj-news_contants .fj-inner {
    padding-bottom: 140px;
    width: 100%;
  }
}
#fj-news_contants .fj-inner .fj-intro {
  line-height: 2;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #fj-news_contants .fj-inner .fj-intro {
    margin-bottom: 30px;
  }
}
@media (max-width: 1000px) {
  #fj-news_contants .fj-inner .fj-intro {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
}
#fj-news_contants .fj-news-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  #fj-news_contants .fj-news-list {
    gap: 15px;
  }
}
#fj-news_contants .fj-news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  background: #eaeff3;
  border-radius: 6px;
  padding-left: 27px;
  padding-right: 12px;
  font-size: 15px;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: inherit;
  transition: background 0.4s, box-shadow 0.4s;
  gap: 15px;
}
@media (max-width: 768px) {
  #fj-news_contants .fj-news-item {
    padding-left: 12px;
    font-size: 13px;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
#fj-news_contants .fj-news-item .fj-news-title {
  margin-left: auto;
  text-align: left;
  flex: 1;
}
@media (max-width: 768px) {
  #fj-news_contants .fj-news-item .fj-news-title {
    line-height: 1.2;
  }
}
#fj-news_contants .fj-news-item .fj-news-date {
  background: #00895d;
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  padding: 5px 12px;
  font-weight: normal;
}
@media (max-width: 768px) {
  #fj-news_contants .fj-news-item .fj-news-date {
    padding: 5px 8px;
    font-size: 12px;
  }
}
#fj-news_contants .fj-news-item::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: -1;
  transition: 0.4s;
}
@media (max-width: 768px) {
  #fj-news_contants .fj-news-item::before {
    width: 25px;
    height: 25px;
  }
}
#fj-news_contants .fj-news-item::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: #00895d;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%) scale(0);
  z-index: -1;
  transition: 0.4s;
}
#fj-news_contants .fj-news-item i {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
}
@media (max-width: 768px) {
  #fj-news_contants .fj-news-item i {
    width: 25px;
    height: 25px;
  }
}
#fj-news_contants .fj-news-item i::before {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  background: url(../img/icons/arrow_right_black2.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  #fj-news_contants .fj-news-item i::before {
    width: 11px;
    height: 12px;
  }
}
#fj-news_contants .fj-news-item i::after {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  background: url(../img/icons/arrow_right_white.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  #fj-news_contants .fj-news-item:hover {
    background: #e4e9ee;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 影の設定 */
  }
  #fj-news_contants .fj-news-item:hover i::after {
    opacity: 1;
  }
  #fj-news_contants .fj-news-item:hover::before {
    transform: translateY(-50%) scale(0);
  }
  #fj-news_contants .fj-news-item:hover::after {
    transform: translateY(-50%) scale(1);
  }
  /* アイコンの色を変更 */
  #fj-news_contants .fj-news-item:hover i::before {
    opacity: 0; /* 既存のアイコンを非表示 */
  }
  #fj-news_contants .fj-news-item:hover i::after {
    opacity: 1; /* 新しいアイコンを表示 */
  }
}