@charset "utf-8";
/* CSS Document */



/*　上下ボタン修正内容　ここから*/

/* 数値の入力欄にスピナーを常時表示する */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
    width: 20px;
}

/*　input枠　*/
input.spinner {
    padding: 10px 15px 10px 20px;
    font-size: 1.3rem;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/*　スマホ用＋とマイナスを非表示*/
p.spinner-p , p.spinner-p1{
    display: none;
}

span.spinner-sub,
span.spinner-add {
    border: none;
}


@media (max-width: 480px) {

    /*　上下ボタン　スマホ表示修正内容　*/

    .spinner-container {
        display: flex;
        justify-content: right;
        user-select: none;
        -ms-user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
        margin: 10px 0 10px 0;
    }


    /* ボタンに挟まれた真ん中の数値 */

    input.spinner {
        font-size: 16px;
        width: 80px;
        padding: 0;
        text-align: center;
        border: 1px solid #B9B9B9;
        background: none;
        outline: none;
        pointer-events: none;
        margin: 0px 5px;
    }

    .spinner::-webkit-inner-spin-button,
    .spinner::-webkit-outer-spin-button {
        -webkit-appearance: none;
    }

    span.spinner-sub,
    span.spinner-add {
        position: relative;
        background: #C30E18;
        display: block;
        width: 40px;
        height: 40px;
        text-align: center;
        cursor: pointer;
        line-height: 35px;
        border: none;
    }

    /* + -はテキスト */

    p.spinner-p , p.spinner-p1 {
        display: block;
        position: absolute;
        top: 6px;
        left: 14px;
        font-size: 22px;
        color: #fff;
    }


}



/*　ここまで　*/















/*　以下はモック用レイアウト調整用　*/
#cart_flow ul {
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
#cart_flow ul li.cart_on {
    border: 3px solid #E60000;
    color: #E60000;
    background-color: #fff;
}
#cart_flow ul li:nth-child(even) {
    padding: 0;
    background: none;
}
#cart_flow ul li span {
    display: table-cell;
    vertical-align: middle;
}

#cart_flow ul li {
    padding: 0.4% 3%;
    margin: 0 3%;
    text-align: center;
    background-color: #ccc;
    border-radius: 8px;
    font-size: .9rem;
    color: #fff;
    min-height: 62px;
    display: table;
}
#cart_flow ul li span {
    display: table-cell;
    vertical-align: middle;
}


a {
    text-decoration: none;
}
#cart_inn_left {
    display: inline-block;
    width: 62%;
    border-top: 1px solid #666;
    margin-right: 4%;
}

.cart_inn_li {
    border-bottom: 1px solid #ccc;
    padding: 15px 10px 10px 0;
    width: 100%;
}
.cart_inn_img {
    display: inline-block;
    width: 25%;
}
.cart_inn_det {
    display: inline-block;
    vertical-align: top;
    width: 74%;
}
.cart_inn_det_wrap {
    text-align: right;
    margin: 4% 5% 0 0;
    clear: both;
}
.cart_price {
    display: inline;
    padding: 0 1rem 0 0;
    font-size: 1.4rem;
    color: #666;
}
.cart_quantity {
    display: inline;
}
.cart_inn_det a {
    display: inline-block;
    color: #333;
    font-size: 1.4rem;
    margin: 20px 0 0 0;
}


.pro_side {
    text-align: center;
    margin: 0;
    padding: 0;
    width: 40%;
}



@media (max-width: 480px) {


    #cart_inn_left {
        display: block;
        width: 100%;
        border-top: 1px solid #666;
        margin-right: 0;
    }

    .cart_inn_li {
        padding: 15px 0 15px 0;
    }
    .cart_inn_det {
        width: 71%;
        margin-left: 2%;
    }
    .cart_inn_det a {
        font-size: 0.8rem;
        margin: 10px 0 0 0;
    }
    .cart_inn_det_wrap {
        margin: 2% 0% 0 0;
    }
    .cart_price {
        font-size: 1rem;
    }

    .cart_inn_img img {
        width: 100%;
    }
    .pro_side {
        width: 100%;
    }

    .pro_side img {
        width: 100%;
    }

}

/* contact */
.sub_con_contact {
    margin: 0 auto;
    width: 62%;
    max-width: 1200px;
}

textarea.form-input {
    height: auto;
}

@media all and (max-width: 960px) {
    .sub_con_contact {
        width: 100%;
    }
}

/* スクリーンサイズが380px以下の場合 */
@media all and (max-width: 380px) {
    textarea.form-input {
        height: auto;
        width: 95%;
        font-size: 1rem;
	}
}

