@charset "UTF-8";
.section-news {
  margin-bottom: 40px;
}

.news-item {
background-color:white;
margin-top: 24px;

}

.news-item .text{
  padding-top: 15px;  
}

.news-item a {
  display: block;
  text-decoration: none;
}

.news-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


 .text h3 {
  color: #424242;
  font-weight: 500;
  margin-bottom: 0;
}


.news-item a {
  display: flex;
  /* align-items: center; */
}

.news-item .image {
  border-radius: 16px;
  overflow: hidden;
  margin-right: 12px;
  width: calc(120 / 288 * 100%);
  flex-shrink: 0;
}

.news-item .text h3 {
  font-size: 18px;
  margin-top: 12px;
}

@media (min-width: 992px) {
  .section-news {
    margin-bottom: 100px;
  }

  .news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }


  .news-item .memo  
   {
    font-size: 16px;
  }


  .news-item{
    margin-top: 0;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
  }

  .news-itema {
    align-items: stretch;
  }

  .news-item.image {
    border-radius: 0;
    margin-right: 0;
    width: calc(282 / 589 * 100%);
  }

  .news-item.text {
    padding: 24px;
  }

  .news-item.text h3 {
  font-size: 16px;
    margin-top: 20px;
  }
}

.news-card{
background:white;
margin-bottom: 15px;
}

.text {
  position: relative;
}

/* .text .subtitle :before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
  width: 100%;
  height: 1px;
  display: block;
  background: #000000;
} */


.subtitle:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px; /* Adjust the height as needed */
  background-color: #000; /* Adjust the color as needed */
  margin-bottom: 10px; /* Adjust the margin as needed */
}

.text .subtitle {
  position: relative;
  font-size: 16px;  
  line-height: 20px;
  /* z-index: 0; */
}

.text .subtitle time {
  color: #757575;
}

.text .subtitle ::after {
  content: '|';
  color: #bdbdbd;
  margin: 0 12px 0 16px;
}

 .text .subtitle span {
  color: #d61b26;
  font-weight: 500;
}

.text .memo {
  color: black;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.text a:hover{
text-decoration: none;

}