@charset "utf-8";
.news_ttl {
  padding: 30px 15px 10px;
  border-bottom: 1px solid #ccc;
  font-size: 18px;
  font-weight: bold;
}
.news-category {
  width: fit-content;
  padding: 5px 10px;
  background: #fffee5;
  border: 1px solid;
  border-radius: 3px;
  color: #ffa40e;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.news {
  padding-bottom: 10px;
  line-height: 1.5;
}
.news-item {
  position: relative;
  padding: 20px 15px;
  border-top: 1px solid #ccc;
}
.news-item:first-child {
  border: none;
}
.news_inner {
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
}
.news-details .news_inner {
  margin-top: 15px;
}
.news_img {
  position: relative;
  aspect-ratio: 3/4;
  width: 90px;
}
.news_img .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_img .rank_icon {
  position: absolute;
  bottom: 5px;
  left: 5px;
}
.news-item_contents {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-right: 20px;
}
.news-item_date {
  color: #fe6cb2;
  font-size: 12px;
  font-weight: bold;
}
.news-item_txt {
  font-size: 14px;
}
.news-item::before {
  transform: rotate(45deg);
  position: absolute;
  inset-block: 0;
  right: 15px;
  width: 12px;
  height: 12px;
  margin-block: auto;
  border-top: 1px solid #373737;
  border-right: 1px solid #373737;
  content: "";
}

/*===================*/
/*** newsinfo.html ***/
/*===================*/
.news-details {
  margin-top: 15px;
  padding-bottom: 30px;
}
.news-details_inner {
  padding-inline: 15px;
}
.news-details_data {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
}
.news-details_date {
  font-size: 12px;
  font-weight: bold;
}
.news-details .news-category {
  margin-left: auto;
}
.news-details_heading {
  flex: 1;
  color: #fe6cb2;
  font-size: 14px;
  font-weight: bold;
}
.news-details_heading a {
  color: inherit;
}
.news-details_txt {
  margin-top: 15px;
  font-size: 14px;
}
