@charset "UTF-8";

/**
 * オリジナルcss
 */

.archive_elements {
	display: flex;
	flex-direction: column;
}

.content_news_element a {
	display: block;
	width: 100%;
	text-decoration: none;

	.list_news_image {
		max-width: 160px;
		aspect-ratio: 1;
		border-radius: 100vw;
		background-color: #929292;
		overflow: hidden;

		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}
}

.list_news_info {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 24px 16px;
	border-bottom: 1px dashed var(--c2);
}

.list_news_date_category {
	display: flex;
	gap: 1em;
	align-items: baseline;
}

.list_news_element_new {
	display: inline-block;
	width: fit-content;
	background-color: var(--c2);
	border: 1px solid var(--c2);
	color: #fff;
	padding: 2px 12px;
	font-size: 1.3rem;
	line-height: 1.4;
}

.list_news_category_detail {
	font-size: 1.6rem;
	color: var(--c2);
}

.list_news_date {
	font-size: 1.6rem;
}

.content_news_element h3 {
	font-size: 2rem;
	font-weight: 400;
	margin: 0;
	margin-top: 8px;
}

@media screen and (max-width: 1110px) {}


@media screen and (max-width:768px) {
	.archive_elements {
		grid-template-columns: repeat(1, 1fr);
		gap: 24px;
	}

	.content_news_element a {
		gap: 16px;

		.list_news_image {
			max-width: 100px;
		}
	}

	.list_news_info {
		padding: 16px 12px;
		gap: 4px;
	}

	.list_news_element_new {
		font-size: 1.2rem;
	}

	.list_news_date {
		font-size: 1.3rem;
	}

	.list_news_category_detail {
		font-size: 1.3rem;
	}

	.content_news_element h3 {
		font-size: 1.6rem;
	}
}

@media screen and (max-width:639px) {}

@media screen and (max-width:500px) {}