 /* top page --------------------------------------*/
.finished_list_wrap {
    display: flex;
    flex-wrap: wrap;
}
.finished_list_wrap .list_btn {
    border: 1px solid #ddd;
    border-radius: 20px;
}
.finished_list_wrap .list_btn a {
    display: block;
    overflow: hidden;
    position: relative;
    padding: 10px 30px;
    color: #222;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none;
}
.finished_list_wrap .list_btn a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 23px;
    height: 6px;
    display: block;
    margin-top: -0.2em;
    transition: all .2s;
    background: url(/jpn/common_v3/images/icon_arrow_red.png) no-repeat;
}
.finished_list_wrap .list_btn a:hover::before {
    right: 10px;
}
.finished_list_wrap .list_btn img {
    mix-blend-mode: multiply;
}
.finished_list_wrap .list_btn dl {
    display: flex;
    align-items: center;
}
.finished_list_wrap .list_btn dl dt {
    margin-right: 20px;
}


/* detail page -------------------------------------*/
.parts_info {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}
.partsImg {
    width: 120px;
}
.partsName {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}
.partsData {
    font-size: 15px;
}

/*--------------------------------------------------

PC ver css

--------------------------------------------------*/
@media print, screen and (min-width:768px){
    /* top page */
    .finished_list_wrap .list_btn {
        width: 33%;
        max-width: 372px;
        margin-right: 28px;
        margin-bottom: 30px;
    }
    .finished_list_wrap .list_btn:nth-child(3n) {
        margin-right: 0;
    }

    /* detail page */
    .main_partsBox {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .parts_info {
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 50%;
        max-width: 538px;
    }
    .partsTxt {
        width: calc(100% - 170px);
    }
}

/*--------------------------------------------------

SP ver css

--------------------------------------------------*/
@media screen and (max-width:767px){
    .finished_list_wrap .list_btn {
        width: 100%;
        margin-bottom: 15px;
    }
    .parts_info {
    }
    .partsImg {
        margin: 0 auto 15px;
    }
}