@charset "utf-8";

/*------------ 共通 ------------*/
.used_result_list {
    padding: 0;
    margin: 0;
}

.used_result_item {
    line-height: 1.8;
    margin: 0 0 70px;
    list-style: none !important;
}

.used_result_head {
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #707070;
}

.used_result_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.used_img {
    width: 31.818%;
    margin-right: auto;
}

.used_img div {
    position: relative;
    height: 0;
    padding-top: 114.285%;
}

.used_img div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.used_info {
    display: flex;
    width: calc((100% - 31.818%) - 50px);
}

.used_info p {
    font-size: 1.6rem;
    letter-spacing: 0.025em;
    line-height: 1.875;
    margin: 0;
}

.used_info p:first-child {
    white-space: nowrap;
}

.used_info p:last-child {
    margin-bottom: 0;
}



@media screen and (max-width:767px) {
	.used_result_item{
		margin: 0 0 30px;	
	}
	
    .used_result_head {
        padding-bottom: 5px;
        margin-bottom: 17px;
    }

    .used_img {
        width: 100%;
        max-width: 400px;
        margin: auto auto 8px;
    }

    .used_info {
        display: block;
        width: 100%;
    }

    .used_info p {
        font-size: 1.4rem;
    }

}