/*------------------------------------------------------------
    商品カートボタン
------------------------------------------------------------*/

.item-list {
    width: 90%;
    max-width: 980px;
    margin: 80px auto 0;
    position: relative;
}

.item-list ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.item-list ul li {
    width: calc( 100% / 3 - 10px);
    margin-right: 10px;
    margin-bottom: 30px;
}

.item-list ul li:nth-child(3n) {
    margin-right: 0;
}

.item-list ul li .item-text {
    width: 90%;
    margin: 1em auto;
}

.item-list .item-title {}

.item-list .item-title_under {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0.5em auto;
}

.item-list .item-price {
    font-size: 1.8rem;
}

.item-cart .cart label {
    font-size: .8rem;
    letter-spacing: .12em;
    display: inline-block;
    margin-bottom: .5rem;
}

.item-cart .input_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}

.item-cart .input_area input {
    width: 40px;
    padding: 0.6rem;
    background-color: #f5f5f5;
    border: none;
    font-size: 1.2rem;
    border-radius: 4px;
}

.item-cart .input_area input:focus {
    outline: 0;
}

.item-cart input[type="number"]::-webkit-outer-spin-button,
.item-cart input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.item-cart input[type="number"] {
    -moz-appearance: textfield;
}

.item-cart .btnspinner {
    background-color: white;
    padding: .6rem .85rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.item-cart .btnspinner:hover {
    background-color: #f8f9fa;
}

.item-cart .btnspinner:focus {
    outline: 0;
    border-color: #6c757d;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, .5);
}

.item-cart button[type="submit"] {
    width: 100%;
    padding: .9em .5em;
    border-radius: 4px;
    background-color: rgb(191, 0, 0);
    color: white;
    border: none;
    letter-spacing: .12em;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
}

.item-cart button[type="submit"]:hover {
    background-color: rgba(191, 0, 0, .95);
}

.item-cart button[type="submit"]:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, .5);
}

.item-cart .svg-icon {
    width: 1.4em;
    height: 1.4em;
    margin-right: .3em;
    vertical-align: text-bottom
}

.item-cart .svg-icon path,
.item-cart .svg-icon polygon,
.item-cart .svg-icon rect {
    fill: #fff
}

.item-cart .svg-icon circle {
    stroke: #fff;
    stroke-width: 1
}

@media screen and (max-width:767px) {
    .item-list {
        margin: 2em auto;
    }
    .item-list ul li {
        width: calc( 100% / 2 - 5px);
        margin-right: 10px;
        margin-bottom: 30px;
    }
    .item-list ul li:nth-child(3n) {
        margin-right: 10px;
    }
    .item-list ul li:nth-child(2n) {
        margin-right: 0;
    }
    .item-list .item-title_under {
        display: block;
        margin: 0 auto 0.5em;
    }
    .item-list .item-price {
        line-height: 2;
    }
    .item-cart .input_area input {
        width: 30%;
    }
    .item-cart button[type="submit"] {
        padding: 0.9em 0;
        font-size: 1.1rem;
    }
}

.item-cart dl {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    align-items: center;
    font-size: 1.2rem;
}

.item-cart dt,
.item-cart dd {
    display: -webkit-flex;
    display: -ms-flex;
    align-items: center;
    ;
}

.item-cart dt {
    width: 75%;
    height: 30px;
    padding-left: 0.5em;
    border-bottom: 1px solid #ccc;
}

.item-cart dd {
    width: 25%;
    height: 30px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    justify-content: center;
}

.item-select {
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .item-cart dl {}
}