@charset "utf-8";
/* CSS Document */
.list_page a{text-decoration: none;}
.list_page .tag_list{
	padding: 15px;
	margin: 0 auto 35px;
	display: flex;
	flex-wrap: wrap;
	background: #223e7b;
	gap: 8px 1.25%;
	font-size: 20px;
}
.list_page .tag_btn_design{
	padding: 1em .2em;
	box-sizing: border-box;
	background-color: #385287;
	color: #fcffee;
	width: 19%;
	line-height: 1;
	border: none;
	cursor: pointer;
	transition: .3s;
}
.list_page .tag_btn_design.active,
.list_page .tag_btn_design:hover{
	background-color: #fcffee;
	color: #223e7b;
}
.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;
	display: none;
}
.list_page .article_list .show {display: block;}
.list_page .content{
	padding: 20px;
	text-align: left;
}
.list_page .date{
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0;
}
.list_page .card_tag_design{
	display: inline-block;
    margin-bottom: .8em;
    width: 100%;
    max-width: 170px;
    line-height: 1;
    font-size: 14px;
    text-align: center;
    padding: .4em;
    border-radius: 5px;
}
.list_page .card_tag_design_notice{background-color: #ffe897;}
.list_page .card_tag_design_feature{background-color: #f9a486;}
.list_page .card_tag_design_site{background-color: #b5e3d7;}
.list_page .card_tag_design_other{background-color: #e5e5e5;}
.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 .tag_list {
		font-size: 16px;
		padding: 10px;
	}
	.list_page .article_list{gap: 20px 2%;}
	.list_page .card{width: 32%;}
}
@media screen and (max-width: 900px){
	.list_page .card{width: 49%;}
	.list_page .tag_btn_design{width: 32.5%;}
	.list_page .tag_btn_design:nth-child(n+4){width: 49.3%;}
}
@media screen and (max-width: 600px){
	.list_page .tag_list {margin-bottom: 20px;}

	.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%;}
}