/* ===========================================
* カートページ
* ======================================== */
.fs-l-cart__contentsArea {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 20px;
}
.fs-cartFlow-list {
    position: relative;
    display: flex;
    justify-content: center;
    width: fit-content;
    padding-top: 30px;
    margin-bottom: 80px;
    margin: 30px auto 80px;
}
.fs-cartFlow-item {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    margin: 0 30px;
}
.fs-cartFlow-icon {
    display: block;
    width: 13px;
    height: 13px;
    margin-bottom: 15px;
    border-radius: 50%;
    background-color: #EDEDED;
}
.fs-cartFlow-item.is-active .fs-cartFlow-icon {
    position: relative;
    display: block;
    width: 9px;
    height: 9px;
    margin-top: 2px;
    margin-bottom: 15px;
    border-radius: 50%;
    background-color: #696969;
}
.fs-cartFlow-item.is-active .fs-cartFlow-icon::after {
    content: "";
    position: absolute;
    inset: 0 0 0 -2px;
    margin: auto;
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid #696969;
}
.fs-cartFlow-item.is-active .fs-cartFlow-txt {
    margin-top: 2px;
}
.fs-cartFlow-list::before {
    content: "";
    position: absolute;
    inset: 36px 0 auto 0;
    margin: auto;
    display: block;
    width: calc(100% - 122px);
    height: 1px;
    background-color: #EDEDED;
}

.fs-c-cartTableContainer {
    margin-bottom: 40px;
}
.fs-c-cartTable__row {
    border-bottom: 1px solid #EDEDED;
}
.fs-c-cartTable__row:first-child {
    border-top: 1px solid #EDEDED;
}
.fs-c-cartTable__headerCell, 
.fs-c-cartTable__dataCell {
    font-weight: 500;
    border: none;
    padding: 16px 0;
}
.fs-c-cartTable__headerCell:not(.fs-c-cartTable__headerCell:first-child), 
.fs-c-cartTable__dataCell:not(.fs-c-cartTable__dataCell:first-child) {
    width: 13%;
    text-align: center;
    vertical-align: middle;
}
.fs-c-cartTable__product {
    display: flex;
    align-items: center;
}
.fs-c-cartTable__product > .fs-c-cartTable__productImage {
    padding-right: 12px;
}
.fs-c-cartTable__dataCell .fs-c-productImage a {
    aspect-ratio: 1/1;
    background-color: inherit;
    margin-bottom: 0;
}
.fs-c-cartTable__dataCell .fs-c-productImage a img {
    position: static;
    mix-blend-mode: normal;
}
.fs-c-cartTable__productInfo {
    line-height: 1.6;
}
.fs-c-cartTable__dataCell--quantity .fs-c-quantity {
    margin: 0 auto;
}
.fs-c-cartTable__dataCell--quantity .fs-c-quantity__select {
    height: 30px;
    padding: 5px 10px;
    border: 1px solid #EDEDED;
}
.fs-c-cartTable__dataCell--subtotal .fs-c-price {
    justify-content: center;
    font-weight: 500;
    opacity: 1;
}

.fs-c-cartDiscountInfo {
    float: left;
}

.fs-c-orderTotalTable {
    width: 50%;
    margin-left: auto;
}
.fs-c-orderTotalTable tr {
    border-bottom: 1px solid #EDEDED;
}
.fs-c-orderTotalTable tr:first-child {
    border-top: 1px solid #EDEDED;
}
.fs-c-orderTotalTable th, .fs-c-orderTotalTable td {
    font-weight: 500;
    border: none;
    padding: 12px 0;
}
.fs-c-orderTotalTable > tbody > tr > th {
    text-align: left;
}
.fs-c-orderTotalTable__itemPriceSummary .fs-c-price {
    justify-content: flex-end;
    font-weight: 500;
    opacity: 1;
}

.fs-c-cartPayment__button {
    width: 50%;
    margin-left: auto;
}
.fs-c-button--purchaseHere {
    width: 100%;
}
#fs-checkout-payHere-container {
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid #EDEDED;
    margin-bottom: 30px;
}
.fs-c-purchaseHere::after {
    content: "または";
    position: absolute;
    inset: auto 0 -10px 0;
    width: fit-content;
    height: fit-content;
    margin: auto;
    font-size: 1.4rem;
    background-color: #fff;
    padding: 0 20px;
}

.fs-c-purchaseHere {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.fs-c-payWithAmazon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.fs-c-purchaseHere__message {
    width: 49%;
}
.fs-c-payWithAmazon__message {
    width: 49%;
}
.fs-c-cartTable__actionButton__container--buyItLater {
    display: none;
}
.fs-c-cartDiscountInfo__note {
    display: none;
}

.fs-c-continueShopping {
    width: 240px;
    margin: 0 auto 100px;
}
.fs-c-button--continueShopping {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background-color: #F5F5F5;
    border: 1px solid #F5F5F5;
    transition: all 0.2s ease-out;
}
.fs-c-button--continueShopping:hover {
    background-color: #fff;
    border: 1px solid #080808;
}
.fs-c-button--secondary {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin: 0 auto;
    background-color: #080808;
    border: 1px solid #080808;
    transition: all 0.2s ease-out;
}
.fs-c-button--secondary:hover {
    color: #080808;
    background-color: #fff;
}
.fs-c-buttonContainer--unregisteredUserPurchase {
    margin-top: 10px;
}

.fs-c-wishlistProduct__list.fs-c-productListCarousel {
    padding: 0 80px;
    margin: 0 auto 60px;
}
.fs-c-wishlistProduct__title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding: 0 80px;
}
.fs-c-wishlistProduct__viewAllProducts {
    width: 240px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 100px;
    font-size: 1.4rem;
    background-color: #F5F5F5;
    border: 1px solid #F5F5F5;
    transition: all 0.2s ease-out;
}
.fs-c-wishlistProduct__viewAllProducts:hover {
    background-color: #fff;
    border: 1px solid #080808;
}
.fs-c-wishlistProduct .fs-c-productListCarousel__list__item .fs-c-productImage:hover a img {
    display: none;
}

.fs-body-cart .fs-c-wishlistProduct .fs-c-productListCarousel__list__item .fs-c-productImage:hover a img {
    display: block;
}
.fs-body-cart .fs-c-productImage:hover .hoverImg.is-active {
    display: none;
    z-index: 0;
}
@media screen and (max-width: 600px) {
    .fs-cartFlow-item {
        margin: 0 10px;
    }
    .fs-cartFlow-list::before {
        width: calc(100% - 86px);
    }
    .fs-l-cart__contentsArea {
        margin: 0 auto 30px;
    }
    .fs-c-cartTable__headerCell, .fs-c-cartTable__dataCell {
        padding: 8px 0;
    }
    .fs-c-cartTable__headerCell:not(.fs-c-cartTable__headerCell:first-child), 
    .fs-c-cartTable__dataCell:not(.fs-c-cartTable__dataCell:first-child) {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: center;
    }
    .fs-c-cartTable__dataCell--point::before, 
    .fs-c-cartTable__dataCell--quantity::before, 
    .fs-c-cartTable__dataCell--subtotal::before {
        font-weight: 500;
        font-size: 1.2rem;
    }
    .fs-c-cartTable__dataCell--quantity .fs-c-quantity {
        margin: 0;
    }
    .fs-c-cartDiscountInfo {
        margin-bottom: 10px;
    }
    .fs-c-cartPayment__button {
        width: 100%;
    }
    .fs-c-payWithAmazon__button {
        width: 100%!important;
    }
    .fs-c-buttonContainer--loginAndPurchase {
        order: 1;
    }
    .fs-c-orderTotalTable {
        width: 100%;
    }
    .fs-c-purchaseHere {
        flex-flow: column-reverse;
        padding: 20px 0;
    }
    .fs-c-purchaseHere__message {
        margin-top: 15px;
    }
    .fs-c-payWithAmazon {
        flex-flow: column-reverse;
    }
    .fs-c-payWithAmazon__message {
        margin-top: 15px;
    }
    .fs-c-purchaseHere__message {
        width: 100%;
    }
    .fs-c-payWithAmazon__message {
        width: 100%;
    }
    .fs-c-wishlistProduct__list.fs-c-productListCarousel {
        padding: 0 20px;
        margin: 0 auto 60px;
    }
    .fs-c-wishlistProduct__title {
        padding: 0 20px;
    }
}


/* ===========================================
* ご注文手続きページ
* ======================================== */
.fs-l-order-contentsArea {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 20px;
}
.fs-c-checkout-preview {
    margin-bottom: 50px;
}
.fs-c-checkout-preview__title {
    font-size: 1.6rem;
    margin-bottom: 6px;
}
.fs-c-checkout-destination__destination {
        display: block;
    }
.fs-c-checkout-customerInfo li {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #EDEDED;
}
.fs-c-checkout-destination__list li {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #EDEDED;
}
.fs-u-zipCode {
    margin-right: 10px;
    flex: none;
    align-self: baseline;
}
.fs-c-checkout-paymentMethodList li {
    display: flex;
    flex-flow: column;
    border-bottom: 1px solid #EDEDED;
}
.fs-c-checkout-paymentMethod__title {
    padding: 16px 0;
}
.fs-c-creditCardIcons {
    display: flex;
    align-items: center;
}
.fs-c-checkout-paymentMethod__body > * {
    margin: 0;
}
.fs-c-checkout-paymentInfo__message {
    display: none;
}
.fs-c-checkout-paymentMethod__body {
    padding: 16px 0;
}
.fs-c-buttonContainer--changeSmall {
    text-align: right;
}
.fs-c-orderTotalTable__grandTotal .fs-c-price {
    justify-content: flex-end;
    opacity: 1;
}
.fs-c-orderTotalTable .fs-c-orderTotalTable__total > th, 
.fs-c-orderTotalTable .fs-c-orderTotalTable__total > td, 
.fs-c-orderTotalTable .fs-c-orderTotalTable__grandTotal > th, 
.fs-c-orderTotalTable .fs-c-orderTotalTable__grandTotal > td {
    border-top-width: 0;
    border-top-style: none;
}
.fs-l-order-contentsArea .fs-c-orderTotalTable {
    margin-bottom: 60px;
}
#fs_orderTotalContainer .fs-c-checkout-preview__title {
    width: 50%;
    margin-left: auto;
}
.fs-l-order-contentsArea .fs-c-button--standard {
    width: 200px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: 0;
}
.fs-c-checkout-customerInfo__email::before {
    content: "メールアドレス：";
}
.fs-c-checkout-customerInfo__address.fs-c-address::before {
    content: "住所：";
    flex: none;
    align-self: baseline;
}
.fs-u-tel::before {
    content: "TEL：";
}
.fs-c-checkout-destination__address::before {
    content: "住所：";
    flex: none;
    align-self: baseline;
}
.fs-c-checkout-destination__control *:only-child {
    margin-left: 0;
}
.fs-c-checkout-wrappingMessage {
    display: none;
}
.fs-c-checkout-confirmationList > dd {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}
.fs-c-checkout-confirmationList > dd .fs-c-price {
    opacity: 1;
}
.fs-c-checkout-confirmationList > dt {
    display: none;
}
.fs-c-checkout-pointInfo__usePoint {
    display: flex;
    align-items: center;
}
.fs-c-checkout-pointInfo .fs-c-checkout-confirmationList__value::before {
    content: "ご利用ポイント：";
}
.fs-c-checkout-pointInfo .fs-c-checkout-confirmationList > dt::after {
    height: auto;
}
.fs-c-checkout-pointSettingList {
    margin: 10px 0;
}
#fs_input_usePointAmount {
    height: 30px;
    padding: 5px 10px;
    border: 1px solid #EDEDED;
}
.fs-c-checkout-delivery__method {
    line-height: 1.8;
}
.fs-c-checkout-deliveryMethod__option {
    line-height: 2;
}
#fs_input_expectedArrival_note {
    height: 100px;
    padding: 5px 10px;
    border: 1px solid #EDEDED;
}
.fs-c-checkout-wrappingInfo__info {
    display: flex;
}
.fs-c-returnedSpecialContract {
    width: 46%;
    padding: 21px;
    float: left;
    border: 1px solid #EDEDED;
}
.fs-c-returnedSpecialContract span {
    display: block;
    font-size: 1.4rem;
    color: #86222D;
}

.fs-payment-infoContainer {
    margin: 0 0 30px;
}
.fs-payment-infoContainer dl {
    display: flex;
    align-items: baseline;
    padding: 16px 0;
    border-top: 1px solid #EDEDED;
}
.fs-payment-infoContainer dl dt {
    width: 200px;
    flex: none;
}
.fs-c-checkout-paymentMethod__setting .fs-c-commissionTable {
    width: 100%;
}
.fs-c-checkout-paymentMethod__setting .fs-c-commissionTable tr {
    border-top: 1px solid #EDEDED;
}
.fs-c-checkout-paymentMethod__setting .fs-c-commissionTable th, .fs-c-commissionTable td {
    padding: 10px 0;
    font-weight: 500;
}
.fs-c-checkout-paymentMethod__setting .fs-c-commissionTable th, .fs-c-commissionTable td .fs-c-price {
    font-weight: 500;
    opacity: 1;
}

#__fs_modal_wrapping .fs-c-inputInformation__message {
    display: none;
}
.fs-c-modal__header {
    padding: 25px;
    font-size: 1.8rem;
}


@media screen and (max-width: 768px) {
    .fs-c-checkout-destination__control {
        flex-flow: column;
        align-items: flex-end;
    }
    .fs-c-returnedSpecialContract {
        width: 100%;
        padding: 12px;
        float: none;
    }
    #fs_orderTotalContainer .fs-c-checkout-preview__title {
        width: 100%;
        margin: 30px 0 10px;
    }

    .fs-payment-infoContainer dl dt {
        width: 100px;
        margin-right: 20px;
    }
}


/* ご注文完了 */
.fs-c-checkoutSuccess {
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
    margin: 0 auto 100px;
}
.fs-c-checkoutSuccess h2 {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.fs-c-productImage:hover a img {
    display: block;
}

/* 包装設定の改修 */
.message-card__container {
    display: none;
}
#__fs_modal_wrapping .message-card__container {
    display: block;
    padding: 8px;
    margin-top: 20px;
}
#__fs_modal_wrapping .message-card__ttl {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
#__fs_modal_wrapping .fs-c-inputInformation__field {
    margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
    #__fs_modal_wrapping .fs-c-modal__header {
        padding: 25px 17px;
    }
    #__fs_modal_wrapping .fs-c-inputTable--inModal > tbody > tr {
        padding: 8px 0;
    }
    #__fs_modal_wrapping .fs-c-dropdown__menu {
        font-size: 1.1rem;
        padding: 5px 25px 5px 10px;
    }
}