@charset "UTF-8";
/* Newsセクション全体 */
.news-container {
  background: rgba(255, 217, 121, 0.4); /* FFD979 40% */
  padding: 80px 40px;
}

/* 中央幅 */
.front-news-container {
  max-width: 960px;
  margin: 0 auto;
}

/* セクションタイトル */
.news-title {
  background: #005C8B;
  color: #fff;
  font-size: clamp(16px, 3vw, 48px);
  font-weight: bold;
  text-align: center;
  padding: 12px 40px;
  margin: 0 auto 60px;
  width: clamp(160px, 30vw, 500px);
}

/* 各投稿ブロック */
.news-item {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}

/* クリック領域 */
.news-page-article {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

/* 行全体 */
.news-row {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: transform 0.3s ease;
  padding: 16px 0;
}

/* ホバーで浮かせる */
.news-page-article:hover .news-row {
  transform: translateY(-6px);
}

/* 日付 */
.news-date {
  color: #3A3A3A;
  min-width: 110px;
  font-size: clamp(12px, 2vw, 16px);
}

/* タイトル */
.news-ttl {
  color: #000;
  font-size: clamp(14px, 2.2vw, 18px);
}

/* Read More ボタン */
.news-readmore {
  margin-top: 48px;
  text-align: center;
}

/* Read More ボタン 通常状態 */
.news-readmore a {
  display: inline-block;
  background: #DA7400;
  color: #fff;
  text-decoration: none;
  padding: 0.8em 2em;
  border-radius: 100px;
  font-size: clamp(16px, 2vw, 28px);
  font-weight: bold;
  transition: 0.3s;
  border: 2px solid #DA7400;
}

.news-readmore a:hover {
  background: #fff;
  color: #DA7400;
  opacity: 1;
}

@media (max-width: 1024px) {
  .news-title {
    font-size: clamp(16px, 3vw, 48px);
    width: clamp(160px, 50vw, 330px);
  }
}
@media (max-width: 500px) {
  .news-container {
    padding: 40px 20px;
  }
  .news-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .news-title {
    margin-bottom: 15px;
  }
  .news-readmore a {
    width: 100%;
    text-align: center;
  }
  .news-item {
    padding-bottom: 0;
  }
}
@media (max-width: 400px) {
  .news-title {
    font-size: clamp(16px, 4vw, 48px);
    width: clamp(160px, 60vw, 500px);
    margin: 0 auto 10px;
  }
}/*# sourceMappingURL=news.css.map */