/* ===============================
 News Section — 一覧（サムネ左・文字右）
=============================== */
@media screen and (min-width: 768px) {
}
.news-section {
 background-color: #000;
 color: #fff;
 padding: 100px 0 100px;
 text-align: center;
}
@media screen and (min-width: 768px) {
 .news-section {
  background-color: #000;
  color: #fff;
  padding: 150px 0 100px;
  text-align: center;
 }
}
.news-section .wrap-l {
 max-width: 1200px;
 margin: 0 auto;
}

.news-title {
 font-family: "Montserrat Alternates", sans-serif;
 font-weight: 700;
 font-size: 2.6rem;
 color: #d27a00;
 margin-bottom: 60px;
 text-align: center;
}

/* リスト */
.news-list {
 display: flex;
 flex-direction: column;
 gap: 48px;
}

/* アイテム — 横並び */
.news-item {
 display: flex;
 align-items: center;
 gap: 32px;
 border-top: 1px solid #333;
 padding-top: 36px;
 padding-bottom: 36px;
}

/* リンク全体をクリック可能に */
.news-item-link {
 display: flex;
 align-items: center;
 gap: 32px;
 width: 100%;
 text-decoration: none;
 color: inherit;
 flex-direction: column;
}
@media screen and (min-width: 768px) {
 .news-item-link {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  flex-direction: row;
 }
}
/* サムネイル（トリミング） */
.news-thumb.thumb-crop {
 width: 220px; /* 固定幅 */
 aspect-ratio: 16/9; /* 横長比率 */
 overflow: hidden;
 border-radius: 8px;
 background: #111;
 flex-shrink: 0;
 display: block;
}
.news-thumb.thumb-crop img {
 width: 100%;
 height: 100%;
 object-fit: cover; /* 中央トリミング */
 display: block;
}

/* テキスト側 */
.news-info {
 flex: 1;
 text-align: left;
 display: flex;
 flex-direction: column;
 gap: 6px;
}

/* 日付 */
.news-date {
 font-family: "Poppins", sans-serif;
 font-size: 0.85rem;
 color: #9f9f9f;
 margin: 0 0 4px 0;
}

/* タイトル */
.news-title-txt {
 font-family: "Noto Sans JP", sans-serif;
 font-size: 1.05rem;
 color: #ffffff;
 margin: 0;
 font-weight: 700;
 line-height: 1.6;
 letter-spacing: 0.02em;
}

/* 抜粋 */
.news-excerpt {
 font-family: "Noto Sans JP", sans-serif;
 font-size: 0.95rem;
 color: #bfbfbf;
 margin: 6px 0 0 0;
 line-height: 1.6;
}

/* 下部ボタン */
.news-btn {
 margin-top: 48px;
 text-align: center;
}
.news-more {
 display: inline-block;
 background-color: #d27a00;
 color: #000;
 padding: 12px 44px;
 border-radius: 8px;
 text-decoration: none;
 font-weight: 700;
}
.news-more:hover {
 background-color: #f7a800;
}

/* 最後の区切り線を下にもつける */
.news-list > .news-item:last-child {
 border-bottom: 1px solid #333;
}

/* スマホ対応：縦並び */
@media screen and (max-width: 767px) {
 .news-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 24px;
 }
 .news-thumb.thumb-crop {
  width: 100%;
  aspect-ratio: 16/9;
 }
 .news-title {
  font-size: 2rem;
  margin-bottom: 40px;
 }
 .news-info {
  gap: 4px;
 }
 .news-title-txt {
  font-size: 1rem;
 }
 .news-excerpt {
  font-size: 0.95rem;
 }
 .news-more {
  padding: 10px 36px;
 }
}

/* ===============================
 News Single（詳細ページ）
=============================== */
.news-single {
 text-align: left;
}

.news-single-thumb {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto 40px;
 border-radius: 8px;
 overflow: hidden;
}

.news-single-thumb img {
 width: 100%;
 height: auto;
 display: block;
 object-fit: contain; /* ← トリミングせず全体を見せる */
}

.news-single-header {
 border-bottom: 1px solid #333;
 padding-bottom: 20px;
 margin-bottom: 40px;
}

.news-single-header .news-date {
 font-family: "Poppins", sans-serif;
 font-size: 0.9rem;
 color: #aaa;
 margin-bottom: 8px;
}

.news-single-header .news-text {
 font-family: "Noto Sans JP", sans-serif;
 font-size: 1.5rem;
 color: #fff;
 line-height: 1.6;
}

.news-content {
 font-family: "Noto Sans JP", sans-serif;
 font-size: 1rem;
 line-height: 1.9;
 color: #ddd;
 margin-bottom: 60px;
}

.news-content img {
 max-width: 100%;
 height: auto;
 margin: 30px 0;
 border-radius: 8px;
}

.news-btn {
 text-align: center;
 margin-top: 40px;
}

.news-more {
 display: inline-block;
 background-color: #d27a00;
 color: #000;
 padding: 14px 80px;
 border-radius: 8px;
 font-weight: bold;
 font-size: 1.1rem;
 text-decoration: none;
 transition: background-color 0.3s ease;
}

.news-more:hover {
 background-color: #f7a800;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
 .news-single-thumb {
  margin-bottom: 30px;
 }

 .news-single-header .news-text {
  font-size: 1.2rem;
 }

 .news-more {
  padding: 12px 50px;
  font-size: 0.95rem;
 }
}
