@charset "UTF-8";
#cart {
    margin: 120px auto;
}
#cart .title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 80px;
}
#cart .cart-header {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #666;
}
#cart .cart-item {
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #666;
}
#cart .col {
    display: flex;
    align-items: center;
}
#cart .col.item {
    flex: 1;
    gap: 16px;
}
#cart .img img {
    width: 150px;
    height: auto;
}
#cart .info {
    margin-left: 40px;
}
#cart .info .name {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
#cart .col.qty {
    width: 180px;
    display: flex;
    flex-direction: column;
}
#cart .quantity {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}
#cart .quantity input {
    width: 120px;
    padding: 5px 0;
    text-align: center;
    border: 1px solid #ccc;
}
#cart .quantity button {
    width: 30px;
    height: 30px;
    cursor: pointer;
    color: black;
}
#cart .remove {
    cursor: pointer;
    display: inline-block;
    margin: 0 auto;
    border-bottom: solid 1px #666;
}
#cart .col.subtotal {
    width: 120px;
    justify-content: flex-end;
}
#cart .cart-footer {
    text-align: right;
    margin-top: 40px;
}
#cart .total {
    font-size: 18px;
    margin-bottom: 20px;
}
#cart .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #000000;
    color: #fff;
    text-decoration: none;
}



/*---------------------------------------
--------------スマートフォン-----------------------------*/
@media screen and (max-width: 767px) {
    #cart {
        margin: 120px auto;
    }
    #cart .title {
        font-size: 2rem;
        margin-bottom: 80px;
    }
    #cart .cart-header {
        padding: 10px 0;
    }
    #cart .cart-item {
        padding: 20px 0;
    }
    #cart .col {
        display: flex;
        align-items: center;
    }
    #cart .col.item {
        width: 200px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    #cart .img img {
        width: 120px;
    }
    #cart .info {
        margin-left: 0;
    }
    #cart .info .name {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    #cart .col.qty {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    #cart .quantity {
        gap: 3px;
        margin-bottom: 10px;
    }
    #cart .quantity input {
        width: 80px;
    }
    #cart .col.subtotal {
        width: 100px;
    }
    #cart .cart-footer {
        margin-top: 30px;
    }
    #cart .total {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    #cart .buy-btn {
        padding: 10px 30px;
    }



}