@charset "UTF-8";

/* ------------------------------
base
------------------------------ */
#ec p {
    font-size: 1.2rem;
}
#ec input {
    border-radius: 0;
}
#ec select {
    border-radius: 0;
    background: #fff;
    color: #222;
    position: relative;
}
#ec {
    max-width: 1380px;
    margin: 26vw auto;
    padding: 0 20px;
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    color: #222;
}
#ec a {
    color: #222;
    text-decoration: underline;
}

#ec .fs-c-heading--page {
    font-family: 'Noto Serif Display', serif;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 40px;
}
#ec h2.page-ttl {
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    #ec {
        margin: 160px auto;
        padding: 0 40px;
    }
    #ec p {
        font-size: 1.4rem;
    }
    #ec a {
        color: #222;
        text-decoration: underline;
        transition: all .3s;
    }
    #ec a:hover {
        color: #666;
        transition: all .3s;
    }
    #ec .fs-c-heading--page {
        font-size: 4rem;
        margin-bottom: 80px;
    }
    #ec h2.page-ttl {
        margin-bottom: 80px;
    }
}

/* ------------------------------
category
------------------------------ */
/* sort */
#ec .fs-c-productList__controller {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
#ec .fs-c-listControl__status {
    font-size: 1.2rem;
}
#ec .fs-c-sortItems {
    display: flex;
    align-items: center;
}
#ec .fs-c-sortItems__list {
    display: flex;
    align-items: center;
}
#ec .fs-c-sortItems__list li {
    padding-left: 20px;
}

/* pagination */
#ec .fs-c-pagination {
    display: flex;
    justify-content: center;
}
#ec .fs-c-pagination__item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid #222;
    text-decoration: none;
    margin: 0 8px;
}
#ec .fs-c-pagination__item.is-active {
    background: #222;
    color: #fff;
}
#ec .fs-c-pagination__item--next {
    color: #222;
}
#ec .fs-c-productList__controller:nth-child(1) .fs-c-pagination {
    display: none;
}
#ec .fs-c-productList__controller:last-child .fs-c-listControl__status, #ec .fs-c-productList__controller:last-child .fs-c-sortItems {
    display: none;
}
#ec .fs-c-productList__controller:last-child .fs-c-pagination {
    margin: auto;
}
#ec .fs-c-productList__controller:last-child {
    flex-direction: row;
    justify-content: center;

}


/* productList */
#ec .fs-c-productList__list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
#ec .fs-c-productList__list a {
    text-decoration: none;
}
#ec .fs-c-productList__list .fs-c-productList__list__item {
    width: 47%;
    margin-bottom: 40px;
}
#ec .fs-c-productList__list .fs-c-productList__list__item:not(:nth-child(2n)) {
    margin-right: 6%;
}
#ec .fs-c-productList__list .fs-c-productList__list__item img {
    margin-bottom: 15px;
}
#ec .fs-c-productList__list .fs-c-productList__list__item .fs-c-productListItem__productName {
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 400;
}
#ec .fs-c-productList__list .fs-c-productList__list__item .fs-c-productPrice {
    font-size: 1.2rem;
}
#ec .fs-c-productList__list .fs-c-productList__list__item .fs-c-productPrice__addon__label {
    font-size: 1.1rem;
}
#ec .fs-c-pagination__item--next img {
    width: 7px;
}
#ec .fs-c-productListItem__viewMoreImageButton {
    display: none;
}
#ec .fs-c-productListItem__control {
    display: none;
}

@media (max-width: 767px) {
    #ec .fs-c-sortItems {
        position: relative;
        font-size: 1.2rem;
    }
    #ec .fs-c-sortItems__label {
        border: 1px solid #222;
        background: #fff;
        width: 140px;
        height: 30px;
        padding-left: 5px;
        display: flex;
        align-items: center;
        line-height: 1;
    }
    #ec .fs-c-sortItems__list {
        display: none;
    }
    #ec .fs-c-sortItems__list li {
        padding: 0;
    }
    #ec .fs-c-sortItems__list.is_open {
        display: block;
        position: absolute;
        top: 30px;
        left: 0;
        width: 100%;
        background: #fff;
        border: 1px solid #222;
        border-top: none;
    }
    #ec .fs-c-sortItems__list__item.is-active {
        background: #999;
        color: #fff;
    }
    #ec .fs-c-sortItems__list__item__label {
        height: 30px;
        padding: 5px;
        display: flex;
        align-items: center;
    }
    #ec .fs-c-sortItems__label:after {
        content: '▼';
        display: inline-block;
        color: #000;
        position: absolute;
        right: 10px;
    }
    #ec .fs-c-sortItems__list__item a {
        height: 30px;
        padding: 5px;
        display: flex;
        align-items: center;
        width: 100%;
    }
}
@media (min-width: 768px) {
    /* sort */
    #ec .fs-c-productList__controller {
        margin-bottom: 60px;
    }
    #ec .fs-c-listControl__status {
        font-size: 1.4rem;
    }
    #ec .fs-c-sortItems__label:hover {
        cursor: pointer;
    }
    #ec .fs-c-sortItems__label:after {
        content: '：';
        display: inline-block;
        color: #000;
    }
    #ec .fs-c-sortItems__list li {
        padding-left: 20px;
    }

    /* pagination */
    #ec .fs-c-pagination__item {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
        margin: 0 10px;
    }

    /* productList */
    #ec .fs-c-productList__list {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    #ec .fs-c-productList__list a {
        text-decoration: none;
    }
    #ec .fs-c-productList__list .fs-c-productList__list__item {
        width: 23.8%;
        margin-bottom: 80px;
    }
    #ec .fs-c-productList__list .fs-c-productList__list__item:not(:nth-child(4n)) {
        margin-right: 1.6%;
    }
    #ec .fs-c-productList__list .fs-c-productList__list__item .fs-c-productListItem__imageContainer {
        margin-bottom: 20px;
    }
    #ec .fs-c-productList__list .fs-c-productList__list__item .fs-c-productListItem__imageContainer a {
        margin-bottom: 15px;
        transition: all .3s;
    }
    #ec .fs-c-productList__list .fs-c-productList__list__item .fs-c-productListItem__imageContainer a:hover {
        transition: all .3s;
        opacity: .7;
    }
    #ec .fs-c-productList__list .fs-c-productList__list__item .fs-c-productListItem__productName {
        font-size: 1.6rem;
        line-height: 2;
        margin-bottom: 20px;
    }
    #ec .fs-c-productList__list .fs-c-productList__list__item .fs-c-productPrice__main {
        font-size: 1.6rem;
    }
    #ec .fs-c-productList__list .fs-c-productList__list__item .fs-c-productPrice__addon__label {
        font-size: 1.4rem;
    }
    #ec .fs-c-pagination__item--next img {
        width: 7px;
    }
}

/* ------------------------------
ProductDetail
------------------------------ */
#ec .product-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* image */
#ec .fs-c-productCarouselMainImage__expandButton {
    display: none;
}
#ec .product-image {
    width: 100%;
    margin-bottom: 40px;
}
#ec .product-image .product-slider {
    margin-bottom: 15px;
}
#ec .product-image .slick-list {
    padding: 0!important;
}
#ec .product-image .slick-slide {
    margin: 0!important;
    position: relative;
}
#ec .product-image .slick-dotted.slick-slider {
    margin-bottom: 10px;
}
#ec .product-image .slick-track {
    margin: 0!important;
}
#ec #slider_thumb img {
    padding: 0 12px;
}
#ec .slick-prev {
    left: -16px;
}
#ec .slick-next {
    right: -16px;
}
#ec .slick-prev:before,
#ec .slick-next:before {
    color: #999;
}
#ec .fs-c-productCarouselMainImage__thumbnailList::-webkit-scrollbar {
    display: none;
}
#ec .fs-c-productCarouselMainImage__carousel .slick-arrow {
    display: none!important;
}

/* info */
#ec .product-info .category {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 6px;
}
#ec .fs-c-productNameHeading {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}
#ec .fs-c-productPrice--selling {
    display: flex;
    align-items: end;
    margin-bottom: 35px;
}
#ec .fs-c-productPrice__main__label {
    display: none;
}
#ec .fs-c-productPrice__main {
    font-size: 1.6rem;
}
#ec .fs-c-price {
    display: inline-block;
}
#ec .fs-c-productPrice__addon__label:before {
    content: '（';
    display: inline-block;
}
#ec .fs-c-productPrice__addon__label:after {
    content: '）';
    display: inline-block;
}
#ec .fs-c-productPrice__addon {
    font-size: 1.2rem;
    padding-left: 4px;
}
#ec .product-info .ttl {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}
#ec .fs-p-productDescription {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 30px;
}
#ec .product-info .txt {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 30px;
}
#ec .product-info .note {
    color: #444;
    font-size: 1.1rem;
    line-height: 2;
    display: block;
    margin-bottom: 40px;
}
#ec .product-info .note02 {
    margin-bottom: 40px;
}
#ec .product-info .note02 p {
    color: #444;
    font-size: 1.1rem;
    line-height: 2;
}
#ec .product-info .note02 p + p {
    margin-top: 20px;
}

/* cart */
#ec .cart-btn {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
#ec .fs-c-productQuantityAndWishlist__quantity {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}
#ec .fs-c-productQuantityAndWishlist__quantity:before {
    content: '数量';
    position: absolute;
    left: 0;
}
#ec .fs-c-productQuantityAndWishlist__quantity select {
    border: 1px solid #222;
    background-color: #fff;
    width: 120px;
    height: 30px;
    margin-left: 48px;
    padding-left: 5px;
}
#ec .fs-c-quantity {
    max-width: 160px;
}
#ec .fs-c-productActionButton {
    width: 100%;
    margin-bottom: 40px;
}
#ec .fs-c-productActionButton button {
    width: 100%;
    max-width: 335px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    margin: auto;
}

/* sns */
#ec .sns {
    display: flex;
    position: absolute;
    bottom: -20px;
    left: 40px;
}
#ec .sns li {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
#ec .fs-c-productQuantityAndWishlist__wishlist {
    position: absolute;
    bottom: -20px;
    left: 0;
}
#ec .fs-c-button--particular {
    background-color: none;
}
#ec .fs-c-button--particular {
    font-size: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    background-image: url(../ec/icon_fav.svg);
    background-repeat: no-repeat;
    background-color: #F2EFE6;
    width: 30px;
    height: 30px;
    border: none;
}
#ec .fs-c-button--particular {
    font-size: 0;
    width: 30px;
    height: 30px;
}
#ec .sns li.tw {
    font-size: 0;
    display: block;
    width: 30px;
    height: 30px;
}

/* recommend */
#ec .fs-c-featuredProduct {
    margin-top: 100px;
}
#ec .fs-c-featuredProduct .fs-c-productListCarousel {
    position: relative;
}
#ec .fs-c-featuredProduct .fs-c-featuredProduct__title {
    font-family: 'Noto Serif Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}
#ec .fs-c-featuredProduct .slick-slide {
    max-width: 30vw;
}
#ec .fs-c-featuredProduct .fs-c-productListItem__image {
    margin-bottom: 10px;
}
#ec .fs-c-featuredProduct a {
    text-decoration: none;
    font-size: 1.6rem;
}
#ec .fs-c-featuredProduct .fs-c-productName__name {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}
#ec .fs-c-featuredProduct .fs-c-productPrice__main {
    font-size: 1.1rem;
}
#ec .fs-c-featuredProduct .fs-c-productListCarousel__ctrl {
    display: none;
}
#ec .fs-c-featuredProduct .fs-c-button__label {
    display: none;
}

@media (min-width: 768px) {
    #ec .product-detail {
        flex-wrap: initial;
        margin-bottom: 160px;
    }
    /* image */
    #ec .product-image {
        width: 38.4%;
        margin: 0;
    }
    #ec .product-image .slick-slide img {
        max-height: 672px;
    }
    #ec .product-image .slider-thum {
        padding: 12px;
    }

    /* info */
    #ec .product-info {
        width: 53.8%;
    }
    #ec .product-info .category {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    #ec .fs-c-productNameHeading {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
    #ec .fs-c-productPrice--selling {
        margin-bottom: 50px;
    }
    #ec .fs-c-productPrice__main {
        font-size: 2rem;
    }
    #ec .fs-c-productPrice__addon {
        font-size: 1.4rem;
    }
    #ec .product-info .ttl {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 15px;
    }
    #ec .fs-p-productDescription {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
    #ec .product-info .txt {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
    #ec .product-info .note {
        font-size: 1.2rem;
        margin-bottom: 50px;
    }
    #ec .product-info .note02 {
        margin-bottom: 40px;
    }
    #ec .product-info .note02 p {
        font-size: 1.2rem;
    }
    #ec .product-info .note02 p + p {
        margin-top: 20px;
    }

    /* cart */
    #ec .cart-btn {
        flex-wrap: initial;
        align-items: center;
        margin-bottom: 40px;
    }
    #ec .fs-c-productQuantityAndWishlist__quantity {
        margin: 0 60px 0 0;
        width: 140px;
    }
    #ec .fs-c-productQuantityAndWishlist__quantity select {
        width: 60px;
    }
    #ec .fs-c-productActionButton {
        margin: 0;
        width: 300px;
    }
    #ec .fs-c-productActionButton button {
        height: 60px;
    }
    #ec .fs-c-quantity {
        max-width: 100px!important;
    }

    /* sns */
    #ec .sns {
        margin: 30px 0 0;
        bottom: -60px;
        left: 40px;
    }
    #ec .fs-c-productQuantityAndWishlist__wishlist {
        bottom: -60px;
    }

    /* recommend */
    #ec .fs-c-featuredProduct h2.fs-c-featuredProduct__title {
        font-size: 3.2rem;
        margin-bottom: 60px;
    }
    #ec .fs-c-featuredProduct .fs-c-productListCarousel__list__itemTrack {
        width: 100%;
        margin: auto;
        padding: 0 7%;
    }
    #ec .fs-c-featuredProduct .slick-slide {
        max-width: 255px;
        margin: 0 11px;
    }
    #ec .fs-c-featuredProduct a:hover .fs-c-productListItem__image {
        transition: all .3s;
        opacity: .7;
    }
    #ec .fs-c-featuredProduct .fs-c-productListItem__image {
        transition: all .3s;
        margin-bottom: 20px;
    }
    #ec .fs-c-featuredProduct .fs-c-productName__name {
        font-size: 1.6rem;
    }
    #ec .fs-c-featuredProduct .fs-c-productPrice__main {
        font-size: 1.6rem;
    }
    #ec .fs-c-featuredProduct .fs-c-productPrice__addon {
        font-size: 1.4rem;
        padding-left: 4px;
    }
    #ec .fs-c-featuredProduct .fs-c-productListCarousel__ctrl {
        display: block;
    }
    #ec .fs-c-featuredProduct .fs-c-productListCarousel__ctrl--prev {
        width: 48px;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        cursor: pointer;
        transition: all .4s;
    }
    #ec .fs-c-featuredProduct .fs-c-productListCarousel__ctrl--next {
        width: 48px;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
        transition: all .4s;
    }
    #ec .fs-c-featuredProduct .fs-c-productListCarousel__ctrl--next,
    #ec .fs-c-featuredProduct .fs-c-productListCarousel__ctrl--prev {
        z-index: 10;
        background-repeat: no-repeat;
        background-position: center;
    }
    #ec .fs-c-featuredProduct .fs-c-productListCarousel__ctrl--next:hover,
    #ec .fs-c-featuredProduct .fs-c-productListCarousel__ctrl--prev:hover {
        opacity: .5;
    }
    #ec .fs-c-featuredProduct .fs-c-productListCarousel__ctrl--next {
        background-image: url(../ec/arrow_next.svg);
    }
    #ec .fs-c-featuredProduct .fs-c-productListCarousel__ctrl--prev {
        background-image: url(../ec/arrow_prev.svg);
    }
}

/* ------------------------------
特定商取引法
------------------------------ */
#ec .about .page-ttl {
    font-size: 1.8rem;
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-weight: normal;
    margin-bottom: 60px;
    text-align: center;
}
#ec .about .terms {
    display: flex;
    flex-wrap: wrap;
}
#ec .about .terms dt {
    font-size: 1.4rem;
    margin-bottom: 10px;
    width: 100%;
    line-height: 1.6;
}
#ec .about .terms dd {
    font-size: 1.2rem;
    line-height: 1.6;
    border-bottom: 1px solid #999;
    padding-bottom: 15px;
    margin-bottom: 20px;
    width: 100%;
}

@media (min-width: 768px) {
    #ec .about .page-ttl {
        font-size: 2.4rem;
        margin-bottom: 80px;
    }
    #ec .about .terms {
        max-width: 800px;
        margin: 0 auto;
    }
    #ec .about .terms dt {
        width: 27.5%;
        padding: 0 20px 40px 0;
        margin-bottom: 40px;
        border-bottom: 1px solid #999;
    }
    #ec .about .terms dd {
        width: 72.5%;
        font-size: 1.4rem;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
}

/* ------------------------------
プライバシーポリシー
------------------------------ */
#ec .about .privacy {
    width: 100%;
    color: #222;
}
#ec .about .privacy h3.ttl {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}
#ec .about .privacy ol {
    margin: 0;
}
#ec .about .privacy ol li {
    line-height: 2;
    list-style: inside;
    list-style-type: decimal;
}
#ec .about .privacy p {
    font-size: 1.2rem;
    line-height: 2;
}
#ec .about .privacy p + h3.ttl,
#ec .about .privacy address + h3.ttl,
#ec .about .privacy ol + h3.ttl {
    margin-top: 40px;
}
#ec .about .privacy p + p {
    margin-top: 25px;
}
#ec .about .privacy address span {
    display: block;
    font-style: normal;
    line-height: 2;
}

@media (min-width: 768px) {
    #ec .about .privacy {
        max-width: 800px;
        margin: 0 auto;
    }
    #ec .about .privacy h3.ttl {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    #ec .about .privacy p {
        font-size: 1.4rem;
    }
    #ec .about .privacy p + h3.ttl,
    #ec .about .privacy address + h3.ttl,
    #ec .about .privacy ol + h3.ttl {
        margin-top: 60px;
    }
    #ec .about .privacy p + p {
        margin-top: 30px;
    }
}

/* ------------------------------
お問い合わせ
------------------------------ */
#ec .contact h2.page-ttl {
    font-family: 'Noto Serif Display', serif;
    font-size: 2.4rem;
    text-align: center;
}
#ec .contact p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
#ec .contact .required {
    color: red;
}
#ec .contact input[type="text"] {
    border: 1px solid #999;
    width: 100%;
    height: 40px;
    padding: 5px;
    margin-bottom: 40px;
    font-size: 1.4rem;
}
#ec .contact textarea {
    border: 1px solid #999;
    width: 100%;
    height: 200px;
    padding: 15px;
    margin-bottom: 40px;
    font-size: 1.4rem;
    line-height: 2;
}
#ec .contact input[type="submit"] {
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 335px;
    height: 50px;
    border: none;
    cursor: pointer;
}
#ec .contact select {
    border: 1px solid #999;
    width: 100%;
    height: 40px;
    padding: 5px;
    margin-bottom: 40px;
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}
#ec .contact select::-ms-expand {
    display: block;
}
#ec .contact .note {
    font-size: 1.3rem;
    margin-bottom: 20px;
}
#ec .contact .fs-c-button--plain {
    width: 100%;
    height: 50px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    #ec .contact h2.page-ttl {
        font-size: 4rem;
    }
    #ec .contact {
        max-width: 600px;
        margin: 0 auto;
    }
    #ec .contact .note {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    #ec .contact p {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    #ec .contact select {
        width: 240px;
    }
    #ec .contact input[type="submit"] {
        max-width: 300px;
        margin: auto;
    }
    #ec .contact .fs-c-button--plain {
        width: 300px;
        height: 50px;
        margin-top: 60px;
    }
    #ec .contact .thanks-txt {
        text-align: center;
    }
}

/* ------------------------------
ショッピングカート
------------------------------ */
#ec .fs-l-cart__contentsArea {
    display: flex;
    flex-wrap: wrap;
}
#ec .fs-c-cartPayment__button a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    text-decoration: none;
    margin: 0 auto 20px;
    padding: 15px;
}
#ec .fs-c-continueShopping {
    text-align: center;
    width: 100%;
}
#ec .fs-c-continueShopping a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #222;
    color: #222;
    text-decoration: none;
    margin: 0 auto 20px;
    padding: 15px;
}
#ec .fs-c-panelContainer {
    max-width: 80%;
    min-width: auto;
    margin: 0 auto;
}
#ec .fs-l-cart__mainColumn {
    margin-bottom: 40px;
}
#ec .fs-l-cart__sideColumn {
    width: 100%;
}
#ec .fs-c-orderTotalTable {
    width: 100%;
}
#ec .fs-c-purchaseHere__message p {
    font-size: 1.4rem;
    margin: 20px 0;
    text-align: center;
}
.fs-c-breadcrumb {
    display: none!important;
}
#fs-cartTotals-container .fs-c-price__value {
    font-size: 1.8rem;
    font-weight: 600;
}
#ec .fs-c-noResultMessage__title {
    margin-bottom: 40px;
}

/* ログイン */
#ec .fs-c-registeredUsers__title,
#ec .fs-c-checkout-buyerInfo__title {
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    text-align: center;
    font-weight: normal;
    font-size: 2rem;
    margin-bottom: 20px;
}
#ec .fs-c-fsLogin {
    text-align: center;
}
#ec .fs-c-inputTable {
    margin: 0 auto;
}
#ec .fs-c-button--login {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    text-decoration: none;
}
#ec .fs-c-buttonContainer--guestPurchase a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #222;
    color: #222;
    text-decoration: none;
    margin: 0 auto;
}
#ec .fs-c-inputTable__headerCell {
    padding-right: 10px;
}
#ec .fs-c-button--displayPassword {
    background-image: url(../ec/icon_pass.svg);
    background-position: center;
    background-color: #fff;
    background-size: 16px;
}
#ec .fs-c-button--hidePassword {
    background-image: url(../ec/icon_pass02.svg);
    background-position: center;
    background-color: #fff;
    background-size: 16px;
}
#ec .fs-c-inputTable {
    width: 100%;
    margin-bottom: 20px;
}
#ec .fs-c-inputTable tr {
    display: flex;
    flex-direction: column;
    width: 100%;
}
#ec .fs-c-inputTable th {
    width: 100%;
    text-align: left;
    padding-bottom: 5px;
}
#ec .fs-c-inputTable td {
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
}
#ec .fs-c-inputInformation__link {
    padding: 10px 20px 40px;
}

/* 情報入力 */
#ec .fs-c-checkout-customerInfo {
    padding: 20px 0;
    line-height: 2;
}
#ec .fs-c-checkout-multiDestinationList {
    border-bottom: 1px solid #ccc;
    line-height: 2;
}
#fs-addressInfo-container {
    margin: 60px 0;
}
#ec .fs-c-checkout-preview__button {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}
#ec .fs-c-checkout-multiDestination__info {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
#ec .fs-c-checkout-multiDestination__title {
    font-weight: 700;
}
#ec .fs-c-checkout-multiDestination__subtitle {
    font-weight: 700;
    font-size: 1.6rem;
}
#ec .fs-c-checkout-delivery__method__title {
    font-size: 1.3rem;
}
#ec .fs-c-checkout-delivery__method__message {
    font-size: 1.3rem;
}
#ec .fs-c-checkout-paymentInfo__title {
    font-weight: 400;
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    text-align: center;
}
#ec .fs-c-checkout-orderInfo__title {
    font-weight: 400;
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    text-align: center;
}
#fs-paymentList-container {
    border-bottom: 1px solid #ccc;
    padding: 0 0 40px;
}
#fs-orderContents-container {
    margin: 60px auto 10px;
}
#fs_orderTotalContainer {
    margin: 60px auto;
}
#ec .fs-c-button--standard {
    text-decoration: none;
}
#ec .fs-c-checkout-preview__title {
    font-weight: 400;
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    text-align: center;
}
#ec .fs-c-orderTotalTable .fs-c-price {
    font-weight: 700;
}
.fs-c-creditCardIcons {
    display: flex;
    margin-bottom: 20px;
}
#ec .fs-c-checkout-paymentMethod__option__title {
    margin-bottom: 10px;
}
#ec .fs-c-checkout-paymentMethod__option {
    margin-bottom: 20px;
}
#ec .fs-c-checkout-paymentMethod__option__body {
    margin-bottom: 20px;
}

/* 複数お届け先登録 */
#fs-addressList-container .fs-c-button--back--moderate {
    width: 100%;
    padding: 15px;
}
#ec #fs-addressList-container .fs-c-button--delete {
    background-color: transparent;
    border: 1px solid #222;
    color: #222;
    margin: 20px 0 0;
    margin-bottom: 20px;
}
#fs-addressList-container .fs-c-checkout-addresseeList li {
    border-bottom: 1px solid #ccc;
    padding: 20px 0 0;
    margin-bottom: 20px;
}
#fs-addressList-container .fs-c-checkout-multiAddress {
    margin-bottom: 40px;
}
#fs-addressList-container .fs-c-buttonContainer--next {
    margin-bottom: 20px;
}

/* お届け先編集 */
.fs-c-modal__title {
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}
.fs-c-modal__inner {
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    padding: 15px;
}
.fs-c-checkout-addressee__data {
    line-height: 1.6;
}
.fs-c-button--confirmDelete {
    background: #222;
    color: #fff;
    padding: 4px 6px;
    border: none;
}
.fs-c-button--cancel {
    border: 1px solid #222;
    color: #222;
    padding: 4px 6px;
}
.fs-c-modal__contents .fs-c-buttonContainer {
    margin: 20px 0;
}
.fs-c-button--addDestination {
    border: 1px solid #222;
    background: #222;
    color: #fff;
    padding: 4px 6px;
}
.fs-c-checkout-checkoutMethodList > li {
    margin: 20px 0 40px;
}
.fs-c-button--settings {
    border: 1px solid #222;
    background: #222;
    color: #fff;
    padding: 4px 6px;
}
.fs-c-modal__inner .fs-c-button--setDestination {
    border: 1px solid #222;
    background: #222;
    color: #fff;
    padding: 4px 6px;
}
.fs-c-modal__inner .fs-c-button--addAddressee {
    border: 1px solid #222;
    background: #222;
    color: #fff;
    padding: 4px 6px;
}

/* 商品数量指定 */
#ec .fs-c-checkout-deliveryInfo .fs-c-checkout-multiDestinationList {
    margin-bottom: 40px;
}
#ec .fs-c-checkout-deliveryInfo .fs-c-checkout-productAllocation__product {
    flex-direction: initial;
}
.fs-c-checkout-productAllocation__productImage {
    padding-right: 20px;
    margin-bottom: 20px;
}
#ec .fs-c-buttonContainer--next {
    margin-bottom: 15px;
}

/* 注文完了 */
#ec .fs-c-checkoutSuccess {
    text-align: center;
}
#ec .fs-c-checkoutSuccess__title {
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-size: 1.8rem;
    margin: 20px 0;
}


/* お気に入りパーツ */
#ec .fs-c-wishlistProduct {
    margin: 80px 0 40px;
}
#ec .fs-c-wishlistProduct__title {
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    margin-bottom: 30px;
}
#ec .fs-c-wishlistProduct .fs-c-productListItem__imageContainer {
    margin-bottom: 20px;
}
#ec .fs-c-wishlistProduct .fs-c-productListItem__productName {
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}
#ec .fs-c-wishlistProduct .fs-c-productListItem__productName a {
    text-decoration: none;
    font-size: 1.4rem;
}
#ec .fs-c-wishlistProduct .fs-c-productPrice__main {
    font-size: 1.4rem;
}
#ec .fs-c-wishlistProduct .fs-c-productPrice__addon {
    font-size: 1.1rem;
}
#ec .fs-c-slick .slick-slide {
    width: 1.2%;
}
#ec .fs-c-wishlistProduct .slick-arrow {
    display: none!important;
}
#ec .fs-c-button--myPageTop {
    width: 100%;
    padding: 15px;
}

/* 見出し */
#ec .fs-c-checkout-deliveryInfo__title {
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    text-align: center;
    font-weight: normal;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
#ec .fs-c-checkout-paymentInfo__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
#ec .fs-c-checkout-orderInfo__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
#ec .fs-c-checkout-preview__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* ボタン */
#ec button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    text-decoration: none;
    border: none;
    transition: all .3s;
    width: 100%;
    height: 50px;
}
#ec .fs-c-button--plain {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #222;
    color: #222;
    text-decoration: none;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    height: 40px;
}
#ec .fs-c-button--standard {
    padding: 4px 8px;
    background: #222;
    color: #fff;
    border: none;
}
#ec .fs-c-buttonContainer--changeSmall {
    text-align: right;
    margin: 20px 0 10px;
}
#ec .fs-c-continueShopping a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #222;
    color: #222;
    text-decoration: none;
    margin: 0 auto;
}
#ec .fs-c-cartTable__actionButton__container + .fs-c-cartTable__actionButton__container {
    margin-left: 10px;
}
#ec .fs-c-viewAllProductsLink {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #222;
    color: #222;
    text-decoration: none;
    margin: 0 auto;
    width: 100%;
    padding: 15px;
}
#ec .fs-c-button--confirmOrder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    text-decoration: none;
    margin: 0 auto;
    width: 100%;
    margin: 40px auto;
    padding: 15px;
    border: none;
}

@media screen and (max-width: 600px) {
    .fs-c-cartTable__dataCell--point::before, .fs-c-cartTable__dataCell--quantity::before, .fs-c-cartTable__dataCell--subtotal::before {
        font-size: 1.4rem;
    }
    .fs-c-cartTable__dataCell--quantity {
        display: flex;
        align-items: center;
    }
    .fs-c-cartTable__row {
        padding-bottom: 20px;
        border-bottom: 1px solid #ccc;
    }
    .fs-c-cartTable__actionButton {
        justify-content: flex-end;
    }
    .fs-c-button--cancel--cart {
        padding: 5px 10px;
    }
}

@media (min-width: 768px) {
    #ec .fs-l-cart__contentsArea {
        justify-content: space-between;
    }
    #ec .fs-l-cart__mainColumn {
        width: 70%;
    }
    #ec .fs-l-cart__sideColumn {
        width: 25%;
    }
    #ec .fs-c-orderTotalTable {
        width: 100%;
    }
    #ec .fs-c-cartTable__productName__name {
        font-size: 1.4rem;
    }
    #ec .fs-c-cartTable__unitPrice .fs-c-productPrice__main {
        font-size: 1.8rem;
    }
    #ec .fs-c-cartPayment__button a {
        height: 60px;
        margin-bottom: 20px;
    }
    #ec .fs-c-cartPayment__button a:hover {
        background: #444;
    }
    #ec .fs-c-continueShopping a {
        max-width: 300px;
        height: 60px;
        margin-top: 40px;
    }
    #ec .fs-c-continueShopping a:hover {
        color: #fff;
        background: #222;
    }
    #ec .fs-c-registeredUsers__title,
    #ec .fs-c-checkout-buyerInfo__title {
        font-size: 2.4rem;
        margin-bottom: 80px;
    }
    #ec .fs-c-inputInformation__message {
        text-align: center;
        margin: 0 auto 40px;
    }

    /* ログイン */
    #ec .fs-c-fsLogin {
        max-width: 400px;
        margin: 0 auto;
    }
    #ec .fs-c-button--login {
        width: 300px;
        height: 60px;
        margin: 40px auto 20px;
    }
    #ec .fs-c-buttonContainer--guestPurchase a {
        width: 300px;
        height: 60px;
        margin: 40px auto 20px;
    }
    #ec .fs-c-button--displayPassword {
        background-size: 20px;
    }

    /* お客様情報 */
    #ec .fs-l-checkout__mainColumn {
        max-width: 800px;
        margin: 0 auto;
    }
    #ec .fs-c-checkout-multiDestinationList {
        padding: 20px 0;
    }
    #ec .fs-c-checkout-multiDestination__title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    #ec .fs-c-checkout-multiDestination__subtitle {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    #ec .fs-c-checkout-delivery__method__title {
        font-size: 1.4rem;
    }
    #ec .fs-c-checkout-delivery__method__message {
        font-size: 1.4rem;
    }
    #ec .fs-c-checkout-paymentInfo {
        padding-bottom: 60px;
    }
    #ec .fs-c-checkout-paymentInfo__title {
        font-weight: 700;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    #ec .fs-c-checkout-paymentInfo__message {
        font-size: 1.4rem;
    }
    #ec .fs-c-checkout-orderInfo__title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    #fs_orderTotalContainer {
        max-width: 800px;
        margin: 60px auto;
    }
    #ec .fs-c-checkout-preview__title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    #ec .fs-c-checkout-deliveryInfo__title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    /* 複数お届け先登録 */
    #fs-addressList-container {
        max-width: 800px;
        margin: 0 auto;        
    }
    #fs-addressList-container .fs-c-button--back--moderate {
        width: 300px;
        height: 50px;
    }
    #fs-addressList-container .fs-c-button--back--moderate:hover {
        background: #222;
        color: #fff;
    }

    /* 商品数量指定 */
    #ec .fs-c-checkout-deliveryInfo {
        max-width: 800px;
        margin: 0 auto;
    }
    #ec .fs-c-buttonContainer--back a {
        width: 300px;
        height: 50px;
        margin: 0 auto;
    }
    

    /* ご注文完了 */
    #ec .fs-c-checkoutSuccess__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    #ec .fs-c-checkoutSuccess__message p {
        font-size: 1.4rem;
    }


    /* お気に入りパーツ */
    #ec .fs-c-wishlistProduct__title {
        font-size: 1.8rem;
        margin: 80px 0 40px;
    }
    #ec .fs-c-productListItem__productName {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    #ec .fs-c-wishlistProduct .fs-c-productPrice__addon {
        font-size: 1.2rem;
    }
    #ec .fs-c-button--myPageTop {
        width: 300px;
        height: 60px;
        margin: 0 auto;
    }

    /* ボタン */
    #ec button[type="submit"] {
        width: 300px;
        height: 60px;
        margin: 40px auto;
    }
    #ec button[type="submit"]:hover {
        background: #444;
    }
    #ec .fs-c-cartTable__actionButton__container + .fs-c-cartTable__actionButton__container {
        margin: 5px 0 0 0;
        font-size: 1.2rem;
    }
    #ec .fs-c-cartTable__actionButton__container--cancel--cart {
        font-size: 1.2rem;
    }
    #ec .fs-c-viewAllProductsLink {
        width: 300px;
        height: 40px;
    }
    #ec .fs-c-viewAllProductsLink:hover {
        background-color: #333;
        color: #fff;
    }
    #ec .fs-c-button--confirmOrder {
        width: 350px;
        height: 60px;
    }
    #ec .fs-c-button--confirmOrder:hover {
        background: #444;
    }
}

/* ------------------------------
マイページ
------------------------------ */
#ec .fs-c-accountService {
    display: flex;
    flex-wrap: wrap;
}
#ec .fs-c-accountService li {
    padding-right: 20px;
    margin-bottom: 10px;
    width: 50%;
}
#ec .fs-c-history__infoSummary {
    margin: 40px 0;
}
#ec .fs-c-history__term {
    font-weight: 700;
    padding-bottom: 10px;
}

/* 注文履歴 */
#ec .fs-c-history {
    max-width: 800px;
    margin: 0 auto;
}

/* お届け先リスト */
#ec .fs-c-addressBookList__addButton {
    max-width: 800px;
    margin: 0 auto 15px;
}
#ec .fs-c-addressBookList__form {
    max-width: 800px;
    margin: 0 auto;
}
#ec .fs-c-button--addToAddressbook {
    background: #222;
    color: #fff;
    text-decoration: none;
    padding: 4px 8px;
}
#ec .fs-c-addressBookList__list {
    width: 100%;
    margin: 0 auto 40px;
}
#ec .fs-c-addressBookList__list tr {
    background-color: transparent;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}
#ec .fs-c-addressBookList__list td {
    padding-bottom: 15px;
}
#ec .fs-c-addressBookList__list .fs-c-buttonContainer .fs-c-button--changeInfomation {
    margin-right: 10px;
    border: 1px solid #222;
    padding: 2px 8px;
    text-decoration: none;
}
#ec .fs-c-addressBookList__count {
    max-width: 800px;
    margin: 0 auto 15px;
}
#ec .fs-c-addressBookList__message {
    max-width: 800px;
    margin: 0 auto;
}

/* お届け先リスト - 追加 */
#ec .fs-c-inputInformation__field {
    max-width: 600px;
    margin: 0 auto;
}
#ec .fs-c-inputInformation__button {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#ec .fs-c-inputInformation__button .fs-c-button--register {
    margin: 0 0 20px 0;
}
#ec .fs-c-inputInformation__button .fs-c-button--cancel {
    border: 1px solid #222;
    color: #222;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
}

/* パスワード変更 */
#ec .fs-c-buttonContainer--change {
    margin-bottom: 20px;
}

/* 会員情報変更 */
#fs_form .fs-c-button--change {
    background-color: #222;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 100%;
    height: 40px;
}

/* 退会 */
#ec .fs-c-buttonContainer--pair .fs-c-button--confirmLeave {
    margin: 0 0 20px;
}

@media (min-width: 768px) {
    #ec .fs-c-accountService {
        justify-content: center;
    }
    #ec .fs-c-accountService li {
        padding-right: 20px;
        width: auto;
    }

    /* 注文履歴 */
    #ec .fs-c-history__infoSummary {
        margin: 40px 0;
    }

    /* お届け先リスト */
    #ec .fs-c-addressBookList__list tr {
        border: none;
        padding-bottom: 0;
    }
    #ec .fs-c-addressBookList__list td {
        border-bottom: 1px solid #ccc;
        padding: 15px 0;
    }
    /* お届け先リスト - 追加 */
    #ec .fs-c-inputInformation__button .fs-c-button--register {
        margin: 0 30px 40px 0;
    }
    #ec .fs-c-inputInformation__button .fs-c-button--cancel {
        width: 200px;
        height: 60px;
        margin: 0;
    }

    /* パスワード変更 */
    #ec .fs-c-buttonContainer--change {
        margin-bottom: 0;
    }

    /* 会員情報変更 */
    #fs_form .fs-c-button--change {
        width: 300px;
        height: 60px;
        margin-bottom: 20px;
    }
    #fs_form .fs-c-button--change:hover {
        background-color: #444;
        color: #fff;
    }

    /* 退会 */
    #ec .fs-c-buttonContainer--pair .fs-c-button--confirmLeave {
        margin: 0 30px 40px;
    }
}

/* ------------------------------
会員登録
------------------------------ */
#ec .fs-c-agreementConfirmationArea .fs-c-agreementConfirmation__checkbox {
    margin: 20px 0;
}
#ec .fs-c-agreementConfirmationArea  .fs-c-agreementConfirmation {
    margin-top: 20px;
}
#ec .fs-c-agreementConfirmationArea  .fs-c-agreementConfirmation__addon {
    margin: 10px 100px 0 0;
}
#ec .fs-c-newUsers {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    line-height: 2;
}
#ec .fs-c-newUsers .fs-c-newUsers__title {
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-weight: normal;
    margin-bottom: 30px;
}
#ec .fs-c-newUsers .fs-c-button--memberRegister {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    text-decoration: none;
    margin: 0 auto;
    width: 100%;
    margin: 40px auto;
    padding: 15px;
    border: none;
}

/* 規約 */
#ec .fs-p-memberAgreement .fs-c-documentColumn__heading {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}
#ec .fs-p-memberAgreement ol {
    margin: 0;
}
#ec .fs-p-memberAgreement ol li {
    line-height: 2;
    list-style: inside;
    list-style-type: decimal;
}
#ec .fs-p-memberAgreement p {
    font-size: 1.2rem;
    line-height: 2;
}
#ec .fs-p-memberAgreement .fs-c-documentColumn__heading {
    margin-top: 40px;
}
#ec .fs-p-memberAgreement p + h3,
#ec .fs-p-memberAgreement address + h3,
#ec .fs-p-memberAgreement ol + h3 {
    margin-top: 40px;
}
#ec .fs-p-memberAgreement p + p {
    margin-top: 25px;
}

@media (min-width: 768px) {
    #ec .fs-p-memberAgreement {
        max-width: 800px;
        margin: 0 auto;
    }
    #ec .fs-p-memberAgreement h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    #ec .fs-p-memberAgreement p {
        font-size: 1.4rem;
    }
    #ec .fs-p-memberAgreement p + h3,
    #ec .fs-p-memberAgreement + h3 {
        margin-top: 60px;
    }
    #ec .fs-p-memberAgreement p + p {
        margin-top: 30px;
    }
    #ec .fs-c-newUsers .fs-c-button--memberRegister {
        width: 300px;
        height: 60px;
    }
    #ec .fs-c-newUsers .fs-c-button--memberRegister:hover {
        background: #444;
    }
}

/* ------------------------------
返品特約
------------------------------ */
#ec .fs-p-returnPolicy {
    max-width: 800px;
    margin: 0 auto;
}
#ec .fs-p-returnPolicy .fs-c-documentColumn__heading {
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}
#ec .fs-p-returnPolicy .fs-p-address {
    margin-top: 15px;
    font-style: normal;
}
#ec .fs-p-returnPolicy ol {
    margin: 0;
}
#ec .fs-p-returnPolicy ol li {
    line-height: 2;
    list-style: inside;
    list-style-type: decimal;
}
#ec .fs-p-returnPolicy ul li {
    line-height: 2;
    list-style: inside;
    list-style-type: disc;
}
#ec .fs-p-returnPolicy p {
    font-size: 1.2rem;
    line-height: 2;
}
#ec .fs-p-returnPolicy .fs-c-documentColumn__heading {
    margin-top: 40px;
}
#ec .fs-p-returnPolicy p + h3,
#ec .fs-p-returnPolicy address + h3,
#ec .fs-p-returnPolicy ol + h3 {
    margin-top: 40px;
}
#ec .fs-p-returnPolicy p + p {
    margin-top: 25px;
}

@media (min-width: 768px) {
    #ec .fs-p-returnPolicy {
        max-width: 800px;
        margin: 0 auto;
    }
    #ec .fs-p-returnPolicy h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    #ec .fs-p-returnPolicy p {
        font-size: 1.4rem;
    }
    #ec .fs-p-returnPolicy p + h3,
    #ec .fs-p-returnPolicy + h3 {
        margin-top: 60px;
    }
    #ec .fs-p-returnPolicy p + p {
        margin-top: 30px;
    }
}

/* ------------------------------
AmazonPay
------------------------------ */
#ec .fs-c-checkout-loginGuidance {
    text-align: center;
    margin-bottom: 40px;
}
#ec .fs-c-checkout-destination {
    border-bottom: 1px solid #ccc;
}
#ec .fs-c-checkout-paymentInfo {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 40px;
}
#ec .fs-c-checkout-destination {
    padding-bottom: 20px;
    margin-bottom: 40px;
}
#ec .fs-c-checkout-destination__title {
    font-weight: 700;
}
#ec .fs-c-checkout-buyerInfo__title {
    font-weight: 700;
}
#ec .fs-c-checkout-delivery__title {
    font-weight: 700;
}
#ec .fs-c-checkout-loginGuidance__button {
    margin-top: 20px;
}
#ec .fs-c-button--loginAndPurchase--unregistered {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    height: 46px;
}
#ec #paymentDescriptor {
    font-weight: 700;
}
#ec .fs-c-checkout-orderInfo__title {
    font-weight: 700;
}
#ec .fs-c-checkout-preview__title {
    font-weight: 700;
}
#ec .fs-c-anotherLogin__button--amazon {
    margin: 30px auto 20px;
}
#ec .fs-c-payWithAmazon__button {
    margin-bottom: 20px;
}
#ec .fs-c-checkout-paymentMethodInfo__img img {
    width: auto;
}
@media (min-width: 768px) {
    #ec .fs-c-checkout-loginGuidance {
        margin-bottom: 80px;
    }
    #ec .fs-c-checkout-loginGuidance__button {
        margin-top: 20px;
    }
    #ec .fs-c-button--loginAndPurchase--unregistered {
        width: 350px;
        height: 60px;
    }
    #ec #fs-amazonPaymentInfo-container {
        margin: 30px 0;
    }
    #ec .fs-c-checkout-destination {
        padding-bottom: 20px;
        margin-bottom: 40px;
    }
    #ec .fs-c-checkout-paymentInfo {
        margin-bottom: 40px;
    }
    #ec #fs-deliveryInfo-container {
        padding-top: 30px;
    }
    #ec .fs-c-checkout-orderInfo__title {
        padding-bottom: 20px;
    }
    #ec .fs-c-checkout-preview__title {
        padding-bottom: 20px;
    }
    #ec .fs-c-anotherLogin__message--amazon {
        text-align: center;
    }
}