﻿@charset "UTF-8";

.ingredients_list_title {
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    color: #565656;
    box-sizing: border-box;
}

table.ingredients_list {
    margin: 25px auto;
    width: 100%;
}

    table.ingredients_list thead tr th {
        padding: 5px 6px;
        font-weight: normal;
        font-size: 0.9em;
    }

    table.ingredients_list tbody tr td {
        border-left: 1px solid #acacac;
        border-right: 1px solid #acacac;
        padding: 5px 10px;
        text-align: left;
        font-size: 0.8em;
        box-sizing: border-box;
    }

    table.ingredients_list tbody tr:first-child td {
        border-top: 1px solid #acacac;
    }

    table.ingredients_list tbody tr:last-child td {
        border-bottom: 1px solid #acacac;
    }

    table.ingredients_list tbody tr:nth-child(2n) td {
        background-color: rgb(229, 228, 223);
    }

@media screen and (min-width: 920px) {
    table.ingredients_list thead tr th {
        padding: 10px 20px;
        font-size: 1.1em;
    }

    table.ingredients_list tbody tr td {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* ==========================================================
   footer banner (cart button)
   ========================================================== */
.footer_cart_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: left;
    height: 100%;
    width: 100%;
    max-width: var(--maxContentWidth);
    white-space: nowrap;
}

@media screen and (min-width: 920px) {
    .footer_cart_wrap {
        flex-direction: unset;
    }
}

.footer_cart_wrap > div {
    padding: 3px 0 7px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

    .footer_cart_wrap > div:last-child {
        display: flex;
        justify-content: center;
        align-items: center;
    }

@media screen and (min-width: 920px) {
    .footer_cart_wrap > div {
        text-align: left;
        width: 50%;
    }

        .footer_cart_wrap > div:first-child {
            width: 60%;
        }

        .footer_cart_wrap > div:last-child {
            display: inline-block;
            width: 40%;
        }
}

.footer_cart_wrap .btn_submit {
    max-width: 250px;
}

.footer_txt_wrap {
    display: block;
    padding: 0 16px;
    width: 100%;
}

@media screen and (min-width: 920px) {
    .footer_txt_wrap {
        display: inline-block;
        width: auto;
    }
}

    .footer_txt_wrap select {
        padding: 0 4px;
        font-size: 0.9em;
        width: 100%;
    }

    @media screen and (min-width: 920px) {
        .footer_txt_wrap select {
            padding: 2px 16px;
            font-size: 1.0em;
        }
    }

.footer_goods_name,
.footer_goods_price {
    display: block;
    text-align: left;
    font-size: 0.9em;
    color: #151515;
    line-height: 1.6em;
}

@media screen and (min-width: 920px) {
    .footer_goods_name,
    .footer_goods_price {
        font-size: 1.0em;
    }
}

.footer_goods_name {
    margin-right: 1.0em;
}

.footer_goods_select_name {
    display: block;
    margin-top: 5px;
    margin-right: auto;
    text-align: left;
    font-weight: bold;
}

@media screen and (min-width: 920px) {
    .footer_goods_select_name {
        display: inline-block;
        margin-right: 10px;
    }
}

select.footer_goods_select_item {
    display: block;
    margin-top: 3px;
    margin-left: 0;
    margin-right: auto;
    text-align: right;
    height: 36px;
    max-width: 210px;
}

@media screen and (min-width: 920px) {
    select.footer_goods_select_item {
        display: inline-block;
        text-align: right;
        max-width: 240px;
    }
}

.btn_submit {
    display: inline-block;
    width: 50%;
}

@media screen and (min-width: 920px) {
    .btn_submit {
        width: 80%;
        max-width: 350px;
    }
}