@charset "utf-8";
#result main {
    margin-top: 100px;
}
#result .list__item figure {
	overflow: hidden;
    padding-top: 100%;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}
#result .list__item figure img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    transition:0.2s all;
}
#result .list__item .title {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 1em;
}
#result .list__item .tag {
    list-style: none;
    padding: 0;
    margin: 0;
}
#result .list__item .tag a {
    font-size: 1.3rem;
    /* border: solid 1px var(--color_main); */
    border-radius: 50px;
    /* color: var(--color_main); */
    padding: 0 0.5em 1px;
	line-height: 2.2;
    background: #f5f1f2;
}
#result .list__item .tag a:hover {
	/* background: var(--color_main);
	color: #fff; */
    filter: brightness(120%);
}
@media (min-width: 768px){
    .flex_cl {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.flex_cl.cl_2 > section, .flex_cl.cl_2 > li {
		width: 47%;
	}
	.flex_cl.cl_3 > section, .flex_cl.cl_3 > li {
		width: 30%;
		margin-bottom: 8%;
	}
	.flex_cl.cl_4 > section, .flex_cl.cl_4 > li {
		width: 23%;
	}
	.flex_cl .od1 {
		order: 1;
	}
	.flex_cl .od2 {
		order: 2;
	}
}
@media (max-width: 768px){
}