@charset "utf=8";

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

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

.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(--secondary);
	color: var(--white);
}

.pagination-page-color {
	border-color: var(--primary);
	color: var(--primary);
}

.pagination-page-color:hover {
	background: var(--secondary);
	color: var(--white);
}

.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(--primary);
	color: var(--primary);
}

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


/*----*/

.list {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.list::-webkit-scrollbar {
	display: none;
}

.news-wrap {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
	padding: 15rem 0 22rem;
}

.newsAr {
	max-width: 125rem;
}

/* ==========================================
一覧
========================================== */

.news {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
	padding: 15rem 1.5rem;
}

.news-container {
	max-width: 122rem;
	width: 100%;
	margin: 0 auto;
}

.news-section .news-row:first-child {
	margin-top: 0;
}

.news-section .news-row {
	margin-top: 3rem;
}

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

.news-link:hover .news-title {
	opacity: .5;
}

.news-link-border {
	border-bottom: 1px solid #4D4D4D;
}

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

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

.news-section .category {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.45em;
	padding: .3rem 2.5rem .3rem;
	text-align: center;
	word-break: keep-all;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--base-font-color);
	max-width: max-content;
	border: 1px solid rgb(255 255 255 / 40%);
	border-radius: 1.5rem;
}

.news-title {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.45em;
	letter-spacing: 0.05em;
	transition: all .3s;
}

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

.newsDtl {
	max-width: 120rem;
	width: 100%;
	margin: auto;
	background: var(--base-font-color);
	padding: 4rem 3rem;
	font-weight: 600;
	color: var(--black);
	border-radius: 2.5rem;
}

.newsDtl>h2 {
	border-bottom: solid 1px #ccc;
	padding: 0 0 10px;
	margin: 2rem 0 0;
	font-size: 4rem;
	font-weight: 400;
	line-height: 1.5em;
}

.newsDtl>.content {
	margin: 2rem 0 0;
	font-size: 1.8rem;
}

.newsDtl>.cate {
	margin: 5rem 0 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 1.8rem;
}

.newsDtl>.cate>span {
	color: var(--white);
	background-color: var(--secondary);
	padding: 0.3rem 2rem;
	border-radius: 1.5rem;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.45em;
}

.newsDtl>.date {
	font-size: 1.8rem;
	line-height: 1.28em;
	letter-spacing: -0.02em;
	font-weight: 400;
	font-family: var(--fontB);
}

.newsBtn {
	margin: 4rem auto 0;
	transition: all .5s;
}

.newsBtn a {
	flex-direction: row-reverse;
	font-family: var(--fontA);
	font-weight: 400;
}

.newsBtn a::after {
	transform: scale(-1, 1);
}

.resultZero {
	text-align: center;
}

.content {
	letter-spacing: 0.05em;
	line-height: 2em;
	font-weight: 400;
}

/*-----------------------------------------------------------
カテゴリ
-----------------------------------------------------------*/

.category-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
	margin: 6rem auto 0;
	font-size: max(1.8rem, 14px);
}

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

.category-area .box:nth-child(n+2) {
	margin: 0 0 0 2%;
}

.category-area .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: solid 1px var(--white);
	padding: .4rem 1rem;
	font-size: 1.6rem;
	cursor: pointer;
	transition: all .5s;
}

.category-area .title:hover {
	opacity: .6;
}

.category-area .list.active:after {
	transform: scale(1, -1);
}

.category-area .list {
	/* background: var(--white); */
	border: solid 1px var(--white);
	width: 100%;
	margin: auto;
	position: absolute;
	bottom: calc(100% + .3rem);
	right: 0;
	left: 0;
	font-size: 1.6rem;
	opacity: 0;
	visibility: hidden;
	transition: all .5s;
	z-index: 3;
	max-height: 30vh;
	overflow-y: scroll;
}

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

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

.category-area .list>li>a {
	display: block;
	padding: .4rem 1rem;
	background: var(--secondary);
	position: relative;
	transition: all .5s;
	line-height: 1.45em;
}

.category-area .list>li>a:hover {
	opacity: .6;
}

.category-area .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;
}

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

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

.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;
	padding-bottom: 0.3rem;
}

.pagination-current-color {
	background: var(--secondary);
	color: var(--white);
}

.pagination-page-color {
	border-color: var(--white);
	color: var(--white);
}

.pagination-page-color:hover {
	background: var(--secondary);
	color: var(--white);
}

.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(--primary);
	color: var(--primary);
}

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

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

	.wrapper {
		padding: 6rem 0 18rem;
	}

}

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


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

	/* ==========================================
一覧
========================================== */

	.news {
		padding: 8rem 1.5rem;
	}

	.news-section {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.news-link {
		flex-direction: column;
		padding: 1.5rem 4rem 1.5rem 1rem;
		align-items: flex-start;
	}

	.newsDtl>h2 {
		font-size: 3rem;
	}

	.newsDtl {
		padding: 4rem 1.5rem;
	}

	.wrapper {
		padding: 6rem 0 16rem;
	}

	.pagination-page {
		width: 3.5rem;
		height: 3.5rem;
	}

}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (width <=576px) {

	/* ==========================================
	詳細
	========================================== */

	.newsDtl>h2 {
		font-size: 2.5rem;
	}

	.category-area {
		margin: 5rem auto 0;
		justify-content: center;
	}

}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (width <=414px) {

	/*===========================================================
===========================================================*/

}


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