@charset "UTF-8";
#Main {
    padding: 0px 20px;
}

#Main #Cart {
    padding-bottom: 50px;
    /********************/
    /* ポイントチャージ */
    /********************/
    /************************/
    /* ポイントチャージ確認 */
    /************************/
}

#Main #Cart .list {
    display: table;
    margin: auto;
}

#Main #Cart .items {
    border-collapse: collapse;
    border-top: 2px solid #dbdbdb;
    display: table;
    margin: 30px auto 0px auto;
    height: 100%;
}

#Main #Cart .items li {
    border-bottom: 2px solid #dbdbdb;
    border-top: 2px solid #dbdbdb;
    display: table-row;
    height: 100%;
}

#Main #Cart .items li .photo {
    display: table-cell;
    padding: 20px 20px 20px 0px;
    max-width: 160px;
    width: 40%;
}

#Main #Cart .items li .photo img {
    max-width: 100%;
}

#Main #Cart .items li .product {
    display: table-cell;
    min-width: 360px;
    padding: 20px 0px 20px 0px;
    position: relative;
    vertical-align: top;
    width: 60%;
}

#Main #Cart .items li .product dl {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

#Main #Cart .items li .product dl .name {
    font-size: 15px;
}

#Main #Cart .items li .product dl .price {
    font-weight: 700;
    height: 100%;
}

#Main #Cart .items li .product dl .delete a {
    background: #828282;
    border-radius: 6px;
    color: #ffffff;
    padding: 3px 20px;
}

#Main #Cart .subtotal {
    display: flex;
    font-size: 15px;
    justify-content: space-between;
    margin-top: 20px;
}

#Main #Cart .subtotal .price {
    font-size: 24px;
    font-weight: 700;
    text-align: right;
}

#Main #Cart .subtotal .point {
    color: #f2994a;
    font-size: 15px;
    text-align: right;
}

#Main #Cart .nothing {
    margin: 30px auto;
}

#Main #Cart .payment {
    margin: 30px 0px 30px 0px;
    text-align: center;
}

#Main #Cart .payment .button {
    margin-bottom: 20px;
}

#Main #Cart .payment .button a {
    background: #00bfff;
    border-radius: 6px;
    box-sizing: border-box;
    color: #ffffff;
    display: block;
    font-weight: 700;
    padding: 20px;
}

#Main #Cart .payment .point span {
    color: #f2994a;
    font-size: 24px;
}

#Main #Cart .insufficient {
    background: #eeedeb;
    margin: 30px 0px;
    padding: 30px;
    position: relative;
    text-align: center;
}

#Main #Cart .insufficient::before {
    border-right: 10px solid transparent;
    border-bottom: 10px solid #eeedeb;
    border-left: 10px solid transparent;
    content: "";
    display: block;
    position: absolute;
    right: 30px;
    top: -10px;
}

#Main #Cart .insufficient dt {
    font-size: 14px;
    color: #ff0000;
}

#Main #Cart .insufficient dd.point {
    margin-bottom: 20px;
}

#Main #Cart .insufficient dd.point span {
    color: #f2994a;
    font-size: 24px;
}

#Main #Cart .insufficient dd.button a {
    background: #f2994a;
}

#Main #Cart .help {
    font-size: 12px;
    margin-bottom: 50px;
    text-align: left;
}

#Main #Cart .help dt {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#Main #Cart .help dt::before {
    background: url(../img/icon_help.png) center center no-repeat;
    content: "";
    display: inline-block;
    height: 20px;
    margin: 0px 6px;
    width: 20px;
}

#Main #Cart .help dt::after {
    content: "";
    display: inline-block;
    height: 20px;
    margin: 0px 6px;
    width: 20px;
}

#Main #Cart .help dd li {
    margin-left: 1em;
    text-indent: -1em;
}

#Main #Cart .charge {
    margin: 50px auto;
    max-width: 500px;
}

#Main #Cart .charge h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

#Main #Cart .charge .points {
    margin-bottom: 80px;
}

#Main #Cart .charge .points label {
    border-top: 1px solid #eeedeb;
    display: block;
}

#Main #Cart .charge .points label:last-child {
    border-bottom: 1px solid #eeedeb;
}

#Main #Cart .charge .points dl {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

#Main #Cart .charge .points dl .point {
    font-size: 28px;
    font-weight: 700;
    padding: 10px 20px;
    width: 100%;
}

#Main #Cart .charge .points dl .point span {
    font-size: 16px;
    font-weight: 700;
    padding-left: 3px;
}

#Main #Cart .charge .points dl .price {
    text-align: right;
}

#Main #Cart .charge .points dl .choice {
    align-items: center;
    display: flex;
    padding: 10px 20px;
}

#Main #Cart .charge .points dl .choice input[type=radio] {
    display: none;
}

#Main #Cart .charge .points dl .choice input[type=radio] + .radio {
    background: url(../img/icon_radio_off.png);
    display: inline-block;
    height: 26px;
    width: 26px;
}

#Main #Cart .charge .points dl .choice input[type=radio]:checked + .radio {
    background: url(../img/icon_radio_on.png);
}

#Main #Cart .charge .points dl .free {
    width: 120px;
}

#Main #Cart .charge .points dl .free::-webkit-outer-spin-button, #Main #Cart .charge .points dl .free::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0px;
}

#Main #Cart .charge .points .note {
    font-size: 15px;
}

#Main #Cart .charge .credit {
    margin-bottom: 160px;
}

#Main #Cart .charge .credit .brands {
    margin-bottom: 20px;
}

#Main #Cart .charge .credit .detail {
    background: #eeedeb;
    border-radius: 6px;
    margin-bottom: 50px;
    padding: 30px 20px 10px 20px;
}

#Main #Cart .charge .credit .detail dt {
    font-size: 14px;
}

#Main #Cart .charge .credit .detail dt span {
    color: #eb5757;
    font-size: 12px;
}

#Main #Cart .charge .credit .detail dd {
    margin-bottom: 20px;
}

#Main #Cart .charge .credit .button a {
    background: #f2994a;
}

#Main #Cart .charge .history {
    margin-bottom: 50px;
}

#Main #Cart .charge .history a {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #333333;
}

#Main #Cart .confirm {
    margin: 50px auto;
    max-width: 500px;
    text-align: center;
}

#Main #Cart .confirm p {
    margin-bottom: 40px;
}

#Main #Cart .confirm .point dt {
    font-size: 14px;
}

#Main #Cart .confirm .point dd {
    color: #f2994a;
    font-weight: 700;
}

#Main #Cart .confirm .point dd span {
    font-size: 36px;
    font-weight: 700;
    padding-right: 10px;
}

#Main #Cart .confirm .button {
    margin-bottom: 50px;
}

#Main #Cart .confirm .button a {
    background: #f2994a;
}

@media screen and (max-width: 768px) {
    #Main #Cart {
        /********************/
        /* ポイントチャージ */
        /********************/
    }
    #Main #Cart .items li .product {
        min-width: auto;
    }
    #Main #Cart .charge .points dl .point {
        padding: 10px 10px;
    }
}
