@charset "utf-8";
/* CSS Document */
.list_page a{text-decoration: none;}

.list_page .article_list{
	display: flex;
	justify-content: flex-start;
	gap: 50px 5%;
	flex-wrap: wrap;
}
.list_page .article_list .img_box{
	width: 100%;
    aspect-ratio: 3 / 2;
	background-color: #223e7b;
    overflow: hidden;
}
.list_page .article_list .img_box img {
	object-fit: contain;
	object-position: center;
	transition: .3s all;
}
.list_page .article_list a:hover .img_box img {transform: scale(1.1, 1.1);}
.list_page .card{
	width: 30%;
	background: #fcffee;
	box-sizing: border-box;
}
.list_page .content{
	padding: 20px;
	text-align: left;
}
.list_page .date{
	margin-bottom: 4.5px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0em;
}
.list_page .title{
	font-size: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

@media screen and (max-width: 1200px){
	.list_page .article_list{gap: 20px 2%;}
	.list_page .card{width: 32%;}
}
@media screen and (max-width: 900px){.list_page .card{width: 49%;}}
@media screen and (max-width: 600px){
	.list_page .article_list{margin-bottom: 50px;}
	.list_page .content{padding: 15px 20px 20px;}
	.list_page .date{
		margin-bottom: 5px;
		font-size: 14px;
	}
	.list_page .title{
		font-size: 16px;
		line-height: 1.2;
	}
}
@media screen and (max-width: 450px){.list_page .card{width: 100%;}}