@charset "utf=8";

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

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

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

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

.news-link {
	transition: all .3s;
}

.news-link:hover {
	opacity: 0.7;
}

.news-link:hover img {
	transform: scale(1.1);
}

.news-link .text01 {
	text-shadow: none;
	line-height: 1.5;
}

.news-img-box {
	padding-bottom: 75.24%;
	position: relative;
	overflow: hidden;
}

.news-img-box img {
	position: absolute;
	max-width: 100%;
	width: auto;
	max-height: 100%;
	height: auto;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	object-fit: cover;
	transition: all .3s;
}

.news-cate {
	margin: 1rem 0 0;
	padding: 0.4rem 1rem 0.5rem;
	max-width: max-content;
	border: 0.1rem solid var(--white);
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.news-date {
	margin: 0.5rem 0 0;
}

.news-title {
	margin: 0.5rem 0 0;
}

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

.newsDtl {
    max-width: 120rem;
    width: 100%;
    margin: auto;
    background: #fff;
    border-top: solid 5px var(--light-black);
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    padding: 6rem 3%;
	color: var(--light-black);
	font-weight: 600;
}

.newsDtl > h2 {
    border-bottom: solid 1px #ccc;
    padding: 0 0 10px;
    margin: 2rem 0 0;
	font-size: 3.5rem;
}

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

.newsDtl > .cate {
    margin: 5rem 0 0;
}

.newsDtl > .cate > span {
    color: var(--primary);
}

.newsDtl > .date {
    font-size: 1.8rem;
	font-family: var(--font-family02);
}

.newsBtn {
    margin: 6rem auto 0;
}

.resultZero {
    text-align: center;
}

.newsBtn a:before {
    display: none;
}

.content p {
    letter-spacing: 0.05em;
    line-height: 2.25em;
}

.btn01 a::before {
    content: "";
    display: block;
    width: 4.8rem;
    height: 0.1rem;
    background: var(--white);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 90%;
    margin: auto;
    transition: all .3s;
}

.btn01 a:hover::before {
    width: 6.3rem;
}

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

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

.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;
	/* background: var(--white); */
	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;
}

.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(--primary);
	position: relative;
	transition: all .5s;
}

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

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

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

.pagination-page-color:hover {
	background: var(--primary);
	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) {

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

	.news {
		padding: 8rem 2.5rem 0;
	}

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

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

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

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

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

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

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


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

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



}


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