@charset "utf-8";
@import url("root.css");

/***************************************
------------- news -------------
***************************************/
#top .page_link li a[href*="news/"] {
	color: #333 !important;
	padding-bottom: .25em;
	border-bottom: 1px dotted #333;
	span { color:inherit; }
}



#news dl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto 1em;
	padding: 0 0 1em;
	border-bottom: 2px dotted var(--base-color01);
}
#news dl:last-of-type {
	margin-bottom: 0;
}
#news dt{
	width: clamp(115px,12%,140px);
	flex-shrink: 0;
	text-align: left;
	display: flex;
	align-items: center;
}
#news dt::before {
	content: "";
	display: block;
	width: .8em;
	height: auto;
	aspect-ratio: 1/1;
	background: url(../img/cal.svg) no-repeat center center / contain;
	margin-right: .5em;
	filter: invert(62%) sepia(34%) saturate(292%) hue-rotate(146deg) brightness(93%) contrast(88%);
}
#news dd {
	width: calc(100% - clamp(115px,12%,140px));
	text-align: left;
}
#news dd a{transition: color .25s ease;}
#news dd a:hover{color: var(--base-color01);}

@media (max-width: 768px) {
	#news dt,#news dd { width: 100%;}
}


/***************************************
------------- detail -------------
***************************************/

#news_detail .data {
	color: var(--base-color01);
	text-align: left;
	display: flex;
	align-items: center;
}
#news_detail .data::before {
	content: "";
	display: block;
	width: .8em;
	height: auto;
	aspect-ratio: 1/1;
	background: url(../img/cal.svg) no-repeat center center / contain;
	margin-right: .5em;
	filter: invert(62%) sepia(34%) saturate(292%) hue-rotate(146deg) brightness(93%) contrast(88%);
}
#news_detail .news_ttl {
	font-size: 1.5rem;
	font-weight: 400;
	font-style: normal;
	text-align: left;
	line-height: 1.2;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--base-color01);
	margin-bottom: 2rem;
	color: var(--base-color02);
}
#news_detail .news_img_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: min(5vh, 50px) min(4%, 50px);
	margin-bottom: min(3vw,30px);
}
#news_detail .news_img_wrap a {
	display: block;
	width: calc((100% - min(4%, 50px)) / 2);
	aspect-ratio: 4/3;
	object-fit: cover;
	img {
		width: 100%;
		aspect-ratio: 4/3;
		object-fit: cover;
	}
}
#news_detail .txt_box {
	text-align: left;
}
.return_btn {
	a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: min(80%, 300px);
		margin: 50px auto;
		background: #f0f0f0;
		border-radius: 4px;
		padding: .5em;
		transition: .5s;
	}
	a:hover {
		color: #fff;
		background: var(--base-color01);
	}
}
/***************************************
-------------- PAGENATION --------------
***************************************/

#pagination {
		width: min(100%,640px);
		margin: clamp(50px, 10vw, 100px) auto 0;
}
#pagination ul {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
}
#pagination li {
		width: 8%;
		line-height: 1.5;
}
#pagination li:not(:last-of-type) {
		margin-right: 2%;
}
#pagination li a {
		display: flex;
		font-size: .8rem;
		color: var(--base-color02);
		border: 1px solid var(--base-color01);
		width: 100%;
		height: 2rem;
		align-items: center;
		justify-content: center;
}
#pagination li.active a {
		background: var(--base-color01);
		color: var(--base-color03);
}


/***************************************
------------- parallax -------------
***************************************/
.parallax {
  background: url(../img/parallax_bg04.webp) no-repeat center center / cover;
  height: clamp(300px,35vh,600px);
  background-attachment: fixed;
}
