@charset "utf=8";

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

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

.news-container {
	margin: 0 auto;
	max-width: 122rem;
	width: 100%;
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: space-between;
	gap: 4rem;
}

.news-main {
	width: 70%;
}

.news-side {
	width: 20%;
}

.lower-cover-bg-pc {
	display: block;
}

.lower-cover-bg-sp {
	display: none;
}

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

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

.news-link {
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
	flex-direction: column;
    padding: 2.6rem 5% 1.5rem 0;
	position: relative;
}

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

.news-link:hover::after {
    transform: translateX(0.6rem);
}

.news-link::before {
	content: "";
	display: block;
	width: 100%;
	height: 0.3rem;
	background: url(../../../../uploads/normal_border.svg);
    background-attachment: scroll !important;
	background-position: center top !important;
	background-size: 100% 100% !important;
	background-repeat: no-repeat !important;
	position: absolute;
	right: 0;
    left: 0;
	bottom: 0;
	margin: auto;
}

.news-link::after {
	content: "";
	display: block;
	width: 4rem;
	height: 1.7rem;
	background: url(../../../../uploads/news_arrow.png)center center / contain no-repeat;
	position: absolute;
	right: 0;
	bottom: 36%;
	margin: auto;
    transition: all .3s;
}

.news-flex {
	display: flex;
	align-items: center;
	max-width: 100%;
	width: 100%;
}

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

.news-cate {
    width: 100%;
    max-width: max-content;
    min-width: 15rem;
    display: inline-block;
    text-align: center;
	font-size: 1.6rem;
    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 1rem 0.4rem;
    border-radius: 2rem;
}

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

.resultZero {
    text-align: center;
}

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

.category-box {
    margin: 5rem 0 0;
    /* border: 0.1rem solid var(--primary);
    background: var(--white); */
}

.category-box:first-child {
    margin: 0;
}

.category-title {
    /* background-color: var(--primary); */
    /* color: #ffffff; */
    margin: 0;
    padding: 1rem;
    font-weight: bold;
    font-size: 1.8rem;
	border-bottom: 0.1rem solid var(--bg-primary);
}

.accordion-list, 
.accordion-list ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.accordion-list a {
    display: block;
    padding: 0.6rem;
    color: var(--base-font-color);
    text-decoration: none;
    /* border-bottom: 0.1rem solid #ccc; */
    transition: background-color 0.3s;
    font-size: 1.5rem;
    transition: 0.3s
}

.accordion-list a:hover {
    opacity: 0.65;
}

.accordion-list li.has-child > a {
    position: relative;
    padding-right: 4rem;
    font-weight: 600;
}

.accordion-list li.has-child > a::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    width: 1rem;
    height: 0.2rem;
    background-color: var(--primary);
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.accordion-list li.has-child > a::before {
    content: '';
    position: absolute;
    right: 2rem;
    top: 50%;
    width: 0.2rem;
    height: 1rem;
    background-color: var(--primary);
    transform: translate(50%, -50%);
    transition: opacity 0.3s;
}

.accordion-list li.has-child.is-open > a::before {
    opacity: 0;
}

.accordion-list ul.children {
    /* background-color: #dceef2; */
    border-left: 0.5rem solid var(--primary);
}

.accordion-list ul.children li a {
    padding-left: 1.5rem;
    font-size: 1.4rem;
    font-weight: normal;
    /* border-bottom: 0.1rem solid #fff; */
}

.accordion-list li:last-child > a {
    border-bottom: none;
}

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

.news-detail {
    background: var(--white);
    border-top: solid 0.5rem var(--primary);
    box-shadow: 0 0.2rem 0.5rem rgb(0 0 0 / 16%);
    padding: 6rem 5rem;
}

.news-detail-title {
    border-bottom: solid 0.1rem var(--secondary);
    padding: 0 0 1.5rem;
    margin: 1rem 0 0;
}

.news-detail-category {
	word-break: unset;
    overflow: unset;
    text-overflow: unset;
    white-space: unset;
}

.news-detail-img {
    text-align: center;
    margin: 3rem 0 0;
}

.news-detail-content {
    margin: 3rem 0 0;
}

.news-detail-btn-box {
    text-align: center;
    margin: 6rem auto 0;
}

/* .news-detail-btn > a {
    flex-direction: row-reverse;
}

.news-detail-btn > a:after {
    transform: scale(-1,1);
    margin: 0 3rem 0 0;
}

.news-detail-btn > a:hover:after {
    transform: scale(-1, 1) translateX(6px);
} */

.news-detail-btn {
	margin: 0 auto;
}

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

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

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

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



}

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

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

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



}

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

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

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


}

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

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

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

	.news {
		padding: 8rem 1.5rem;
	}

	.news-container {
		flex-direction: column;
	}

	.news-main {
		width: 100%;
	}

	.news-side {
		width: 100%;
	}

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

	.category-box {
		margin: 3rem 0 0;
	}

	.category-title {
		font-size: 1.6rem;
	}
		
	.accordion-list a {
		font-size: 1.4rem;
	}

	.accordion-list ul.children {
		border-left: 0.3rem solid var(--primary);
	}

	.accordion-list ul.children li a {
		font-size: 1.3rem;
	}
    
	/* ==========================================
	詳細
	========================================== */

	.news-detail {
	    border-top: solid 0.3rem var(--primary);
	    box-shadow: 0 0.2rem 0.5rem rgb(0 0 0 / 16%);
	    padding: 4rem 3rem;
	}
	
	.news-detail-title {
	    padding: 0 0 1rem;
	    margin: 1.5rem 0 0;
	}
	
	.news-detail-category {
	    font-size: 1.3rem;
	    padding: 0.2rem 1.5rem 0.3rem;
	    margin: 1rem 0 0 auto;
	}
	
	.news-detail-img {
	    margin: 2rem 0 0;
	}
	
	.news-detail-content {
	    margin: 2rem 0 0;
	}
	
	.news-detail-btn-box {
	    margin: 4rem auto 0;
	}
}

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

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

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

	
	.lower-cover-bg-pc {
		display: none;
	}

	.lower-cover-bg-sp {
		display: block;
	}

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

	.news-detail {
	    padding: 3rem 1.5rem;
	}
    
}

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

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

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



}

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