@charset "UTF-8";
a {
	text-decoration: none;
	transition: all 0.3s ease;
}
a:hover {
	opacity: 0.7;
}

ul.common-list.archive-category {
    display: flex;
    gap: 2rem;
	margin-bottom: 9rem;
	@media screen and (max-width: 767px) {
		gap: 0.8rem;
		margin-bottom: 5.5rem;
    }
}

.archive-category li a {
	font-style: normal;
	font-weight: 700;
	font-size: 1.8rem;
	/* line-height: 14px; */
	letter-spacing: 0.05em;
	color: #0033B3;
	max-width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.6rem 1rem;
	background: #FFFFFF;
	border: 0.2rem solid #0033B3;
	border-radius: 1.5rem;
	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
		padding: 0.5rem 0.8rem;
    }
}

.archive-category li.active a {
	color: white;
	background: #0033B3;
	border: 0.2rem solid #0033B3;
}

.common-list.article li a {
    display: block;
    padding-bottom: 3rem;
    border-bottom: 0.1rem solid #ACACAC;
    text-decoration: none;
    transition: opacity 0.3s ease;
	margin-bottom: 3rem;
}

