@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.bold {
  font-weight: bold;
}

.item_unit.zaiko-off {
  pointer-events: none;
}
.item_unit.zaiko-off .unit_img {
  position: relative;
}
.item_unit.zaiko-off .unit_img::after {
  content: "SOLD OUT";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: rgba(45, 45, 45, 0.7);
  font-size: 29px;
  font-weight: bold;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .item_unit.zaiko-off .unit_img::after {
    font-size: calc((24 / 375) * 100vw);
  }
}

/*
** 一覧
*/
#NewItem_area {
  /*contaiuner*/
  /* 読み込み中のボタンのスタイル */
  /* ボタンを非表示にするスタイル */
}
#NewItem_area .item_container {
  display: flex;
  gap: 40px 35px;
  flex-wrap: wrap;
  /*unit*/
}
@media only screen and (max-width: 767px) {
  #NewItem_area .item_container {
    gap: 20px;
  }
}
#NewItem_area .item_container .item_unit {
  width: 200px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #NewItem_area .item_container .item_unit {
    width: calc(50% - 10px);
  }
}
#NewItem_area .item_container .item_unit.new_item:before {
  position: absolute;
  left: 0;
  top: 0;
  padding-bottom: 2px;
  content: "NEW";
  background-color: #E55B46;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  padding: 0px 10px 3px;
  z-index: 9;
}
#NewItem_area .item_container .item_unit .unit_img {
  width: 200px;
  height: 200px;
}
@media only screen and (max-width: 767px) {
  #NewItem_area .item_container .item_unit .unit_img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}
#NewItem_area .item_container .item_unit .unit_img.img_pending {
  background-color: #E3E3E3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#NewItem_area .item_container .item_unit .unit_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#NewItem_area .item_container .item_unit .unit_name {
  font-size: 13px;
  color: #767F88;
}
@media only screen and (max-width: 767px) {
  #NewItem_area .item_container .item_unit .unit_name {
    font-size: 12px;
  }
}
#NewItem_area .item_container .item_unit .unit_price {
  display: flex;
  gap: 20px;
  align-items: center;
}
#NewItem_area .item_container .item_unit .unit_price.sale .price_before::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #E55B46;
  left: 0;
  bottom: 9px;
  transform: rotate(-9deg);
}
@media only screen and (max-width: 767px) {
  #NewItem_area .item_container .item_unit .unit_price.sale .price_before::before {
    bottom: 8px;
    transform: rotate(-5deg);
  }
}
#NewItem_area .item_container .item_unit .unit_price.sale .price_before::after {
  position: absolute;
  content: "▶";
  color: #E55B46;
  font-size: 8px;
  top: 5px;
  right: -14px;
}
@media only screen and (max-width: 767px) {
  #NewItem_area .item_container .item_unit .unit_price.sale .price_before::after {
    top: 4px;
  }
}
#NewItem_area .item_container .item_unit .unit_price .price_before {
  font-size: 13px;
  font-weight: bold;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #NewItem_area .item_container .item_unit .unit_price .price_before {
    font-size: 12px;
  }
}
#NewItem_area .item_container .item_unit .unit_price .price_after {
  font-size: 16px;
  font-weight: bold;
  color: #E55B46;
}
@media only screen and (max-width: 767px) {
  #NewItem_area .item_container .item_unit .unit_price .price_after {
    font-size: 14px;
  }
}
#NewItem_area .more_button {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  width: 329px;
  height: 48px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2D2D2D;
  border-radius: 41px;
  cursor: pointer;
  font-size: 15px;
  color: #2D2D2D;
}
#NewItem_area .more_button:hover:not(.loading) {
  opacity: 0.8;
}
#NewItem_area .more_button.loading {
  cursor: default;
  background-color: #ccc;
  /* グレーアウトの例 */
  pointer-events: none;
  /* クリックを無効にする */
}
#NewItem_area .more_button:hidden {
  display: none !important;
}

/*area*/
/*
** カテゴリページ
*/
.item_cat .inner {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .item_cat .inner {
    gap: 10px;
    align-items: start;
  }
}
.item_cat .btn-wrap {
  position: relative;
  margin-bottom: 30px;
}
.item_cat .btn-wrap .filter-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .item_cat .btn-wrap .filter-wrap {
    flex-wrap: wrap;
  }
}
.item_cat .btn-wrap .filter-btn {
  border: 1px solid #2D2D2D;
  display: flex;
  gap: 10px;
  padding: 8px 38px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .item_cat .btn-wrap .filter-btn {
    padding: 5px 10px;
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }
}
.item_cat .btn-wrap .cat-list-wrap {
  display: none;
  position: absolute;
  background-color: #F6F6F6;
  width: 100%;
  z-index: 10;
  top: calc(100% + 10px);
  padding: 20px;
  z-index: 20;
}
@media only screen and (max-width: 767px) {
  .item_cat .btn-wrap .cat-list-wrap {
    top: calc(100% + -25px);
    padding: 20px 0;
  }
}
.item_cat .btn-wrap .cat-list-wrap .wrapper {
  position: relative;
}
.item_cat .btn-wrap .cat-list-wrap .text-2 {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .item_cat .btn-wrap .cat-list-wrap .text-2 {
    display: inline-block;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .item_cat .btn-wrap .cat-list-wrap .text-2 {
    font-size: 14px;
  }
}
.item_cat .btn-wrap .cat-list-wrap .child-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.item_cat .btn-wrap .cat-list-wrap .term {
  cursor: pointer;
  border: 1px solid #E3E3E3;
  background-color: #fff;
  border-radius: 30px;
  padding: 2px 1.2em;
  font-size: 14px;
}
.item_cat .btn-wrap .cat-list-wrap .term.active {
  border-color: #2D2D2D;
  background-color: #2D2D2D;
  color: #fff;
}
.item_cat .btn-wrap .cat-list-wrap .close-btn {
  position: relative;
  background-color: #2D2D2D;
  padding: 5px 26px 8px 10px;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  color: #fff;
}
.item_cat .btn-wrap .cat-list-wrap .close-btn::before, .item_cat .btn-wrap .cat-list-wrap .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 1px;
  background-color: #fff;
}
.item_cat .btn-wrap .cat-list-wrap .close-btn::before {
  transform: translateY(-50%) rotate(45deg);
}
.item_cat .btn-wrap .cat-list-wrap .close-btn::after {
  transform: translateY(-50%) rotate(-45deg);
}
@media print, screen and (min-width: 768px) {
  .item_cat .btn-wrap .cat-list-wrap .close-btn {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .item_cat .btn-wrap .cat-list-wrap .close-btn {
    position: absolute;
    top: -2px;
    right: 20px;
    padding: 5px 30px 7px 12px;
    font-size: 14px;
  }
  .item_cat .btn-wrap .cat-list-wrap .close-btn::before, .item_cat .btn-wrap .cat-list-wrap .close-btn::after {
    right: 10px;
  }
}
.item_cat .btn-wrap .sort-wrap {
  width: 210px;
  display: flex;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .item_cat .btn-wrap .sort-wrap {
    flex-wrap: wrap;
    position: relative;
  }
}
.item_cat .btn-wrap .sort-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .item_cat .btn-wrap .sort-btn {
    padding: 5px 10px;
    justify-content: center;
    font-size: 14px;
    border: 1px solid #2D2D2D;
  }
}
.item_cat .btn-wrap .sort-btn img {
  margin-top: 4px;
}
@media only screen and (max-width: 767px) {
  .item_cat .btn-wrap .sort-btn img {
    display: none;
  }
}
.item_cat .btn-wrap .sort-list-wrap {
  width: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 20;
  transition: all 0.3s ease;
  transform-origin: top;
  transform: scaleY(0);
}
@media print, screen and (min-width: 768px) {
  .item_cat .btn-wrap .sort-list-wrap {
    right: 0;
    top: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .item_cat .btn-wrap .sort-list-wrap {
    width: 100%;
    top: 7px;
    background-color: #fff;
    border: 1px solid #2D2D2D;
    border-top: none;
  }
}
.item_cat .btn-wrap .sort-title {
  font-size: 14px;
  text-align: center;
  pointer-events: none;
}
@media print, screen and (min-width: 768px) {
  .item_cat .btn-wrap .sort-title {
    display: none;
  }
}
.item_cat .btn-wrap .sort-wrapper {
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  .item_cat .btn-wrap .sort-wrapper {
    width: 1140px;
  }
}
@media only screen and (max-width: 767px) {
  .item_cat .btn-wrap .sort-wrapper {
    text-align: center;
  }
}
.item_cat .btn-wrap .sort-list {
  cursor: pointer;
  pointer-events: auto;
  background-color: #fff;
  padding: 10px;
}
@media print, screen and (min-width: 768px) {
  .item_cat .btn-wrap .sort-list {
    width: 160px;
    margin-left: auto;
    box-shadow: 0 3px 8px rgba(45, 45, 45, 0.4);
  }
}
@media only screen and (max-width: 767px) {
  .item_cat .btn-wrap .sort-list {
    font-size: 14px;
    display: inline-block;
    text-align: left;
    padding: 7px;
  }
}
.item_cat .btn-wrap .sort-item {
  line-height: 2.4;
}
.item_cat .btn-wrap .sort-item::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #E3E3E3;
  box-sizing: border-box;
  margin-right: 8px;
  top: 2px;
  position: relative;
}
.item_cat .btn-wrap .sort-item.active::before {
  border: 5px solid #2D2D2D;
}
.item_cat .btn-wrap .active.cat-list-wrap {
  display: block;
}
.item_cat .btn-wrap .active.sort-list-wrap {
  transform: scaleY(1);
}

/*
** 詳細ページ
*/
.item_single {
  /*左上カラム*/
  /*popup*/
  /*右カラム*/
  /*左下カラム*/
}
.item_single .title-secondary {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .item_single .title-secondary {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 768px) {
  .item_single .single-wrapper {
    width: 640px;
    margin-right: 50px;
  }
}
.item_single .cont-wrap {
  border-bottom: 1px solid #767F88;
}
.item_single .slide-area {
  margin-bottom: 60px;
}
@media print, screen and (min-width: 768px) {
  .item_single .slide-area {
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  .item_single .slide-area {
    margin-bottom: 40px;
  }
}
.item_single .slide-area .swiper-slide {
  aspect-ratio: 1 / 1;
  position: relative;
}
.item_single .slide-area .swiper-slide img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.item_single .slide-area .swiper-slide:hover {
  cursor: grab;
}
.item_single .slide-area .swiper-slide-thumb-active:before {
  content: "";
  display: block;
  border: 1px solid #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .item_single .slide-area .custom-controls {
    display: none;
  }
}
.item_single .slide-area .swiper-button-next::after,
.item_single .slide-area .swiper-button-prev::after {
  content: "";
}
.item_single .slide-area .custom-prev,
.item_single .slide-area .custom-next {
  background-color: rgba(255, 255, 255, 0.8);
  width: 42px;
  height: 42px;
}
.item_single .slide-area .custom-prev img,
.item_single .slide-area .custom-next img {
  width: 12px;
  height: 21px;
}
.item_single .slide-area .custom-prev {
  left: 0;
}
.item_single .slide-area .custom-next {
  right: 0;
}
.item_single .slide-area .custom-next img {
  transform: rotateY(180deg);
}
.item_single .slide-area .main-swiper {
  margin-bottom: 15px;
}
.item_single .slide-area .main-swiper .swiper-wrapper {
  align-items: center;
}
.item_single .slide-area.zaiko-off .main-swiper {
  position: relative;
}
.item_single .slide-area.zaiko-off .main-swiper::after {
  content: "SOLD OUT";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: rgba(45, 45, 45, 0.7);
  font-size: 92px;
  font-weight: bold;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .item_single .slide-area.zaiko-off .main-swiper::after {
    font-size: calc((45 / 375) * 100vw);
  }
}
.item_single .slide-area .btn-wrap.movie {
  text-align: center;
  margin-top: 15px;
}
.item_single .slide-area .btn-wrap.movie .js-modal-single {
  display: inline-block;
  border: 1px solid #2D2D2D;
  padding: 3px;
  width: 200px;
  font-size: 14px;
}
.item_single .slide-area .btn-wrap.movie .js-modal-single img {
  margin-top: -4px;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .item_single .slide-area .thumb-swiper {
    padding-bottom: 20px;
  }
}
.item_single .slide-area .thumb-swiper .swiper-wrapper {
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .item_single .slide-area .thumb-swiper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .item_single .slide-area .thumb-swiper .swiper-wrapper {
    justify-content: flex-start;
  }
}
.item_single .slide-area .thumb-swiper .swiper-slide {
  width: 55px !important;
}
@media print, screen and (min-width: 768px) {
  .item_single .slide-area .thumb-swiper .swiper-slide {
    flex-shrink: 1;
    height: 55px !important;
  }
}
@media only screen and (max-width: 767px) {
  .item_single .slide-area .thumb-swiper .swiper-slide {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .item_single .slide-area .thumb-swiper .swiper-slide:last-child {
    margin-right: 0 !important;
  }
}
.item_single .slide-area .thumb-swiper .swiper-slide img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.item_single .slide-area .thumb-swiper .swiper-slide:hover {
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .item_single .slide-area .thumb-swiper .swiper-scrollbar {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .item_single .slide-area .thumb-swiper .swiper-scrollbar {
    background: #E3E3E3 !important;
    height: 6px !important;
    border-radius: 23px !important;
    bottom: 0px !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .item_single .slide-area .thumb-swiper .swiper-scrollbar-drag {
    background: #2D2D2D !important;
    height: 4px !important;
    border-radius: 23px !important;
    opacity: 1 !important;
    top: 1px !important;
  }
}
.item_single .mfp-content {
  width: 540px;
  margin: auto;
  padding-top: 50px;
}
.item_single .mfp-content .mfp-close {
  background-color: rgba(255, 255, 255, 0.5);
}
@media print, screen and (min-width: 768px) {
  .item_single .sticky-area {
    float: right;
    width: 450px;
    position: sticky;
    top: 140px;
  }
}
@media only screen and (max-width: 767px) {
  .item_single .sticky-area {
    margin-bottom: 60px;
  }
}
.item_single .sticky-area .cart-wrap {
  padding-bottom: 40px;
  margin-bottom: 30px;
}
.item_single .sticky-area .cart-wrap .heading-wrap {
  margin-bottom: 36px;
}
@media only screen and (max-width: 767px) {
  .item_single .sticky-area .cart-wrap .heading-wrap {
    margin-bottom: 10px;
  }
}
.item_single .sticky-area .cart-wrap .text-1 {
  font-size: 12px;
  margin-bottom: 16px;
}
.item_single .sticky-area .cart-wrap .title-main {
  font-size: 26px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .item_single .sticky-area .cart-wrap .title-main {
    font-size: 20px;
  }
}
.item_single .sticky-area .cart-wrap .price-wrap {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .item_single .sticky-area .cart-wrap .price-wrap {
    margin-bottom: 20px;
  }
}
.item_single .sticky-area .cart-wrap .unit_price {
  display: flex;
  gap: 30px;
  align-items: center;
}
.item_single .sticky-area .cart-wrap .unit_price.sale .price_before::before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: 2px;
  background-color: #E55B46;
  left: 0;
  bottom: 48%;
  transform: rotate(-9deg);
}
@media only screen and (max-width: 767px) {
  .item_single .sticky-area .cart-wrap .unit_price.sale .price_before::before {
    bottom: 17px;
    transform: rotate(-5deg);
  }
}
.item_single .sticky-area .cart-wrap .unit_price.sale .price_before::after {
  position: absolute;
  content: "▶";
  color: #E55B46;
  font-size: 12px;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.item_single .sticky-area .cart-wrap .unit_price .price_before {
  font-size: 28px;
  font-weight: 600;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .item_single .sticky-area .cart-wrap .unit_price .price_before {
    font-size: 24px;
  }
}
.item_single .sticky-area .cart-wrap .unit_price .price_after {
  font-size: 28px;
  font-weight: bold;
  color: #E55B46;
}
@media only screen and (max-width: 767px) {
  .item_single .sticky-area .cart-wrap .unit_price .price_after {
    font-size: 24px;
  }
}
.item_single .sticky-area .cart-wrap .unit_price .zei {
  color: #767F88;
  font-size: 14px;
  margin-left: 4px;
}
@media only screen and (max-width: 767px) {
  .item_single .sticky-area .cart-wrap .unit_price .zei {
    font-size: 12px;
  }
}
.item_single .sticky-area .zaiko-wrap {
  font-size: 14px;
  margin-bottom: 24px;
}
.item_single .sticky-area .zaiko-wrap.zaiko-on {
  color: #E55B46;
}
.item_single .sticky-area .kago-wrap.zaiko-off .btn-submit {
  background-color: #E3E3E3;
  pointer-events: none;
}
.item_single .sticky-area .cart-btn {
  position: relative;
  width: 360px;
}
@media only screen and (max-width: 767px) {
  .item_single .sticky-area .cart-btn {
    width: 100%;
  }
}
.item_single .sticky-area .cart-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url("/misc/icon-cart.svg") no-repeat center/contain;
  margin-right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  left: calc(50% - 4em);
}
.item_single .sticky-area .btn-submit {
  width: 100%;
  padding: 16px;
  padding-left: 3em;
  background-color: #2D2D2D;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}
.item_single .sticky-area .info-wrap .cont-wrap {
  padding-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .item_single .sticky-area .info-wrap .cont-wrap {
    padding-bottom: 20px;
  }
}
.item_single .sticky-area .info-wrap .cont-wrap:first-child {
  margin-bottom: 25px;
}
.item_single .sticky-area .info-wrap .heading-wrap {
  margin-bottom: 10px;
}
.item_single .sticky-area .info-wrap .title-info {
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .item_single .sticky-area .info-wrap .title-info {
    font-size: 16px;
  }
}
.item_single .sticky-area .info-wrap .title-info img {
  margin-right: 10px;
  margin-bottom: 0.1em;
}
.item_single .sticky-area .info-wrap .text-1 {
  font-size: 12px;
}
.item_single .sticky-area .info-wrap .btn-wrap {
  text-align: right;
  font-size: 12px;
}
.item_single .sticky-area .info-wrap .btn-item {
  display: inline-block;
  border: 1px solid #2D2D2D;
  border-radius: 30px;
  padding: 5px 10px 5px 20px;
}
.item_single .sticky-area .info-wrap .btn-item img {
  width: 11px;
  transform: rotateZ(-90deg);
  transform-origin: 40%;
  margin-left: 10px;
}
.item_single .iteminfo-area {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .item_single .iteminfo-area .title-secondary {
    font-size: 20px;
  }
}
.item_single .iteminfo-area .editor-wrap {
  font-size: 14px;
  margin-bottom: 50px;
}
.item_single .iteminfo-area .main-outro .cont-wrap {
  margin-bottom: 40px;
}
.item_single .iteminfo-area .main-outro .cont-wrap:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .item_single .iteminfo-area .main-outro .title-secondary {
    font-size: 16px;
  }
}
.item_single .iteminfo-area .size-area .accordion-trigger {
  position: relative;
}
.item_single .iteminfo-area .size-area.is-active dt:before, .item_single .iteminfo-area .size-area.is-active dt:after {
  transform: rotateZ(180deg);
}
.item_single .iteminfo-area .size-area dt:before, .item_single .iteminfo-area .size-area dt:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #181229;
  transition: all 0.3s ease;
  right: 30px;
  top: 50%;
}
@media only screen and (max-width: 767px) {
  .item_single .iteminfo-area .size-area dt:before, .item_single .iteminfo-area .size-area dt:after {
    right: 0px;
  }
}
.item_single .iteminfo-area .size-area dt:before {
  transform: rotateZ(90deg);
}
.item_single .iteminfo-area .size-area dd {
  display: none;
}
.item_single .iteminfo-area .payment-area .title-secondary {
  display: flex;
  justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  .item_single .iteminfo-area .payment-area .title-secondary {
    padding-right: 27px;
  }
}
.item_single .iteminfo-area .payment-area .title-secondary img {
  transform: rotateZ(-90deg);
  width: 17px;
}

/*# sourceMappingURL=page_item.css.map */
