section {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

section.blue {
	background: linear-gradient(#226, #225);
}

section.blue_2 {
	background: var(--blue);
	background: linear-gradient(#226, #225);
}

/*------------------------------------------------------------------------------------------------ ▼ .section_title --*/

.list_header {
	display: flex;
	flex-wrap: wrap;
}

.list_header * {
	color: #fff;
}

.list_header_left {
	
}

.list_header_right {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	font-family: 'Montserrat', sans-serif;
}

.list_header_right span {
	line-height: 1em;
	margin-right: 10px;
}

.list_category_title {
	text-align: center;
	font-weight: bold;
	color: #fff;
	border-bottom: 1px solid #fff;
}

.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.list a {
	display: flex;	
	background: #fff;
	border-radius: var(--border_radius);
	overflow: hidden;	
}

.list_thumbnail {
	width: 30%;
	aspect-ratio: 4 / 3;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.list_title {
	width: 70%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

@media (501px <= width) {
	.list_header_left {
		width: 75%;
	}
	
	.list_header_left h3 {
		font-size: 28px;
	}
	
	.list_header_left p {
		margin-top: 10px;
		padding: 15px 0;
		border-top: 1px dotted #fff;
		border-bottom: 1px dotted #fff;
	}
	
	.list_header_right {
		width: 25%;
		padding-top: 15px;
		font-weight: 200;
	}
	
	.list_header_right span {
		font-size: 120px;
		font-weight: 100;
	}
	
	.list_category_title {
		margin: 50px 0 15px;
		padding-bottom: 5px;
		font-size: 28px;
	}
	
	.list a {
		width: calc((100% - 15px) / 2);
		margin-right: 15px;
	}
	
	.list a:nth-child(2n) {
		margin-right: 0;
	}
	
	.list a:nth-child(n + 3) {
		margin-top: 15px;
	}
	
	.list_thumbnail {
		width: 175px;
		aspect-ratio: 4 / 3;
	}
	
	.list_title {
		padding: 0 15px;
	}
}

@media (width <= 500px) {
	.list_header_left, .list_header_right {
		width: 100%;
	}

	.list_category_title {
		margin: 30px 0 15px;
		padding-bottom: 5px;
	}	
	
	.list a {
		width: 100%;
	}
	
	.list a:nth-child(n + 2) {
		margin-top: 5px;
	}
	
	.list_title {
		padding-left: 30px;
		justify-content: flex-start;
	}
}


