@charset "UTF-8";
/* CSS Document */

.pw-news{
	max-width: 900px;
}

.news-header{
	margin: 0 0 25px;
}
.news-header h1{
	font-size: 2.4rem;
	font-feature-settings: "palt" 1;
	line-height: 1.2;
	margin: 0 0 0.35em;
}
.news-meta{
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	gap: 0 0.7em;
}
.news-tag{
	border: 1px solid #999;
	font-size: 80%;
	line-height: 1;
	padding: 3px 8px;
	border-radius: 999px;
}

.btn_back-newslist a{
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1;
	display: block;
	border: 1px solid #888888;
	border-radius: 999px;
	text-align: center;
	width: fit-content;
	margin: 0 auto;
	position: relative;
	padding: 10px 30px 10px 45px;
	transition-duration: .2s;
}
.btn_back-newslist a:after{
	content: '\e5e1';
	font-family: 'Material Icons';
	height: 80%;
	aspect-ratio: 1 / 1;
	border-radius: 999px;
	position: absolute;
	top: 10%;
	left: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #A4A4A4;
	color: #FFF;
	transition-duration: .2s;
}
.btn_back-newslist a:hover{
	background: #FFF;
}
.btn_back-newslist a:hover:after{
	background: #585858;
}
.single-news-aside{
	padding: 30px 0;
}

/* Section Separator---------------------------------------------------------

　お知らせ一覧（archive-news.php）

----------------------------------------------------------------------------*/

.news-archive-header{
	margin: 30px 0 30px;
}

.news-archive-header h1{
	font-size: 2.8rem;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
}
.news-archive-header .eng-pagetitle{
	font-size: 1.1rem;
	text-align: center;
}
@media (min-width:768px){
	.news-archive-header h1{
		font-size: 3.4rem;
	}
}

/*--------------------------------------
リストの中身
--------------------------------------*/
.news-post-list{
	border-bottom: 1px solid #ccc;
}
.news-post-item{
	border-top: 1px solid #ccc;
	padding: 20px 10px;
}
.news-post-item time{
	font-size: 1.4rem;
}
.news-post-item h2{
	font-size: 1.5rem;
	line-height: 1.5;
}
.news-post-item h2:hover{
	text-decoration: underline;
}
@media (min-width:768px){
	.news-post-item{
		display: flex;
		line-height: 1.4;
	}
	.news-post-item time{
		width: 12em;
		font-size: 1.5rem;
	}
	.news-post-item h2{
		flex: 1;
	}
}


.news-archive-aside{
	padding: 30px 0;
}
.nav-links{
	width: fit-content;
	margin: 0 auto;
	display: flex;
	gap: 0 5px;
}
.page-numbers{
	font-size: 1.4rem;
	line-height: 1;
	border: 1px solid #888888;
	border-radius: 4px;
	display: block;
	padding: 10px;
	background: #FFF;
}
.page-numbers.current{
	background: #888888;
	color: #FFF;
}
a.page-numbers:hover{
	background: rgba(0,0,0,0.10);
}