@charset "utf-8";

/* 写真カード---------- */

.img_card_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.img_card_list li {
    margin-bottom: 3.5rem;
    margin-right: 2.5%;
    width: 48%;
    box-shadow: 0px 0px 15px -5px #777777;
}

.img_card_list li:nth-child(2),
.img_card_list li:nth-child(4){
    margin-right: 0;
}
.img_card_list li:last-child{
    margin-right: 0;

}

.img_card_list li a {
    display: block;
}

.img_card_list .sec_tit {
    margin-bottom: 0;
}

.img_card_list dl {
    position: relative;
    width: 100%;
}

.img_card_list dt {
    position: absolute;
    bottom: 0;
    padding: 0.7em 1em;
    color: #fff;
    text-align: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.img_card_list dt ::after {
    color: inherit;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: '\f054';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
}

@media screen and ( max-width: 1000px) {
    .img_card_list dt ::after {
        font-size: 15px;
    }
    .img_card_list .sec_tit {
        font-size: 1.8rem;
    }
}

@media screen and ( max-width: 850px) {
    .img_card_list .sec_tit {
        font-size: 1.5rem;
    }
}

@media screen and ( max-width: 600px) {
    .img_card_list {
        display: block;
    }
    .img_card_list li {
        width: 100%;
        margin-right: 0;
    }
}