@charset "UTF-8";

/* cart */
@media (min-width: 769px) {
  .cart__inner {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cart__inner {
    padding: 0;
  }
}

.cart__favorite,
.cart__license {
  width: 110px;
  margin: 8px auto;
  background-size: 15px;
  background-repeat: no-repeat;
  font-size: 11px;
}

.cart__favorite a,
.cart__license a {
  color: #111;
}

.cart__favorite {
  position: relative;
  margin: 15px 0 0;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 22px;
  background-color: #fff;
  background-image: url(/img_sc/sourcenext_com/common/icon-favorite.png);
  background-position: 6px center;
  border: none;
  border-radius: 3px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  /*
  &[data-do="add-finish"]{
    background-image: url(/img_sc/sourcenext_com/common/icon-favorite-delete.png);
    &:hover{
      &::after{
        content: "登録しました";
      }
    }
  }
  */
  /*
  &[data-do="delete-finish"]{
    &:hover{
      &::after{
        content: "削除しました";
      }
    }
  }
  */
}

.cart__favorite a {
  display: block;
  width: 100%;
  height: 100%;
}

.cart__favorite::before {
  content: 'お気に入り登録';
}

.cart__favorite::after {
  position: absolute;
  z-index: 2;
  width: 180px;
  left: -35px;
  top: -68px;
  text-align: center;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/img_sc/sourcenext_com/common/favorite-balloon.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0 5px 10px;
}

.cart__favorite[data-do="add"]:hover::before,
.cart__favorite[data-do="add-finish"]:hover::before,
.cart__favorite[data-do="delete"]:hover::before,
.cart__favorite[data-do="delete-finish"]:hover::before {
  display: block;
}

.cart__favorite[data-do="add"] {
  animation-name: fadein;
  animation-duration: 1s;
}

.cart__favorite[data-do="add"]:hover::after {
  content: "お気に入りへ登録します。登録すると次回キャンペーン開催時に、メールでお知らせします。";
}

.cart__favorite[data-do="add"]:active {
  animation-name: fadeout;
  animation-duration: 1s;
}

.cart__favorite[data-do="delete"] {
  background-image: url(/img_sc/sourcenext_com/common/icon-favorite-delete.png);
  animation-name: fadein;
  animation-duration: 1s;
}

.cart__favorite[data-do="delete"]:hover::after {
  content: "お気に入りから削除します";
}

.cart__favorite[data-do="delete"]:active {
  animation-name: fadeout;
  animation-duration: 1s;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.NotLogin .cart__favorite {
  display: none;
}

.cart__left .toNotLogin {
  display: none;
  /*
  .Favorite {
    width: 110px;
    margin: 8px auto;
    background-size: 15px;
    background-repeat: no-repeat;
    font-size: 11px;
    position: relative;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 22px;
    background-color: #fff;
    background-image: url(/img_sc/sourcenext_com/common/icon-favorite.png);
    background-position: 6px center;
    border: none;
    border-radius: 3px;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
    cursor: pointer;
    &::before {
      content: 'お気に入り登録';
    }
    &::after{
      position: absolute;
      z-index: 2;
      width: 180px;
      left: -35px;
      top: -60px;
      text-align: center;
      height: 55px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-image: url(/img_sc/sourcenext_com/common/favorite-balloon.png);
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      padding: 0 5px 10px;
    }
  }
  .IsLogin & {
    display: none;
  }
  */
}

.cart__license {
  position: relative;
  padding-left: 25px;
  background-image: url(/img_sc/sourcenext_com/common/icon-license.png);
  background-position: 8px center;
}

.cart__license::before {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: calc(50% + 6px);
  width: 10px;
  height: 10px;
  background: #fff;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  transform: rotate(45deg);
}

.cart__license::after {
  position: absolute;
  z-index: 1;
  left: -35px;
  top: 25px;
  width: 180px;
  padding: 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.cart__license:hover::before {
  content: '';
}

.cart__license:hover::after {
  content: '10本以上お求めの場合はライセンス購入がお得です。ソースネクスト法人様向けお支払いサービスにて決済します。与信審査（最短数秒～2営業日）完了後、3営業日以内に発送';
}

.cart__license a {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cart__wrapper {
    display: flex;
    overflow-x: scroll;
  }
}

.cart__left {
  text-align: center;
}

@media (max-width: 768px) {
  .cart__right {
    text-align: center;
    margin-top: 15px;
  }
}

.cart__right .ProductThumbnail {
  display: inline-block;
  width: 80px;
  height: 80px;
  background-color: transparent;
  background-position: center;
  background-size: 60px;
  background-repeat: no-repeat;
  border: 1px solid #aaa;
}

.cart__right .ProductThumbnail:not(:first-of-type) {
  margin-left: 10px;
}

.cart__right .ProductThumbnail.selected {
  border: 3px solid #16A085;
}

.cart__img {
  margin: auto;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.cart__group-name {
  width: 100%;
  font-weight: bold;
  font-size: 1em;
  margin-bottom: 0.5em;
}

@media (min-width: 769px) {
  .cart__group-name {
    margin-left: 20px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .cart__group-name {
    font-size: 14px;
    text-align: center;
  }
}

.cart__group-name p {
  font-size: 14px;
}

@media (max-width: 768px) {
  .cart__group-name p {
    font-size: 11px;
  }
}

@media (min-width: 769px) {
  .cart__item {
    display: flex;
    flex-wrap: wrap;
    align-content: baseline;
    justify-content: center;
    width: 230px;
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .cart__item {
    display: flex;
    flex-wrap: wrap;
    align-content: baseline;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
  }
}

.HasBelt .cart__item .TopBelt:empty::before,
.HasTop .cart__item .TopWording:empty::before {
  content: "　";
}

.cart__type {
  width: 100%;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.cart__name {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.cart__name-comment {
  display: block;
  font-size: 14px;
}

@media (max-width: 768px) {
  .cart__name-comment {
    font-size: 11px;
  }
}

.cart__price-area {
  position: relative;
  text-align: right;
}

@media (min-width: 769px) {
  .cart__price-area {
    padding-top: 1.5em;
  }
}

@media (max-width: 768px) {
  .cart__price-area {
    width: 210px;
  }

  .cart__price-area .cart__price-default {
    text-align: center;
  }
}

@media (min-width: 769px) {
  .IsSpecial .cart__price-area,
  .isSpecialPrice .cart__price-area,
  .IsChowari .HasChowariPrice .cart__price-area {
    padding-top: 0;
  }
}

.IsSpecial .cart__price-area::after,
.isSpecialPrice .cart__price-area::after,
.IsChowari .HasChowariPrice .cart__price-area::after {
  content: '↓';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-60%);
}

@media (max-width: 768px) {

  .IsSpecial .cart__price-area::after,
  .isSpecialPrice .cart__price-area::after,
  .IsChowari .HasChowariPrice .cart__price-area::after {
    display: none;
  }
}

.IsSpecial.IsSameSpecialPrice .cart__price-area::after,
.isSpecialPrice.IsSameSpecialPrice .cart__price-area::after {
  content: none;
}

.cart__price-base {
  display: none;
}

.cart__price-default {
  font-size: 18px;
  font-weight: bold;
}

.cart__price-default::after {
  content: '円';
}

.cart__price-special,
.cart__price-chowari {
  display: none;
  color: #B50018;
  font-size: 18px;
  font-weight: bold;
}

.cart__price-special::before,
.cart__price-chowari::before {
  display: none;
  margin-right: 1em;
  font-size: 12px;
  font-weight: normal;
}

@media (min-width: 769px) {

  .cart__price-special::before,
  .cart__price-chowari::before {
    color: #111;
  }
}

.cart__price-special::after,
.cart__price-chowari::after {
  content: '円';
}

.IsSpecial .cart__price-special,
.isSpecialPrice .cart__price-special {
  display: block;
}

.IsSpecial .cart__price-special::before,
.isSpecialPrice .cart__price-special::before {
  display: inline;
  content: '割引価格';
}

@media (min-width: 769px) {

  .IsSpecial .cart__price-special::before,
  .isSpecialPrice .cart__price-special::before {
    color: #111;
  }
}

.IsLogin.IsChowari .HasChowariPrice .cart__price-special {
  display: none;
}

.IsLogin.IsChowari .HasChowariPrice .cart__price-chowari {
  display: block;
}

.IsLogin.IsChowari .HasChowariPrice .cart__price-chowari::before {
  display: inline;
  content: '超割価格';
  color: #0049DC;
}

.cart__price-sgm {
  display: none;
}

.cart__point,
.cart__point-special {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  font-size: 15px;
  text-align: center;
  /* ポイント1%、0%の時は表示しない */
}

.cart__point:before,
.cart__point-special:before {
  opacity: 0;
  pointer-events: none;
  content: "ソースネクストeポイントは、1ポイント1円で使えるお得なポイントサービスです。Gポイント社のGポイントと交換すれば、航空会社のマイルや、スーパー・コンビニなどで使える他社のポイントへ交換できます。";
  color: rgba(0, 0, 0, 0.86);
  background: #fff;
  box-shadow: 0px 0px 8px rgba(90, 90, 90, 0.5);
  padding: 1em;
  width: 17rem;
  white-space: pre-wrap;
  position: absolute;
  bottom: 2rem;
  left: calc(50% - 9rem);
  transition: 100ms;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
  font-weight: normal;
  font-size: 11px;
}

.cart__point::after,
.cart__point-special::after {
  opacity: 0;
  content: '';
  position: absolute;
  bottom: 1.5rem;
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
  transition: 100ms;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.cart__point:hover::before,
.cart__point:hover::after,
.cart__point-special:hover::before,
.cart__point-special:hover::after {
  opacity: 1;
}

.cart__point .Point,
.cart__point-special .Point {
  padding-left: 20px;
  background: url(/img_sc/sourcenext_com/common/icon-epoint.png) left center/16px no-repeat;
  color: #B50018;
}

.cart__point .Point::after,
.cart__point-special .Point::after {
  content: 'ポイント';
  font-size: 12px;
}

.cart__point .kangen,
.cart__point-special .kangen {
  font-size: 12px;
  color: #B50018;
}

.cart__point .kangen::before,
.cart__point-special .kangen::before {
  content: "（今なら" attr(data-epoint);
}

.cart__point .kangen::after,
.cart__point-special .kangen::after {
  content: "倍還元）";
}

.cart__point .kangen[data-epoint="1"],
.cart__point .kangen[data-epoint="0"],
.cart__point .kangen[data-epoint=""],
.cart__point-special .kangen[data-epoint="1"],
.cart__point-special .kangen[data-epoint="0"],
.cart__point-special .kangen[data-epoint=""] {
  display: none !important;
}

.IsSpecial .cart__point,
.isSpecialPrice .cart__point {
  display: none;
}

.cart__point-special {
  display: none;
}

.IsSpecial .cart__point-special,
.isSpecialPrice .cart__point-special {
  display: block;
}

.cart__button button {
  width: 230px;
  height: 40px;
  background-color: #FFCC00;
  background-image: url(/img_sc/sourcenext_com/common/icon-cart_b.png);
  background-position: 10px center;
  background-repeat: no-repeat;
  border: 1px solid #C9A100;
  border-radius: 3px;
  box-shadow: 4px 4px 8px rgba(162, 178, 198, 0.6), -4px -4px 8px rgba(255, 255, 255, 0.5), 1px 2px 1px rgba(1, 18, 23, 0.3);
  color: #4B2C00;
  font-size: 13px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .cart__button button {
    width: 210px;
  }
}

.cart__button button::after {
  content: 'カートに入れる';
}

.cart__button button:hover {
  background-color: #ffd21e;
  filter: brightness(1.08);
}

.IsStockout .cart__button button {
  background: #C1C1C1;
  border-color: transparent;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.IsStockout .cart__button button::after {
  content: '完売しました';
}

.IsStockout.IsKamo .cart__button button {
  background: #C1C1C1;
  border-color: transparent;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.IsStockout.IsKamo .cart__button button::after {
  content: '完売しました';
}

.IsStockout.IsKamo .cart__button button.delete {
  position: relative;
}

.IsStockout.IsKamo .cart__button button.delete::after {
  opacity: 0.7;
}

.IsStockout.IsKamo .cart__button button.delete:hover::before {
  content: "登録しました";
  position: absolute;
  left: 0;
  top: -2rem;
  background: #FFF;
  right: 0;
  border-radius: 3px;
  margin: 0 auto;
  width: 7rem;
  border: 1px solid #CCC;
  font-size: 11px;
  padding: 0.2rem;
}

.NotLogin .IsStockout.IsKamo .cart__button div:not([class]) {
  display: none;
}

.IsLogin .IsStockout.IsKamo .cart__button div:not([class]) {
  display: block;
}

.cart__button .toNotLogin {
  display: none;
  /*
  .IsStockout.IsKamo & {
    .NotLogin & {
      display: block;
    }
    .IsLogin & {
      display: none;
    }
  }
  */
}

.cart__status {
  margin-top: 10px;
  font-size: 11px;
  text-align: center;
}

.cart__status a {
  color: #111;
  text-decoration: underline;
}

.cart__status .TopWording {
  color: #B50018;
}

@media (max-width: 768px) {
  .cart__status {
    width: 100%;
  }
}

.battery-InStock .cart__status .stock::before {
  content: "〇 在庫有り";
}

.battery-LowStock .cart__status .stock::before {
  content: "△ 在庫僅か";
}

.battery-VaryLowStock .cart__status .stock::before {
  content: "△ 在庫僅か";
}

.battery-SoldOut .cart__status .stock::before {
  content: "× 在庫切れ";
}

.IsDL .cart__status .Stock {
  display: none;
}

.cart__status .Shipping {
  display: none;
}

.IsStockout .cart__status .Shipping {
  display: none;
}

.cart__status .Support ul {
  display: inline-block;
}

.cart__status .BottomWording {
  margin-bottom: 5px;
}

.cart__status .WordingNotice {
  margin-top: 5px;
  color: #B50018;
}

.cart__status__top {
  font-size: 11px;
  text-align: center;
}

.HasBelt .cart__status__top,
.HasTop .cart__status__top {
  width: 100%;
}

.cart__status__top .TopWording {
  color: #B50018;
}

.cart__status__top .TopBelt {
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  .HasBelt .cart__status__top .TopBelt {
    height: 2em;
  }
}

@media (max-width: 768px) {
  .cart__status__top {
    width: 100%;
  }
}

.cart__recommend-wrap {
  width: 100%;
  margin: 0;
  background: linear-gradient(0deg, rgba(201, 208, 219, 0) 0%, rgba(201, 208, 219, 0) 95%, #c9d0db 100%);
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .cart__recommend-wrap {
    width: auto;
    flex-wrap: wrap;
  }
}

.cart__recommend {
  display: flex;
  justify-content: center;
  font-size: 13px;
}

@media (max-width: 768px) {
  .cart__recommend {
    padding: 0 0 1em 0;
  }
}

.cart__recommend a {
  color: #111;
  text-decoration: underline;
}

.cart__recommend-left {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  text-align: center;
}

@media (min-width: 769px) {
  .cart__recommend-left:nth-of-type(n+2) {
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .cart__recommend-left:nth-of-type(n+2) {
    margin-top: 10px;
  }
}

.cart__recommend-left img {
  max-width: 100%;
  max-height: 100%;
}

.cart__recommend-right {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .cart__recommend-right {
    width: calc(100% - 78px);
  }

  .cart__recommend-right:nth-of-type(n+2) {
    margin-top: 10px;
  }
}

.cart__shopguide {
  width: 100%;
  display: block;
  text-align: right;
  margin-top: 0.5em;
  padding: 0.5em 0;
}

.cart__shopguide a {
  margin-right: 2em;
  padding-left: 22px;
  background: url(/-/media/Images/shopping-guide/icon_sguide_g) left center/20px no-repeat;
  color: #111;
  font-size: 12px;
  text-decoration: underline;
}

.cart__shopguide a::before {
  content: 'ご購入ガイド';
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cart__shopguide a {
    padding-left: 0;
    padding-top: 18px;
    background-position: top;
    text-align: center;
    padding: 18px 0 0 8px;
    border-left: 1px solid var(--color-border-mid);
  }
}

@media (max-width: 768px) {
  .cart__shopguide {
    margin: 1em 0;
    display: flex;
    justify-content: flex-end;
  }
}

@media (min-width: 769px) {
  .Design-Type-A.cart__area {
    display: flex;
  }

  .Design-Type-A.cart__area:not(:first-of-type) {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .Design-Type-A.cart__area {
    min-width: 250px;
    padding: 0 20px;
  }

  .Design-Type-A.cart__area:not(:first-of-type) {
    border-left: 1px solid #D9C597;
  }
}

@media (max-width: 768px) {

  .Design-Type-A .IsSpecial .cart__price-default,
  .Design-Type-A .isSpecialPrice .cart__price-default {
    display: none;
  }
}

@media (max-width: 768px) {

  .Design-Type-A .IsSpecial.IsSameSpecialPrice .cart__price-default,
  .Design-Type-A .isSpecialPrice.IsSameSpecialPrice .cart__price-default {
    display: block;
  }
}

@media (max-width: 768px) {
  .IsChowari .Design-Type-A .HasChowariPrice .cart__price-default {
    display: none;
  }
}

.Design-Type-A .cart__img {
  width: 154px;
  height: 154px;
  filter: drop-shadow(4px 4px 8px rgba(162, 178, 198, 0.3)) drop-shadow(-4px -4px 8px rgba(255, 255, 255, 0.6));
}

@media (max-width: 768px) {
  .Design-Type-A .cart__img {
    width: 127px;
    height: 127px;
  }
}

.Design-Type-A .cart__img img {
  object-fit: contain;
  position: absolute;
  width: 100%;
  height: 100%;
}

@media (min-width: 769px) {
  .Design-Type-A .cart__right {
    margin-left: 10px;
  }
}

.Design-Type-A .cart__lineup {
  width: 100%;
  margin: 10px 0;
  font-size: 13px;
  text-align: center;
}

@media (min-width: 769px) {
  .Design-Type-A .cart__lineup {
    display: none;
  }
}

.Design-Type-A .cart__lineup .ProductThumbnail {
  display: none;
}

.Design-Type-A .cart__lineup p::before {
  content: 'ラインナップ';
}

.Design-Type-A .cart__lineup-box {
  margin-top: 5px;
  background: #fff;
  text-align: left;
}

.Design-Type-A .cart__lineup-box li {
  margin-top: -1px;
  border: 1px solid #CCCCCC;
}

.Design-Type-A .cart__lineup-box label {
  position: relative;
  display: block;
  width: 100%;
  padding: 8px;
  padding-left: 30px;
}

.Design-Type-A .cart__lineup-box label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid #CCCCCC;
  border-radius: 20px;
}

.Design-Type-A .cart__lineup-box input[type="radio"] {
  display: none;
}

.Design-Type-A .cart__lineup-box input[type="radio"]:checked+label {
  background: #FFEDE1;
}

.Design-Type-A .cart__lineup-box input[type="radio"]:checked+label::before {
  border-color: #16A085;
}

.Design-Type-A .cart__lineup-box input[type="radio"]:checked+label::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 12px;
  background: #16A085;
  border-radius: 10px;
}

@media (min-width: 769px) {
  .Design-Type-A .cart__item {
    display: inline-flex;
    width: 230px;
  }
}

@media (max-width: 768px) {
  .Design-Type-A .cart__item:not(:first-of-type) {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {

  .Design-Type-A .cart__price-special::before,
  .Design-Type-A .cart__price-chowari::before {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}

@media (min-width: 769px) {
  .Design-Type-B.cart__area {
    display: flex;
  }

  .Design-Type-B.cart__area:not(:first-of-type) {
    margin-top: 40px;
  }
}

.Design-Type-B .cart__img {
  width: 330px;
  height: 330px;
  filter: drop-shadow(4px 4px 8px rgba(162, 178, 198, 0.3)) drop-shadow(-4px -4px 8px rgba(255, 255, 255, 0.6));
}

@media (max-width: 768px) {
  .Design-Type-B .cart__img {
    width: 127px;
    height: 127px;
  }
}

@media (min-width: 769px) {
  .Design-Type-B .cart__right {
    margin-left: 50px;
  }
}

.Design-Type-B .cart__lineup p::before {
  content: '選択してください';
}

.Design-Type-B .cart__lineup span {
  display: none;
}

.Design-Type-B .cart__lineup input[type="radio"] {
  display: none;
}

.Design-Type-B .cart__lineup-box {
  display: flex;
}

.Design-Type-B .cart__lineup-box li:not(:first-of-type) {
  margin-left: 10px;
}

/*20230221 特価と定常並列時のボタンズレ解消*/
@media (min-width: 769px) {

  .HasSpecial .IsSameSpecialPrice .cart__price-area,
  .HasSpecial .IsNotSpecial .cart__price-area {
    padding-bottom: 1.7em;
    padding-top: 0;
  }
}

/*---20230511cartに関する記述をstyle.cssから移動---*/
.cart__item .cart__name {
  font-size: 22px;
  width: 100%
}
.cart__item .cart__type {
  visibility: visible
}
.cart__item .cart__price-area {
  margin-top: 20px
}
@media (max-width:768px) {
  .cart__item .cart__price-area {
    width: auto
  }
}
.cart__item .cart__price-area .cart__price-special:before {
  content: none
}
.cart__item .cart__price-period {
  width: 100%;
  margin-top: 5px;
  font-size: var(--size-txt-caption)
}
.cart__item .cart__button {
  margin-top: 16px
}
.cart__item .cart__point-special {
  margin-bottom: 0;
  margin-top: 8px
}
.cart__item .cart__point-special .kangen {
  display: inline !important
}
.cart__item .cart__point-special .kangen:before {
  content: "（"attr(data-epoint)
}