@charset "UTF-8";

/*========All=========*/

/*セクションタイトル設定*/

h1 {
    font-size: 2.3rem;
    color: #edecea;
    box-sizing: border-box;
    background-color: #323B60;
    width: 170px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 1.5px solid #edecea;
    outline-offset: -15px;
}

h2 {
    font-size: 1.6rem;
    font-weight: bold;
}

.title {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

/*------輸入花一覧-----*/

#flowers-list .item-blk {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#flowers-list .item {
    width: 245px;
    margin: 0 0 50px 0;
    border: 2px solid #ad833c;
    box-sizing: border-box;
}

#flowers-list .text {
    margin: 5px;
}

#flowers-list .new::before {
    display: block;
    position: relative;
    background: #808080;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -40px;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    line-height: 40px;
    content: "NEW";
}

#flowers-list .item .list {
    display: flex;
    width: 100%;
}


#flowers-list .list dt,
.list dd {
    box-sizing: border-box;
    flex-wrap: wrap;
}

#flowers-list .list dt {
    width: 20%;
}


/*--------------------------------------
スマホ
--------------------------------------*/

@media screen and (max-width: 431px) {

    #flowers-list .inner {
        width: 94%;
    }

    #flowers-list .title {
        display: flex;
        justify-content: center;
        margin: 30px 0;
    }

    #flowers-list .item-blk {
        display: flex;
        flex-wrap: wrap;
    }

    #flowers-list .item {
        width: calc(50% - 5px);
    }

    #flowers-list .list dt {
    width: 30%;
}




}