@charset "utf=8";

.news .btn01 a {
	text-align: center;
	padding: 1.8rem 1.5rem 2.3rem;
	color: var(--fifth);
	background: var(--secondary);
}

.news .btn01 a:hover {
	color: var(--fifth);
	background: var(--ninth);
}

.news .btn01 a::after {
	content: none;
}

/* ==========================================
お知らせ
========================================== */

.news-item:first-child .news-link {
	padding: 0 3% 1.5rem 0;
}

.news-link {
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
	flex-direction: column;
    padding: 2.6rem 3% 1.5rem 0;
    border-bottom: 1px solid;
	position: relative;
}

.news-link:hover .news-title {
	text-decoration: underline;
}

.news-link::after {
	content: "";
	display: block;
	width: 2.7rem;
	height: 0.7rem;
	background: url(../../../../uploads/arrow_blue.svg)center center / contain no-repeat;
	position: absolute;
	right: 0;
	bottom: 36%;
	margin: auto;
}

.news-flex {
	display: flex;
	align-items: center;
}

.news-date {
	margin: 0 2rem 0 0;
    font-size: 1.8rem;
    font-weight: 700;
	font-family: var(--font-family02);
    letter-spacing: 0.05em;
}

.news-cate {
    max-width: 15rem;
    min-width: 15rem;
    width: 100%;
    display: inline-block;
    text-align: center;
	font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 2% 0.4rem;
    margin: 0 0 0 2.4%;
    border-radius: 2rem;
    flex: 1;
}

.news-title {
	margin: 2rem 0 0;
    font-size: 1.8rem;
	font-weight: 600;
    letter-spacing: 0.05em;
}

.resultZero {
    text-align: center;
}

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

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

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

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

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

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

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

.category-area {
    max-width: 120rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 4rem auto 0;
    color: var(--primary);
}

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

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

.categoryListTtl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.8rem;
    font-weight: bold;
    border: solid 1px #ccc;
    padding: 0.5rem 1rem;
    background: #fff;
    cursor: pointer;
    transition: .3s;
}

.categoryListTtl:hover {
    opacity: .6;
}

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

.categoryList {
    background: #fff;
    border: solid 1px #eee;
    width: 100%;
    margin: auto;
    position: absolute;
    bottom: calc(100% + 3px);
    right: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

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

.categoryList > li:not(:last-child) {
    border-bottom: solid 1px #eee;
}

.categoryList > li > a {display: block;padding: 8px 10px;position: relative;}

.categoryList > li > a:hover {
    background: #eee;
}

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

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

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

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

.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);
} */

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

.wp-pagenavi {
	margin: 4rem 0 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(--primary);
	color: var(--primary);
}

.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 <= 1920px) {

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

}

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

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

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

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

}

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

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

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

	html {
		/* 10px */
		font-size: 0.97656vw;
	}

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

	.news {
		padding: 10rem 0;
	}

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

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

}

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

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

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

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

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

	.news-cate {
		font-size: 1.6rem;
	}

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

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

	.news {
		padding: 8rem 0;
	}

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

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

	.newsDtl > .content {
		font-size: 1.6rem;
	}


}

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

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

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

	html {
		/* 12px */
		font-size: 2.08333vw;
	}

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

	.newsDtl > .content {
		font-size: 1.4rem;
	}

}

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

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

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

	html {
		/* 14px */
		font-size: 2.43055vw;
	}

}

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