.p-news {
	padding-bottom: 16rem;
}

.p-news__list {
	display: grid;
	gap: 3.2rem;
	position: relative;
	z-index: 2;
}

.noresult {
	position: relative;
	z-index: 2;
}

.noresult .result-txt {
	margin-bottom: 4.8rem;
}

.noresult__txt {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 4rem;
	text-align: center;
}

.noresult__box {
	background-color: #fff;
	border-radius: 0.8rem;
	box-shadow: 0 0 0.8rem rgba(111, 74, 31, 0.04);
	padding: 2.4rem;
}

.noresult__ttl {
	border-bottom: 0.2rem solid var(--borderColor);
	color: var(--colorPrimary);
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 1.6rem;
	padding-bottom: 1.6rem;
}

.result-txt {
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 4rem;
	position: relative;
	text-align: center;
	z-index: 2;
}

.result-txt .num {
	color: var(--colorPrimary);
	font-size: 2em;
	font-weight: bold;
	line-height: 1;
	margin: 0 0.5rem;
	position: relative;
	top: 0.2rem;
}

.result-txt small {
	display: inline-block;
	font-size: 0.667em;
}

.news-box {
	background-color: #fff;
	border-radius: 0.8rem;
	box-shadow: 0 0 0.8rem rgba(111, 74, 31, 0.04);
	display: block;
	overflow: hidden;
	position: relative;
	padding: 2rem 2rem 8rem 2rem;
}

.news-box:hover::after {
	background-position: 0% 0;
}

.news-box::before {
	content: "";
	background: url("../images/common/icon_arrow_circle02.svg") no-repeat center/contain;
	height: 3rem;
	width: 3rem;
	position: absolute;
	z-index: 2;
}

.news-box::after {
	content: "";
	background: linear-gradient(45deg, #f08200 0%, #f04900 40%, #f08200 80%);
	background-size: 200% 100%;
	background-position: 100% 0;
	position: absolute;
	transition: 0.3s ease;
	z-index: 1;
}

.news-box__head {
	border-bottom: 0.2rem solid var(--borderColor);
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
}

.news-box__date {
	margin-bottom: 1.6rem;
}

.news-box__ttl {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	color: var(--colorPrimary);
	font-size: 1.8rem;
	font-weight: 500;
}

.news-box__txt {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.year_list {
	position: relative;
	z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
}
.year_list li a {
  position: relative;
  display: inline-block;
  padding: 0 0 0.4rem;
  font-size: 1.8rem;
  color: #727171;
}
.year_list li.active a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #727171;
}

.cate_list {
	position: relative;
	z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.5rem 0 5rem;
}
.cate_list li a {
  display: block;
  padding: 0.6rem 2.8rem;
	box-shadow: 0 0 0.8rem rgba(111, 74, 31, 0.04);
  background: #fff;
  border-radius: 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--colorPrimary);
}
.cate_list li.active a {
  background: var(--colorPrimary);
  color: #fff;
}

@media (min-width: 768px) {

.p-news {
	padding-bottom: 24rem;
}

.noresult__txt {
	font-size: 1.8rem;
}

.noresult__box {
	padding: 3.2rem 4rem;
}

.noresult__ttl {
	font-size: 2.4rem;
}

.news-box {
	padding: 3rem 15rem 3rem 4rem;
}

.news-box::before {
	height: 4rem;
	width: 4rem;
	top: 50%;
	right: 4rem;
	transform: translateY(-50%);
}

.news-box::after {
	right: 0;
	top: 0;
	bottom: 0;
	width: 11.7rem;
}

.news-box__ttl {
	font-size: 2.4rem;
}

.year_list {
	gap: 2rem 2.6rem;
}
.year_list li a {
	font-size: 2rem;
}

.cate_list {
	margin: 4rem 0 8rem;
}

}

@media (min-width: 1024px) {

.noresult__txt {
	font-size: 2.4rem;
	margin-bottom: 6.7rem;
}

.result-txt {
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 6.5rem;
}

}

@media (min-width: 1300px) {

.p-news.p-news--result {
	padding-top: 6.5rem;
}

.p-news.p-news--result .hline01 {
	top: 3rem;
}

}

@media (max-width: 767px) {

.news-box::before {
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
}

.news-box::after {
	height: 60px;
	left: 0;
	right: 0;
	bottom: 0;
}

}

