/* news.css */
@charset "UTF-8";

/* ニュースページ全体 */
.news-page {
  max-width: 1200px;
  margin: 195px auto;
  padding: 0 20px;
  font-family: "Shippori Mincho B1", sans-serif;
  overflow: hidden;
}

/* タイトル・あしらい */
.news-page-inner {
  text-align: center;
  margin-bottom: 40px;
}
.news{
	margin-bottom: 40px;
}

.news-page-inner .title {
  font-size: 1.75rem;
  letter-spacing: 3px;
  font-weight: bold;
}

.news-page-inner img {
  margin: 15px 0;
}

.news-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

/* ニュースカード */
.news-item {
  background: #fff;
  padding: 15px 20px;
  border-bottom: solid 1px #c0c0c0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 15px;
}

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

.news-item a:hover .news-title {
  color: #c0c0c0;
}

.news-date {
  margin-bottom: 5px;
  font-size: 0.75rem;
  color: #666;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

.news-title {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
}

@media(max-width: 480px){
  .news-list {
    display: block;
  }
}


/* レスポンシブ対応 */
@media(max-width: 320px){
  .news-list{
    display: block;
  }
}
