/* CSS Document */
.card_list {
    display: flex;
    flex-wrap: wrap;
	margin-left: -24px;
	margin-right: -24px;
	margin-bottom: -48px;
}
@media screen and (max-width: 768px) {
.card_list {
	margin-left: -5px;
	margin-right: -5px;
	margin-bottom: -10px;
}
}


.card_list > div {
    width: calc(100% / 5);
    padding: 0px 24px 48px;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
.card_list > div {
    width: calc(100% / 2);
    padding: 0px 5px 10px;
}
}

.card_list .card .img_box {
    position: relative;
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
	border-radius: 12px;
}
    
.card_list .card .img_box .enlargement {
	pointer-events: none;
	content: '';
	width: 200px;
	height: 280px;
	position: absolute;
    transition: 0.3s;	
	z-index: 100;
	top: 50%;
	left: 50%;
	opacity: 0;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-box-shadow: 0px 8px 24px rgba(0,0,0,0.50);
	box-shadow: 0px 8px 24px rgba(0,0,0,0.50);
	border-radius: 18px;
}
@media screen and (max-width: 639px) {
.card_list .card .img_box .enlargement {
    display: none;
}
}

.card_list .card:hover .img_box .enlargement {
	content: '';
	width: 360px;
	height: 504px;
	opacity: 1;
	transition: 0.3s;
}



.card_list .card .img_box::before {
    content:  '';
    display: block;
    padding-top: 139.6%;
}