<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* ========================================================
	news.css
======================================================== */

/* news_list
============================================================================================================ */
@media screen and (min-width: 768px), print {
	.column_main &gt; .news_list:first-child {
		margin-top: -20px;
	}
	.news_list li a {
		justify-content: space-between;
	}
	.news_list li a .time {
	}
	.news_list li a .title {
		width: calc(100% - 120px);
		margin: 0;
	}
}
@media screen and (max-width: 767px) {
	.column_main &gt; .news_list:first-child {
		margin-top: -15px;
	}
}

/* entry_detail
============================================================================================================ */
.entry_detail &gt; header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
	line-height: 1.6;
}
.entry_detail &gt; header h2 {
	width: 100%;
	margin-top: 20px;
	font-size: 2.8rem;
}
.entry_detail &gt; header time {
	margin-right: 20px;
}
.entry_detail &gt; header .cat {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.entry_detail &gt; header .cat li {
	margin-right: 10px;
}
.entry_detail &gt; header .cat a {
	display: block;
	min-width: 100px;
	padding: 2px 10px 1px;
	background-color: #fff;
	text-align: center;
	border: 1px solid #da0010;
	border-radius: 30px;
	color: #da0010;
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
}
@media screen and (min-width: 768px), print {
	.entry_detail &gt; header .cat a:hover {
		background-color: #da0010;
		color: #fff;
	}
}
@media screen and (max-width: 767px) {
	.entry_detail &gt; header {
		margin-bottom: 30px;
		font-size: 1.2rem;
	}
	.entry_detail &gt; header h2 {
		margin-top: 10px;
		font-size: 1.8rem;
	}
	.entry_detail &gt; header time {
		margin-right: 15px;
	}
	.entry_detail &gt; header .cat a {
		min-width: 80px;
		padding: 1px 10px;
		font-size: 1.1rem;
	}
}



</pre></body></html>