@charset "utf=8";

.news-link {
	position: relative;
	display: block;
	padding: 2rem 5rem 2rem 1rem;
	transition: all .3s;
	z-index: 2;
}

.news-link::before {
	content: "";
	position: absolute;
	top: 0;
	right: 1rem;
	bottom: 0;
	z-index: 3;
	width: 1.8rem;
	height: 2.1rem;
	margin: auto 0;
	background: url(../../../../uploads/arrow01.svg) no-repeat center /contain;
}

.news-link::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: var(--white);
	opacity: 0;
	transition: all .3s;
}

.news-link:hover:after {
	opacity: .3;
}

.news-link-border {
	border-bottom: 1px solid var(--fifth);
}

.news-category-box {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.news-date {
	font-family: var(--fontB);
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1.45;
	letter-spacing: 0.05em;
}

.news-section .category {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.45;
	border: 1px solid var(--fifth);
	padding: .25rem 2rem .3rem;
	text-align: center;
	word-break: keep-all;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-title {
	flex: 1;
	margin: 1rem 0 0;
	font-size: 1.8rem;
	line-height: 1.45;
	letter-spacing: 0.05em;
}

/* ==========================================
下層
========================================== */

.newsFl {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	gap: 3rem;
}

.newsSideBx {
	width: 25%;
	max-width: 25rem;
}

.newsSideBx .title {
	margin: 4rem 0 0;
	padding: 0 0 1rem 0;
	line-height: 1.45;
	color: var(--primary);
	font-size: 1.8rem;
	border-bottom: 1px solid var(--fifth);
}

.newsSideBx .box:first-of-type .title {
	margin: 0;
}

.newsSideBx .list {
	margin: .5rem 0 0;
	font-size: 1.6rem;
	line-height: 1.45;
}

.newsSideBx .list li{
	margin: 1rem 0 0;
}

.newsSideBx .list li a:hover {
	text-decoration: underline;
}

.newsSideBx .list:first-of-type {
	margin: 2rem 0 0;
}

.news-section {
	flex: 1;
	max-width: 100rem;
}

.newsBx .news-category-box {
	display: flex;
	align-items: center;
	gap: 2rem;
	width: 30%;
	max-width: none;
}

.newsBx .newsCate {
	display: inline-block;
	width: 17rem;
	margin: 0 2rem 0 0;
	padding: .2rem 1rem;
	font-size: max(1.5rem, 14px);
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.42em;
	color: var(--white);
	background: var(--primary);
	text-align: center;
	word-break: keep-all;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ==========================================
カテゴリ
========================================== */

.categoryArea {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
	max-width: 103rem;
	margin: 6rem auto 0;
	padding: 0 1.5rem;
	font-size: max(1.6rem, 14px);
}

.categoryArea .box {
	max-width: 16rem;
	width: 49%;
	position: relative;
}

.categoryArea .box:nth-child(n+2) {
	margin: 0 0 0 1.5rem;
}

.categoryArea .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: solid 1px var(--black);
	padding: .2rem 1rem;
	background: var(--white);
	cursor: pointer;
	transition: all .5s;
}

.categoryArea .title:hover {
	opacity: .6;
}

.categoryArea .title.active:after {
	transform: scale(1, -1);
}

.categoryArea .list {
	background: var(--white);
	border: solid 1px var(--black);
	width: 100%;
	margin: auto;
	position: absolute;
	bottom: calc(100% + .3rem);
	right: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .5s;
}

.active+.list {
	opacity: 1;
	visibility: visible;
}

.categoryArea .list>li:not(:last-child) {
	border-bottom: solid 1px var(--black);
}

.categoryArea .list>li>a {
	display: block;
	padding: .4rem 1rem;
	position: relative;
	transition: all .5s;
}

.categoryArea .list>li>a:hover {
	opacity: .6;
}

.categoryArea .title:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	content: '\f107';
	display: block;
	font-size: 1.2rem;
	padding-left: 1rem;
	transition: all .5s;
}

/*-----------------------------------------------------------
詳細
-----------------------------------------------------------*/


.newsDtlDate {
	font-size: max(1.6rem, 14px);
	color: var(--primary);
}

.newsDtlName {
	font-size: 2.8rem;
	line-height: 1.4;
	padding: 1rem 0;
	border-bottom: 1px solid var(--black);
}

.newsDtlTxt {
	margin: 2rem 0 0;
}

.newsDtlTxt p {
	font-size: 1.8rem;
}

.newsDtlCate {
	margin: 4rem 0 0;
	font-size: max(1.6rem, 14px);
}

.newsDtlCate span {
	font-size: max(1.6rem, 14px);
	color: var(--primary);
}

.newsBtn.btn01 {
	margin: 3rem auto 0;
}

.newsBtn.btn01::after {
	left: 2rem;
	right: 0;
	transform: scale(-1, 1);
}

.newsBtn.btn01:hover::after {
	left: 0;
}

.newsBtn {
	position: relative;
	width: 100%;
	max-width: 31.6rem;
	height: 6.4rem;
	font-size: 2rem;
	font-family: var(--fontD);
	border-radius: 100vmax;
	box-shadow: 0 .3rem .6rem rgba(0, 0, 0, 0.16);
	transition: all .3s;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: .1em;
	line-height: 1.45em;
	font-weight: 600;
	background: var(--primary);
	color: var(--white);
}

.newsBtn:hover {
	filter: brightness(1.15);
}

.resultsZero {
	margin: 6rem auto 0;
	text-align: center;
}

.newsDtl .backBtn{
	margin: 6rem auto 0;
}

/* ==========================================
ページャー
========================================== */

.wp-pagenavi {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin: 6rem 0 0;
}

.pagination-page {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	border-style: solid;
	border-width: 1px;
	border-radius: 50%;
	text-align: center;
}

.pagination-current-color {
	background: var(--black);
	color: var(--quaternary);
}

.pagination-page-color {
	border-color: var(--fifth);
	color: var(--black);
	transition: all .3s;
}

.pagination-page-color:hover {
	background: var(--black);
	color: var(--quaternary);
}

.pagination-first,
.pagination-last {
	font-size: 1.2rem;
	border-style: solid;
	border-width: 1px;
	padding: 0.4rem 0.5rem 0.2rem;
}

.pagination-first-color,
.pagination-last-color {
	border-color: var(--fifth);
	color: var(--black);
}

.pagination-first-color:hover,
.pagination-last-color:hover {
	background: var(--black);
	color: var(--white);
}




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=768px) {

	.news-date {
		font-size: 1.4rem;
	}

	.news-section .category {
		font-size: 1.2rem;
	}

	.news-title {
		font-size: 1.5rem;
	}

	.news-link {
		flex-direction: column;
		padding: 2rem 0;
	}

	.news-link::before {
		right: 0;
	}

	.newsBx .news-category-box {
		width: 100%;
		gap: 1.5rem;
	}

	.news-link p {
		font-size: 1.5rem;
	}

	.categoryArea {
		justify-content: center;
	}

	/* 下層 */

	.newsFl {
		flex-direction: column;
		gap: 5rem;
	}

	.newsSideBx {
		width: 100%;
		max-width: none;
	}

	.news-section {
		width: 100%;
	}

	.newsSideBx .title {
		margin: 2rem 0 0;
		font-size: 1.6rem;
	}

	.newsSideBx .list {
		font-size: 1.5rem;
	}

	.newsSideBx .list:first-of-type {
		margin: 1rem 0 0;
	}

	/*-----------------------------------------------------------
詳細
-----------------------------------------------------------*/
	.newsDtlTxt p {
		font-size: 1.5rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */