@charset "utf-8";



/* @ Page title */
.g3-ttl-news{
	font-size: 1.875rem;
	font-weight: normal;
	text-align: center;
	
	margin: 3.75rem 0;
}



/* @ Archive */
.l3-archive{
	color: #666;
	min-width: 9em;
	display: table;
	margin-left: auto;
}
.l3-archive__select{
	/* text-align: center; */
	border: 0;
	border-radius: .3125rem;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: .5rem;
	padding: .5rem 1rem;
	
	
	
	
	
	background: #eee;
}
.l3-archive__select::after{
	content: "";
	align-self: center;
	width: .33em;
	height: .33em;
	border: solid;
	border-width: 0 1px 1px 0;
	transform: translateY(-33%) rotate(45deg);
}
#news-archive:checked ~ .pulldown__view .l3-archive__select::after{
	transform: translateY(33%) rotate(-135deg);
}
.l3-archive-list{
	line-height: 1.33;
	border-radius: 0 0 .5rem .5rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
}
.l3-archive-list__more{
	/* text-align: center; */
	text-decoration: none;
	color: inherit;
	background: #eee;
	padding: .666em 1em;
}
.l3-archive-list__more:hover{
	background: #ddd;
}
/* .l3-archive-list__more:not(:first-child){
	border-top: 1px solid;
} */



/* @ News List */
.l3-news-list{
	margin: 3.75rem 0;
}
.l3-news-list > *{
	
}
.l3-news-list > * + *::before{
	content: "";
	display: block;
	border-top: 1px solid #ccc;
	margin: 1.25rem 0;
}



/* @ News */
.l3-news{
	scroll-margin-top: 5.625rem;
	scroll-margin-top: var(--g3-scroll-margin-top, 5.625rem);
}
.l3-news:target{}
.l3-news__more{
	text-decoration: none;
	color: inherit;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 1rem;
}
.l3-news__more::after{
	align-self: center;
}
.l3-news__more:not([href^='#']) .l3-news__title{
	/* color: #06c; */
}
.l3-news__more:not([href^='#']) .l3-news__title::after{
	content: "🔗";
}
.l3-news__more:not([href^='#'])::after{
	content: "";
	width: .33em;
	height: .33em;
	border: solid;
	border-width: 1px 1px 0 0;
	transform: translateX(-100%) rotate(45deg);
}
.l3-news__more[href^='#']::after{
	content: "＋";
}
.l3-news:target .l3-news__more[href^='#']::after{
	content: "－";
}
.l3-news__header{
	display: grid;
}
.l3-news__date{
	font-size: .875em;
	color: #999;
}
.l3-news__title{
	line-height: 1.5;
	font-size: 1em;
	font-weight: normal;
	color: #555;
	margin: 0;
}
.l3-news:target .l3-news__title{
	font-weight: bold;
	color: #000;
}
.l3-news__body{
	margin: 2.5rem 0;
	animation: g3-fadein 666ms cubic-bezier(0.33, 1, 0.68, 1);
}
.l3-news:not(:target) .l3-news__body{
	display: none;
}

@media (min-width: 769px){
	.l3-news__header{
		grid-gap: 5.5rem;
		grid-template-columns: 5rem 1fr;
	}
	.l3-news__body{
		margin-left: 10.5rem;
	}
}
@media (max-width: 768px){
	.l3-news__header{
		grid-gap: .3125rem;
	}
}