@charset "utf-8";
/*======================================
新着情報
========================================*/
/*****
一覧
*****/
.news_list{
	border-bottom: solid 1px var(--black_color);
}
.news_list a{
	text-decoration: none;
	color: var(--black_color);
	background-image: url(../../img/gray_arrow.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 1.2em auto;
}
.news_day{
	display: inline-block;
	font-size: clamp(1.4rem,2vw,2rem);
	padding: 0.5em 1em;
	border: solid 1px var(--black_color);
	border-radius: 2em;
}
.news_ttl{
	font-size: clamp(1.6rem,1.8vw,1.8rem);
	padding-top: 0.65em;
}

/*****
詳細ページ
*****/
#news_page{}
#news_page .page_header h1{
	font-size: clamp(2.4rem,3.8vw,3.8rem);
}

.detail_link{
	font-weight: bold;
	margin-top: 1.6em;
}
.detail_link a{
	color: #2a6ba8;
}
.detail_link a::before{
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: 0.5em;
	background-color: #2a6ba8;
	clip-path: polygon(0 0,100% 50%,0 100%);
}

.toback{
	width: 94%;
	max-width: 1000px;
	margin: 5em auto 0 auto;
}


/* ===========================================
	MediaQueries
=========================================== */
/* PC----------------------------- */
@media (min-width: 768px){
	/*****
	一覧
	*****/
	.news_list a{
		display: flex;
		align-items: flex-start;
		height: 100%;
		padding: 3em 2.5em 3em 1em;
	}
	.news_list a:hover{
		text-decoration: underline;
	}
	
	.news_day{
		flex-shrink: 0;
		margin-right: 2em;
	}
}

/* スマホ----------------------------- */
@media (max-width: 767px){
	/*****
	一覧
	*****/
	.news_list a{
		display: block;
		padding: 2em 2em 2em 1em;
	}
}