/*========================================================================================================================
商品一覧
========================================================================================================================*/
#body_item_list main {
    width: var(--width_default);
    max-width: var(--max_width_default);
    margin: 0px auto;
}


#wrap_result>section {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#wrap_result>section>section {
    width: calc(100% / 4 - 60px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 20px auto;
    padding: 20px;
    border: solid 1px #ddd;
box-shadow:0px 0px 5px 0px rgba(0, 0, 0, 0.2)
}

#wrap_result>section>section div.wrap_list_img {
    text-align: center;
    margin: 0px auto 0px auto;
    aspect-ratio: 1/0.8;
    overflow: hidden;
    width: 100%;
}

#wrap_result>section>section div img {
    width: 80%;
}

#wrap_result>section .wrap_list_txt {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: 1.5;
  flex-grow: 1;
}


.ttl_list_item {
    font-size: 20px;
    color: var(--color_green_01);
    font-weight: bold;
    text-align: center;
    margin: 10px auto;
    /*
    min-height: calc(2em * 1.5);
    */
}

.ttl_list_item a {
    color: var(--color_green_01);
    text-decoration: none;
}

.txt_list_item_description {
    flex-grow: 1;
}

.txt_list_price {
    text-align: center;
    color: #f30;
    margin: 0px auto 10px auto;
}
#wrap_result>section .wrap_list_txt .btn_01{
margin:20px auto 10px auto;
}


/*========================================================================================================================
SPSPSPSPSPSPSPSPSPSP
========================================================================================================================*/
@media screen and (max-width: 768px) {
    #body_item_list h1 {
        font-size: 24px;
    }

    #wrap_result>section>section {
        width: calc(100% / 1 - 40px);
        line-height: 1.5;
        margin: 10px auto;
        padding:10px 20px;
    }

    .ttl_list_item {
        font-size: 20px;
    }

    .txt_list_price {
        margin-top:0px;
        font-size: 18px;
        font-weight: 600;
    }

    .txt_list_price span {
        display: none;
    }
.txt_list_item_description{
        font-size: 16px;
    }

    /*============================================================
閉じ括弧
============================================================*/
}