/*
    items.css
-------------------------------------------------------------------------------*/
/* flexbox */
.flex_box {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--colorBack); /* 背景色指定 */
    padding: 10px; /* 余白指定 */
}

.flex_item {
    box-sizing: border-box;
    padding: 1.5em;
    color: var(--colorFont);
    /* margin: 10px; */
    width: 30%;
}
.flex_item img {
    width: 100%;
}
.flex_item p {
    font-size: 90%;
    text-align: center;
}

/* */
.item img {
    width: 100%;
    max-width: 400px;
}

.form_put_cart {
    margin-top: 0.5em;
}
.form_put_cart input {
    font-size: 1.2em;
    font-weight: bold;
}

.table_items {
    width: 100%;
}

.table_items tr {
    margin-botton: 1em;
    border-bottom: 1px solid var(--colorBorder);
}
.table_items tr td:first-child {
    width: 80px:
    padding-right: 10px;
}

.table_items img {
    width: 70px;
}

.category {
    margin-top: 1.5em;
    cursor: pointer;
}

.category:hover {
    background-color: #eeeee6;
}

.explanation {
    margin: 1em 0;
    border: 1px solid var(--colorBorder);
    border-radius: 4px;
    padding: 1em;
}

.picture {
    margin-top: 1em;
}

.picture img {
    width: 100%;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .table_items, .explanation, .picture {
        font-size: 90%;
    }
}

.products img {
    width: 100%;
}
