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

/* ----- box ----- */
#special-cart-box.cart-type-B .box {
  color: #000000;
  margin: 0;
  padding: 0;
  container-type: inline-size;
  container-name: cart-box;
}

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

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

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

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

/* ----- c-tab ----- */
#special-cart-box.cart-type-B {
  .c-tab {
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .c-tab-nav:not(.row) {
    margin: 0;
    padding: 0;
  }
  .c-tab-nav li {
    margin-bottom: 0;
    padding: 0;
    width: auto;
  }
  .c-tab-nav li::before {
    content: none;
  }
  .c-tab-nav li a {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 1rem;
    margin-top: 0;
    padding: 10px 16px;
  }
  .c-tab-nav li:not(.current) {
    margin-top: 10px;
  }
  .c-tab .c-tab__heading {
    font-feature-settings: 'palt' on;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
  }
  .c-tab .c-tab__heading .c-num {
    font-size: 1.75rem;
  }
  .c-tab .c-tab__heading .c-unit {
    font-size: 1.25rem;
  }
  .c-tab .c-tab__note {
    font-size: 0.75rem;
    line-height: 1;
  }
  .c-tab .tab-element {
    padding: 16px 16px 24px !important;
  }
  .c-tab .tab-contents {
    height: 100% !important;
    background-color: #f7f3ed;
    overflow: hidden;
  }
  .c-tab .tab-contents .tab-element {
    float: none;
    display: none !important;
  }
  .c-tab .tab-contents .tab-element.is-active {
    float: none;
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  #special-cart-box.cart-type-B {
    .c-tab {
      margin-top: 22px;
    }
    .c-tab-nav li a {
      font-size: 16px;
    }
    .c-tab .c-tab__heading {
      font-size: 20px;
      line-height: 1;
    }
    .c-tab .c-tab__heading .c-num {
      font-size: 28px;
    }
    .c-tab .c-tab__note {
      font-size: 12px;
    }
    .c-tab .tab-element {
      padding: 24px !important;
    }
  }
}

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

/* ----- c-***[general] ----- */
#special-cart-box.cart-type-B {
  .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-B {
  .c-cart p {
    margin-bottom: 0;
  }
  .c-cart__inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .c-cart__inner.c-cart__inner--row {
    flex-direction: row;
    justify-content: space-between;
  }
  .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__discount .c-num {
    font-size: 1.25rem;
  }
  .c-tag__note {
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.6;
  }

  /* amount */
  .c-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  .c-amount__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .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-B {
    .c-cart__inner {
      flex-direction: row;
      justify-content: space-between;
    }
    .c-cart__head {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .c-cart__heading {
      font-size: 20px;
      line-height: 1;
    }
    .c-cart__heading .c-num {
      font-size: 28px;
    }
    .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__discount .c-num {
      font-size: 20px;
    }
    .c-tag__note {
      font-size: 14px;
    }

    /* amount */
    .c-amount {
      min-width: calc(318/592*100%);
    }
    .c-amount__box {
      gap: calc(8/318*100%);
    }
    .c-amount__tag {
      min-width: calc(121/318*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-amount {
      min-width: calc(417/592*100%);
    }
    .c-cart--regular .c-amount__tag {
      min-width: calc(121/417*100%);
    }
    .c-cart--regular .c-amount__detail {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: calc(8/417*100%);
      width: calc(280/417*100%);
    }
  }
}
@media screen and (max-width: 767px) {
  #special-cart-box.cart-type-B {
    .c-tag {
      min-width: calc(121/375*100vw);
      min-height: 45px;
    }
  }
}

/* ----- c-btn ----- */
#special-cart-box.cart-type-B {
  .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-B {
    .c-btn__box {
      justify-content: flex-end;
      margin-left: auto;
      width: calc(417/592*100%);
    }
    .c-btn__box .btn-favorite button {
      padding: 8px 0 0 45px;
    }
    .c-btn__item--cart {
      width: calc(266/417*100%);
    }
    .c-btn__item--favorite {
      width: 45px;
    }
    .c-btn button {
      font-size: 18px;
      line-height: 1;
    }
    .c-btn button span::after {
      top: -6px;
    }
    .c-btn.c-btn--large {
      width: 100%;
    }
    .c-btn.c-btn--large button {
      font-size: 20px;
    }
    .c-btn.c-btn--large button span::after {
      top: -3px;
    }
  }
}
@container cart-box (max-width: 591px) {
  #special-cart-box.cart-type-B {
    .c-cart--regular .c-cart__inner {
      flex-direction: column;
    }
  }
}
@container cart-box (max-width: 486px) {
  #special-cart-box.cart-type-B {
    .c-cart__inner {
      flex-direction: column;
    }

    .c-btn__item--cart {
      width: calc(296/417*100%);
    }
  }
}
@media screen and (max-width: 767px) {
  #special-cart-box.cart-type-B {
    .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-B p.note {
    color: #FFFFFF;
}
