@charset "UTF-8";
/*---------------------------------------------
	Cart type A
---------------------------------------------*/
#special-cart-box.cart-type-A {
  margin-bottom: 12px;
}

/* ----- box ----- */
#special-cart-box.cart-type-A > .box {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 16px;
  padding: 24px 16px;
  container-type: inline-size;
  container-name: cart-box;
}
@media screen and (min-width: 768px) {
  #special-cart-box.cart-type-A > .box {
    margin-top: 22px;
    padding: calc(24/640*100%);
  }
}

/* ----- cart-price-set ----- */
#special-cart-box.cart-type-A .box .cart-price-set {
  margin-bottom: 16px;
}

/* ----- cart-btn-set ----- */
#special-cart-box.cart-type-A .box .cart-btn-set {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* ----- col ----- */
#special-cart-box.cart-type-A .box .cart-btn-set .col-top {
  display: flex;
}
@media screen and (min-width: 768px) {
  #special-cart-box.cart-type-A .box .cart-btn-set .col-top {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  #special-cart-box.cart-type-A .box .cart-btn-set .col-top {
    flex-direction: column;
    gap: 8px;
  }
}

/* ----- data ----- */
#special-cart-box.cart-type-A .box .cart-btn-set .col-left .date {
  margin-bottom: 0;
}
#special-cart-box.cart-type-A .box .cart-btn-set .col-left p:not(.date) {
  position: static;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ----- hr ----- */
#special-cart-box.cart-type-A .box hr {
  margin-top: 24px;
  margin-bottom: 12px;
}

/* ----- c-***[general] ----- */
#special-cart-box.cart-type-A {
  .c-num {
    font-family: Arial, Helvetica, sans-serif !important;
  }
  .c-price {
    color: #A41A1A;
    font-weight: bold;
    white-space: nowrap;
  }
  .c-price.c-price--normal {
    color: #000000;
    font-weight: normal;
  }
}

/* ----- c-cart ----- */
#special-cart-box.cart-type-A {
  .c-cart p {
    margin-bottom: 0;
  }
  .c-cart__inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .c-cart__desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .c-cart__heading {
    font-feature-settings: 'palt' on;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.6;
  }
  .c-cart__note {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  /* tag */
  .c-tag {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 4px 9px;
  }
  .c-tag.c-tag--red {
    color: #A41A1A;
    border: 1px solid #A41A1A;
  }
  .c-tag.c-tag--blue {
    color: #00559D;
    border: 1px solid #00559D;
  }
  .c-tag__time {
    font-size: 0.625rem;
    font-weight: bold;
    line-height: 1;
  }
  .c-tag__discount {
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1;
  }
  .c-tag__note {
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 1.6;
  }
  .c-tag__num {
    font-size: 1.25rem;
  }

  /* amount */
  .c-amount {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .c-amount__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-amount__tag {
    padding: 0 !important;
    width: auto;
  }
  .c-amount__detail {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 !important;
    width: auto;
  }
  .c-amount__note {
    font-feature-settings: 'palt' on;
    font-size: 0.75rem;
    line-height: 1.2;
  }
  .c-amount__note .c-num {
    font-size: 0.875rem;
  }
  .c-amount__price {
    font-feature-settings: 'palt' on;
    font-size: 1rem;
    line-height: 1.4;
    text-align: right;
    white-space: nowrap;
  }
  .c-amount__price .c-num {
    font-size: 2.5rem;
    line-height: 1;
  }
  .c-amount__price.c-amount__price--medium .c-price .c-num {
    font-size: 1.75rem;
  }
  .c-amount__price.c-amount__price--small .c-price .c-num {
    font-size: 1.75rem;
  }
  .c-amount__price.c-amount__price--small .c-postage .c-num {
    font-size: 1.125rem;
  }

  /* regular */
  .c-cart--regular .c-cart__inner {
    gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  #special-cart-box.cart-type-A {
    .c-cart__inner {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
    }
    .c-cart__inner.c-cart__inner--col {
      flex-direction: column;
    }
    .c-cart__desc {
      min-width: 40%;
    }
    .c-cart__heading {
      font-size: 20px;
    }
    .c-cart__heading .c-num {
      font-size: 28px;
    }
    .c-amount__detail {
      gap: 4px;
    }
    .c-cart__note {
      font-size: 14px;
    }

    /* tag */
    .c-tag {
      min-height: 45px;
    }
    .c-tag__time {
      font-size: 10px;
    }
    .c-tag__discount {
      font-size: 14px;
    }
    .c-tag__note {
      font-size: 16px;
    }
    .c-tag__num {
      font-size: 20px;
    }

    /* amount */
    .c-amount {
      justify-content: center;
      min-width: calc(332/592*100%);
    }
    .c-amount__box {
      gap: calc(8/332*100%);
    }
    .c-amount__tag {
      min-width: calc(112/332*100%);
    }
    .c-amount__note {
      font-size: 12px;
    }
    .c-amount__note .c-num {
      font-size: 14px;
    }
    .c-amount__price {
      font-size: 16px;
    }
    .c-amount__price .c-num {
      font-size: 46px;
      letter-spacing: -0.64px;
    }
    .c-amount__price.c-amount__price--medium .c-price .c-num {
      font-size: 30px;
    }
    .c-amount__price.c-amount__price--small .c-price .c-num {
      font-size: 28px;
    }
    .c-amount__price.c-amount__price--small .c-postage .c-num {
      font-size: 18px;
    }

    /* regular */
    .c-cart--regular .c-cart__head {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .c-cart--regular .c-cart__heading {
      line-height: 1;
    }
    .c-cart--regular .c-amount__detail {
      flex-direction: row;
      justify-content: flex-end;
      width: calc(212/332*100%);
      gap: calc(8/212*100%);
    }
  }
}
@media screen and (max-width: 767px) {
  #special-cart-box.cart-type-A {
    .c-tag {
      min-width: calc(121/375*100vw);
    }
  }
}
@container cart-box (max-width: 591px) {
  #special-cart-box.cart-type-A {
    .c-cart__inner {
      flex-direction: column;
    }
  }
}

/* ----- c-btn ----- */
#special-cart-box.cart-type-A {
  .c-btn__box {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .c-btn__box .btn-favorite {
    margin-bottom: 0;
  }
  .c-btn__box .btn-favorite button {
    text-indent: -9999px;
  }
  .c-btn {
    margin-bottom: 0;
    width: 100%;
  }
  .c-btn button {
    font-size: 1.125rem;
    margin: 0;
    min-width: 100%;
  }
  .c-btn.c-btn--large button {
    font-size: 1.25rem;
  }
  .c-btn button span {
    padding: 0 30px 0 0;
  }
  .c-btn button span::after {
    content: "";
    position: absolute;
    display: block;
    width: 25px;
    height: 25px;
    top: 0;
    right: 0;
    background-image: url("/assets/images/icon_cart.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 25px 25px;
  }
}
@media screen and (min-width: 768px) {
  #special-cart-box.cart-type-A {
    .c-btn__box {
      justify-content: flex-end;
      margin-left: auto;
      width: calc(320/592*100%);
    }
    .c-btn__box .btn-favorite button {
      padding: 8px 0 0 45px;
    }
    .c-btn__item--cart {
      width: calc(266/320*100%);
    }
    .c-btn__item--favorite {
      width: 45px;
    }
    .c-btn button {
      font-size: 18px;
    }
    .c-btn.c-btn--large {
      width: 100%;
    }
    .c-btn.c-btn--large button {
      font-size: 20px;
    }
  }
}
@container cart-box (max-width: 571px) {
  #special-cart-box.cart-type-A {
    .c-btn__box {
      width: calc(330/592*100%);
    }
  }
}
@container cart-box (max-width: 521px) {
  #special-cart-box.cart-type-A {
    .c-btn__box {
      width: calc(360/592*100%);
    }
  }
}
@container cart-box (max-width: 421px) {
  #special-cart-box.cart-type-A {
    .c-btn__box {
      width: calc(380/592*100%);
    }
  }
}
@media screen and (max-width: 767px) {
  #special-cart-box.cart-type-A {
    .c-btn__box {
      width: 100%;
    }
    .c-btn__item--cart {
      width: calc(267/375*100vw);
    }
    .c-btn__item--favorite {
      width: calc(45/375*100vw);
    }
  }
}

/* ----- mfp-content ----- */
.mfp-content #special-cart-box.cart-type-A p.note {
    color: #FFFFFF;
}
