#flower_list_section {
    display: block;
    width: 100%;
    min-height: 70svh;
    height: auto;
    padding: 0 min(max(4vw, 10px), 20px);
    background-color: var(--bg-01);
}
.flower_list_box {
    display: flex;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    gap: 2.5em;
}

.flower_list_box > .flower_box {
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: min(200px, max(40vw, 150px)) auto;
    column-gap: 1em;
    position: relative;
}

.flower_list_box > .flower_box > .flower_img_box {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: calc(200/220);
}
.flower_list_box > .flower_box > .flower_img_box > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flower_list_box > .flower_box > .flower_desc_box {
    display: grid;
    width: 100%;
    height: 100%; 
    font-size: 1.25em;
    grid-template-columns: auto;
    grid-template-rows: auto 4.5em;
}

.flower_list_box > .flower_box > .flower_desc_box > .flr_btn_box {
    display: flex;
    width: 100%;
    height: auto;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: end;
}
.flower_list_box > .flower_box > .flower_desc_box > .flr_btn_box > a {
    display: inline-block;
    line-height: 1em;
    padding: 0.5em 0;
    text-align: center;
    font-weight: 500;
}

.flower_list_box > .flower_box > .flower_desc_box > .flr_btn_box > a.tel_order {
    width: calc(50% - 0.25em);
    color: #000;
}
.flower_list_box > .flower_box > .flower_desc_box > .flr_btn_box > a.online_order {
    width: 100%;
    color: #fff;
    background-color: #C7AF8E;
}

.flower_list_box > .flower_box > .flower_desc_box > .flr_name_box {
    display: flex;
    width: 100%;
    height: auto;
    gap: .5em;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.flower_list_box > .flower_box > .flower_desc_box > .flr_name_box > p {
    display: inline-block;
    width: 100%;
    height: auto;
    line-height: 1em;
}
.flower_list_box > .flower_box > .flower_desc_box > .flr_name_box > p.flr_name {
}

.flower_list_box > .flower_box > .flower_desc_box > .flr_name_box > p.flr_desc {
    color: var(--text-10);
    font-weight: 300;
    font-size: .875em;
}

.flower_list_box > .flower_box > .flower_desc_box > .flr_name_box > p.sales_price {
    font-weight: bold;
}
.flower_list_box > .flower_box > .flower_desc_box > .flr_name_box > p > span {
    font-weight: normal;
}

@media (max-width:390px) {
    .flower_list_box > .flower_box > .flower_desc_box {
        font-size: 1em;
    }
}

