@charset "utf-8";


/*=== お知らせsection===*/


.section-title span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #E69E7C;
  margin-top: 10px;
}

/* リスト */
.news-list {
  max-width: 750px;    
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

/* 各項目 */
.news-list li {
  border-bottom: 1px solid #e5e8ed;  
}

.news-item {
  display: flex;
  gap: 10px;    
  padding: 30px 40px;
  flex-direction: column;  
  color: #333;
  transition: all 0.3s ease;
  text-decoration: none;   /* ← これを追加 */      
}
 
/* ホバー */
.news-item:hover {
  opacity: 0.7;
}

/* 日付 */
.news-date {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #ED7D31;
    padding: 10px;
}
/* コンテンツ */
.news-content {
  flex: 1;
}

.news-title {
  font-size: 1.1rem;  
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* ← 変更 */
  gap: 8px;                     /* タイトルとPDFの間隔 */
}
.news-title-text{
  display: inline-block;
}
.badge-pdf{
  background: #00b3c4;   /* 色は変更OK */
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.news-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.6;
  white-space: pre-line;     
}
/*一覧ボタンエリア */

.news-more {
  text-align: center;
  margin-top: 60px;
}

/* ボタン本体 */
.news-btn {
  display: inline-block;
  padding: 18px 60px;
  border: 1px solid #E69E7C;
  color: #E69E7C;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  position: relative;
}

/* ホバー */
.news-btn:hover {
  background: #E69E7C;
  color: #fff;
}

/* ▶マーク */
.news-btn span {
  margin-right: 10px;
  font-size: 0.8rem;
}
/*=== お知らせsection終了===*/


/* =========================
パソコン表示（768px以上）
========================= */
@media (min-width: 768px) {
/*新着情報　パソコン   */

 .news-item {
    flex-direction: row;   /* ← これが必要！ */
    gap: 60px;
    align-items: center;   /* おすすめ */
  }

  .news-date {
    min-width: 120px;  
  }
 .news-desc {
  white-space: normal;    
}        
/*新着情報　パソコン  終了   */
}


