/* === News Section Wrapper === */
.oshirase-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 4rem auto;
  gap: 2rem;
  padding: 0 1rem;
}

/* === Left: List of News Titles === */
.news-list {
  flex: 1 1 260px;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.news-list h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e0c29a;
  padding-bottom: 0.5rem;
  font-family: 'Zen Old Mincho', serif;
  color: #9f7b51;
}

.news-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list ul li {
  margin-bottom: 1rem;
}

.news-list ul li a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  display: block;
  transition: 0.2s ease;
}

.news-list ul li a:hover {
  color: #c8a873;
  text-decoration: underline;
}

/* === Right: News Content === */
.news-content {
  flex: 2 1 600px;
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Zen Old Mincho', serif;
  
}

.news-content h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #9f7b51;
}

.news-content time {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #999;
}

.news-content p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #444;
}

/* === Responsive Layout === */
@media (max-width: 768px) {
  .oshirase-wrapper {
    flex-direction: column;
  }

  .news-list,
  .news-content {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .oshirase-wrapper {
    flex-direction: column;
  }

  .news-content {
    order: 1;
     padding: 2rem;
  }

  .news-list {
    order: 2;
    margin-top: 2rem;
  }
  .oshirase-wrapper{ 
      margin: 1rem auto;
  }
}
