.news-container {
	padding-top: 20px;
	padding-bottom: 50px;
	position: relative;
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 35px;
	row-gap: 5px;
	z-index: 100;

	font-family: "source-han-sans-japanese", sans-serif;
	font-style: normal;
	border-top: 1px solid #fff;
}

@media screen and (min-width:320px) and (max-width:1050px) {
	.news-container {
		grid-template-columns: repeat(2, 1fr);
		/* 📱 スマホ時は2カラム */
		gap: 25px;
		row-gap: 5px;
		/* スペースを少し縮める */
	}
}

.news-meta {
	display: flex;
	align-items: center;
	/* 垂直方向の中央揃え */
	gap: 10px;
	/* dateとtagsの間隔を調整 */
	margin: 5px 0;
}

.news-item {
	padding: 0px 0 15px 0;
}

.news-item img {
	width: 100%;
	height: auto;
	border: 1px solid #666;
	margin-bottom: 5px;
}

.news-date {
	font-size: 14px;
	color: #fff;
	font-weight: 600;
}

.news-title {
	font-size: 1.05em;
	color: #fff;
	font-weight: 400;
	transition: color 0.3s ease-in-out;
text-align: left;
	font-weight: 500;
	line-height: 1.4em;

}

.news-tag {
	background-color: #FF3300;
	/* タグの背景色 */
	color: black;
	/* 文字色 */
	font-size: 10px;
	font-weight: 800;
	padding: 1px 8px;
	/* 内側の余白 */

	display: inline-block;
	white-space: nowrap;
	/* テキストの折り返し防止 */
}

.news-title:hover {
	color: #FF3300;
	/* ホバー時に赤へ */
}

.news-tags {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.news-tag {
	background-color: #FF3300;
	/* タグの背景色 */
	color: black;
	/* 文字色 */
	font-size: 10px;
	font-weight: 800;
	padding: 1px 8px;
	/* 内側の余白 */

	display: inline-block;
	white-space: nowrap;
	/* テキストの折り返し防止 */
}

/* サムネイルのホバー */
.news-link img {
	transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	/* フワッと拡大 */
}

.news-link:hover img {

	opacity: 0.7;
	/* 少し薄くする */
}


#news {
  position: relative;
  margin-top: 5.7vw;
  padding-top:6vw;
  padding-bottom:100px;
	bottom: 0;
	background: rgb(255,51,0);
	background: linear-gradient(342deg, rgba(255,51,0, 0.8) 0%, rgba(255,51,0, 0) 61%);
  z-index: 150;
   border-top: solid 1px #FF3300;
}


.btn_moreinfo {
	position: relative;
	width: 25%;
	margin: 0 auto;
			    -webkit-filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, .8));
    filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, .8));
}
.newsdetail_index_tit {
   position: relative;
  width: 30%;
  margin: 0 auto;
  padding-top:8%;
  margin-bottom: 3%;
  -webkit-filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, .8));
  filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, .8));
  z-index: 100;

}

@media screen and (min-width:320px) and (max-width:1050px) {
  .news-title {
	font-size: 1.5rem;
	color: #fff;
	transition: color 0.3s ease-in-out;
	font-weight: 500!important;

}
	.newsdetail_index_tit {
   position: relative;
  width: 68%;
  margin: 0 auto;
  padding-top:18%;
  margin-bottom: 0%;
  -webkit-filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, .8));
  filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, .8));
  z-index: 100;

}
	#news {
  position: relative;
  margin-top: 0px;
  padding-top:0;
  padding-bottom:90px;
  z-index: 150;
   border-top: solid 1px #FF3300;
}

	.btn_moreinfo {
	position: relative;
	width: 70%;
	margin: 0 auto;
}
}


@media screen and (max-width: 1050px) {
  .news-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .news-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #666;
  }

  .news-link img {
    width: 40vw;
    height: auto;
    flex-shrink: 0;
    margin-bottom: 0;
    border: 1px solid #666;
  }

  .news-content {
    padding-left: 4vw;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
  }

  .news-date {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
  }

  .news-tag {
    background-color: #FF3300;
    color: black;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 8px;
    display: inline-block;
    white-space: nowrap;
  }

  .news-title {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
    text-align: left;
    transition: color 0.3s ease-in-out;
  }
}
.news-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

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