.member-top-block,
.info-block {
  width: 800px;
  margin: 0 auto;
  color: #333333;
}
@media (max-width: 900px) {
  .member-top-block,
.info-block {
    width: 90%;
  }
}
.quantity-total::-webkit-outer-spin-button,
.quantity-total::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.member-top-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 100px;
}
@media (max-width: 500px) {
  .member-top-block {
    padding-top: 15px;
  }
}
.member-top-block .back-previous-page {
  width: 18px;
  cursor: pointer;
}
.member-top-block .member-title {
  font-size: 1rem;
  line-height: 24px;
  font-weight: bolder;
}

.info-block {
  border-top: 1px solid #f4f4f4;
  min-height: calc(100vh - 400px);
  padding-top: 20px;
}
.info-block .heading {
  font-size: 0.875rem;
  line-height: 22px;
}

.shopping-list-block {
  width: 100%;
  border-bottom: 1px solid #f4f4f4;
  padding: 30px 0;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .shopping-list-block {
    padding: 10px 0;
  }
}

.product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.product-item > div {
  padding: 10px 0;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .product-item > div {
    padding: 5px 0;
  }
}
.product-item .product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media (max-width: 600px) {
  .product-item .product-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.product-item .title {
  font-size: 1rem;
  line-height: 24px;
}
@media (max-width: 600px) {
  .product-item .title {
    font-size: 0.75rem;
    line-height: 20px;
    width: 100%;
    margin-bottom: 25px;
  }
}
.product-item .text-box {
  width: 60%;
}
@media (max-width: 600px) {
  .product-item .text-box {
    width: 100%;
  }
}
.product-item .quantity-funciton,
.product-item .total-box {
  font-weight: bold;
}
.product-item .quantity-funciton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #f4f4f4;
  padding: 5px;
  margin-right: 5%;
  width: 100px;
}
.product-item .quantity-funciton img {
  width: 15px;
  cursor: pointer;
}
.product-item .quantity-funciton input {
  border: 0;
  outline: none;
  width: 100%;
  text-align: center;
}
.product-item .total-box {
  font-size: 1.125rem;
  line-height: 26px;
  font-weight: bold;
}
.product-item .total-box .price {
  display: none;
}
.product-item .image-box {
  width: 80px;
  margin-right: 15px;
  position: relative;
}
.product-item .remove-box {
  position: absolute;
  top: 0px;
  left: -10px;
  background: #4d4d4d;
  width: 18px;
  height: 18px;
  text-align: center;
  cursor: pointer;
}
.product-item .remove-box img {
  /*width: 12px;*/
}

.shopping-checkout-detail {
  margin-bottom: 120px;
  padding-top: 20px;
  text-align: center;
}
@media (max-width: 600px) {
  .shopping-checkout-detail {
    margin-bottom: 30px;
  }
}

.shopping-checkout-info {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  font-size: 0.875rem;
  line-height: 22px;
}
@media (max-width: 600px) {
  .shopping-checkout-info {
    margin-bottom: 15px;
  }
}
.shopping-checkout-info .lump-sum {
  font-size: 1.125rem;
  line-height: 26px;
  font-weight: bolder;
}
@media (max-width: 600px) {
  .shopping-checkout-info .lump-sum {
    font-size: 0.875rem;
    line-height: 22px;
  }
}

a.shopping-checkout-button {
  font-size: 1rem;
  line-height: 24px;
  background: #00a0e9;
  color: #fff;
  padding: 15px 200px;
  border-radius: 30px;
  display: inline-block;
}
@media (max-width: 600px) {
  a.shopping-checkout-button {
    font-size: 0.875rem;
    line-height: 22px;
    padding: 5px 10px;
    width: calc( 100% - 20px );
  }
}