.cart {
    padding: 0 0 100px;
}
.cart-inner {
    margin: 0 auto;
    width: 92%;
    max-width: var(--main-column);
}
.cart-head {
    margin: 0 0 45px;
}
.cart-head h1 {
    font-size: 26px;
    font-weight: 500;
}
.cart-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.cart-left {
    width: calc(100% - 500px);
}
.cart-right {
    width: 350px;
}
.cart-right__in {
    border: 4px solid #e4e4e4;
    margin: 0 0 35px;
    padding: 35px;
}

.cart-back__btn.textlink {
    margin: 45px 0 50px;
}
.cart-back__btn.textlink a {
    background: none;
    border-bottom: 1px solid #424242;
    font-weight: normal;
}

.cart-notice {
    display: flex;
    justify-content: flex-start;
}
.cart-notice::before {
    content: "※";
}
.cart-notice p {
    font-size: 14px;
    line-height: 1.8em;
}
.cart-notice p a {
    text-decoration: underline;
}


.cart-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-list__item:not(:last-child) {
    margin: 0 0 25px;
}
.cart-list__item.tax-text {
    margin-top: -15px;
}
.cart-list__item dt {
    font-size: 18px;
    font-weight: 500;
}
.cart-list__item dt span {
    font-size: 85%;
}
.cart-list__item dd p {
    font-size: 18px;
    font-weight: 500;
}
.cart-list__item dd p .num,
.cart-list__item dd p .price {
    font-size: 125%;
}
.cart-list__item dd p .txt,
.cart-list__item dd p .yen {
    font-size: 80%;
}
.cart-list__item.tax-text dt,
.cart-list__item.tax-text dd p {
    font-size: 16px;
}
.delivery {
    font-size: 16px;
    line-height: 1.6em;
    padding: 45px 0;
    text-align: center;
}
.cart-right__in .cart-submit__btn {
    border-bottom: 1px solid #e4e4e4;
    margin: 0 0 25px;
    padding: 0 0 25px;
    width: 100%;
}
.cart-right__in .cart-submit__btn a,
.cart-azpay__btn > div[role="button"] {
    display: block;
    margin: 0 auto;
    padding: 15px;
    text-align: center;
    width: 80% !important;
}


.cart-additional {
    border: 2px solid #e4e4e4;
    border-right: 0;
    border-left: 0;
    padding: 15px 0;
}
.cart-coupon {
    border-bottom: 0;
}
.cart-additional dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-additional dl dt {
    font-size: 18px;
    font-weight: 500;
    width: 120px;
}
.cart-additional dl dd {
    width: calc(100% - 140px);
}
.cart-additional__txt {
    font-size: 14px;
    font-weight: 500;
}
.cart-additional__txt .price {
    font-size: 120%;
}
.cart-additional__txt .yen {
    font-size: 80%;
}

.cart-price__flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 25px 0 0;
}
.cart-price__flex .cart-item__price {
    font-weight: 500;
    margin: 0;
}
.cart-item__price.unit {
    font-size: 16px;
}
.cart-item__price.total {
    font-size: 18px;
}

@media screen and (max-width: 968px) {
    .cart-head h1 {
        font-size: 24px;
    }
    .cart-left {
        margin: 0 0 20px;
        width: 100%;
    }
    .cart-right {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .cart-head h1 {
        font-size: 21px;
    }
    .cart-right__in {
        padding: 20px;
    }
    .cart-list__item dt,
    .cart-list__item dd p {
        font-size: 16px;
    }
    .cart-additional dl dt {
        font-size: 14px;
    }
    .cart-item__price.unit {
        font-size: 14px;
    }
    .cart-item__price.total {
        font-size: 16px;
    }
}