/* stylelint-disable no-descending-specificity */
/* stylelint-disable font-family-no-missing-generic-family-keyword */
@charset "UTF-8";

/* ----- 中古商品一覧 ----- */

.used-item-list-wrapper {
  padding: 15px;
}

.used-item-list-wrapper h1 {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 20px;
}

.used-item-list-wrapper h1 span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #999;
}

.used-item-list-wrapper .used-item-list {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  align-items: center;
}

.used-item-list-wrapper .used-item-list .list {
  width: calc(100% / 2 - 6px);
  margin: 3px 3px 10px;
}

.used-item-list-wrapper .used-item-list .list a {
  display: block;
}

.used-item-list-wrapper .used-item-list .list a .img-box {
  width: 100%;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  box-sizing: border-box;
  border: 1px solid #eee;
}

.used-item-list-wrapper .used-item-list .list a .img-box::before {
  content: " ";
  display: block;
  padding-top: 100%;
}

.used-item-list-wrapper .used-item-list .list.sold .img-box::before {
  content: " ";
  display: block;
  background-image: url("../../../img/common/used-item-sold.png");
  background-size: 45%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
}

.used-item-list-wrapper .used-item-list .list a .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}

.used-item-list-wrapper .used-item-list .list .price {
  font-size: 1.7rem;
  color: #ff0030;
  font-weight: bolder;
  margin: 5px 0 1px;
  line-height: 1.3;
  text-align: center;
}

.used-item-list-wrapper .used-item-list .list .condition {
  font-size: 1rem;
  color: #000;
  text-align: center;
}

/* ----- 中古商品詳細 ----- */

.used-item-detail {
  position: relative;
}

.used-item-detail .used-content-wrapper {
  padding: 0 15px;
}

.used-item-detail .tns-outer {
  margin: 0;
  padding: 0 !important;
}

.used-item-detail .tns-nav {
  bottom: 12px;
}

.used-item-detail .tns-ovh {
  height: calc(100vmin);
}

.used-item-detail .tns-horizontal.tns-subpixel > .tns-item {
  height: calc(100vmin);
}

.used-item-detail .product-name-en {
  margin: 15px 0 0;
  font-size: 2rem;
  font-family: Avenir;
  font-weight: bold;
  line-height: 1.2;
}

.used-item-detail .product-name-jp {
  font-size: 1.2rem;
  color: #666;
  font-weight: bold;
  margin: 6px 0 0;
}

.used-item-detail .product-price {
  display: inline-block;
  font-size: 3.2rem;
  color: #fe022e;
  font-weight: bold;
  margin: 15px 0 0;
  flex: auto;
  text-align: left;
  align-self: flex-end;
  vertical-align: middle;
}

.used-item-detail .product-price .card-condition {
  height: 14px;
  margin: 4px 0 0 10px;
  padding: 4px 5px 2px;
  color: #fff;
  background: #222;
  border-radius: 3px;
  font-weight: 600;
  font-size: 1.3rem;
}

.used-item-detail .card-condition-box {
  display: inline-block;
  padding: 10px 0 0 4px;
  vertical-align: middle;
}

.used-item-detail .card-condition-box .card-condition-inner {
  position: relative;
  display: inline-block;
  padding: 4px 6px;
  max-width: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  background: #222;
  box-sizing: border-box;
  border-radius: 5px;
}

.used-item-detail .product-price-diff {
  display: inline-block;
  padding: 10px 0 0 26px;
  vertical-align: middle;
}

.used-item-detail .product-price-diff-inner {
  position: relative;
  display: inline-block;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #000;
  font-size: 1.4rem;
  background: #f5f5f5;
  box-sizing: border-box;
  border-radius: 5px;
}

.used-item-detail .product-price-diff-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -19px;
  margin-top: -8px;
  border: 8px solid transparent;
  border-right: 14px solid #f5f5f5;
}

.used-item-detail .product-price-diff p {
  margin: 0;
  padding: 0;
}

.used-item-detail .product-price-diff p span {
  font-weight: bold;
  padding: 0 2px 0 0;
}

.used-item-detail .product-price-label-box {
  margin: 3px 0 0;
}

.used-item-detail .product-price-label-box .label {
  font-size: 1rem;
  color: #999;
  font-weight: bold;
  display: inline-block;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 3px 4px 2px;
  margin: 0 1px 0 0;
}

.used-item-detail .product-price-label-box .label.grey {
  color: #7d8897;
  border: 1px solid #7d8897;
}

/* 商品情報 */

.used-item-detail .product-detail-info-table {
  width: 100%;
  position: 0;
  margin: 10px 0 0;
  border: 0;
}

.used-item-detail .product-detail-info-table tr {
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0 8px;
  display: block;
}

.used-item-detail .product-detail-info-table tr:last-child {
  border: none;

  /* margin: 0 0 3px 0; */
}

.used-item-detail .product-detail-info-table tr th {
  position: relative;
  width: 82px;
  display: inline-block;
  text-align: left;
  font-size: 1.2rem;
  font-weight: normal;
  color: #999;
  line-height: 2;
}

.used-item-detail .product-detail-info-table tr th span.shipping-question {
  position: absolute;
  width: 12px;
  height: 12px;
  border: solid 1px #cecece;
  color: #cecece;
  text-align: center;
  border-radius: 50%;
  padding: 1px;
  font-size: 1.2rem;
  top: -3px;
  line-height: 1.15;
  margin-left: 4px;
}

.used-item-detail .product-detail-info-table tr th span.shipping-question a {
  color: #cecece;
}

.used-item-detail .product-detail-info-table tr td {
  width: calc(100% - 86px);
  display: inline-block;
  text-align: right;
  font-size: 1.4rem;
  color: #000;
  line-height: 1.7;
  vertical-align: middle;
}

.used-item-detail .detail-box {
  font-size: 1.4rem;
  color: #000;
  line-height: 1.5;
  margin: 0 0 15px;
  padding: 15px 0 0;
}

.used-item-detail .detail-text {
  white-space: pre-line;
  word-break: break-all;
}

.used-item-detail .favorites-button-box {
  margin-top: 12px;
}

.used-item-detail .product-detail-info-table tr td .detail-label {
  display: inline-flex;
}

.used-item-detail .product-detail-info-table tr td .detail-label li {
  display: inline-block;
  font-size: 1rem;
  vertical-align: middle;
}

.used-item-detail .product-detail-info-table tr td .detail-label li + li {
  margin: 0 0 0 6px;
}

.used-item-detail .product-detail-info-table tr td .detail-label .pb-badge {
  padding: 6px 5px 4px;
  border: 1px solid #009166;
  border-radius: 5px;
  font-size: 1.1rem;
  color: #009166;
  font-weight: bold;
  line-height: 1;
}

.used-item-detail .product-detail-info-table tr td .detail-label .yahoo-badge {
  padding: 5px 5px 3px 4px;
  background: #ffa3b4;
  border: 1px solid #ffa3b4;
  border-radius: 5px;
  font-size: 1rem;
  color: #252525;
  font-weight: bold;
  line-height: 1;
}

.used-item-detail
  .product-detail-info-table
  tr
  td
  .detail-label
  .corporate-badge {
  padding: 6px 5px 4px;
  border: 1px solid #7d8897;
  border-radius: 5px;
  font-size: 1.1rem;
  color: #7d8897;
  font-weight: bold;
  line-height: 1;
}

.used-item-detail
  .product-detail-info-table
  tr
  td
  .detail-label
  .identification {
  display: inline-block;
  vertical-align: middle;
  padding: 5px 4px 3px;
  border: 1px solid #cacbca;
  border-radius: 5px;
  background-image: url("../../../img/common/identification-badge.png");
  background-position: 4px 3px;
  background-size: 13px;
  background-repeat: no-repeat;
}

.used-item-detail
  .product-detail-info-table
  tr
  td
  .detail-label
  .identification
  .identification-text {
  display: block;
  padding: 0 0 0 14px;
  color: #cacbca;
  font-weight: bold;
  line-height: 1;
}

.used-item-detail
  .product-detail-info-table
  tr
  td
  .detail-label
  .identification.verified {
  border: 1px solid #144278;
  background-image: url("../../../img/common/identification-badge-active.png");
}

.used-item-detail
  .product-detail-info-table
  tr
  td
  .detail-label
  .identification.verified
  .identification-text {
  color: #144278;
}

.used-item-detail .product-detail-info-table tr td .detail-label .rank-label {
  color: #fff;
  padding: 5px 5px 3px 4px;
  border-radius: 5px;
  font-weight: 600;
  line-height: 1;
  white-space: normal;
}

.used-item-detail
  .product-detail-info-table
  tr
  td
  .detail-label
  .rank-label.gold {
  background: #f5af41;
  border: 1px solid #f5af41;
}

.used-item-detail
  .product-detail-info-table
  tr
  td
  .detail-label
  .rank-label.platinum {
  background: #000;
  border: 1px solid #000;
}

.used-item-detail .product-detail-info-table tr td .detail-text-info {
  font-size: 1.2rem;
}

/* 違反通報btn */

.used-item-detail .violation-report {
  text-align: right;
  margin-bottom: 8px;
}

.used-item-detail .violation-report .violation-report-btn {
  border: 1px solid #cacbca;
  border-radius: 24px;
  background-image: url("../../../img/common/sp-icon-report.png");
  background-position: 10px 4px;
  background-size: 12px;
  background-repeat: no-repeat;
  width: 80px;
  text-align: right;
}

.used-item-detail .violation-report .violation-report-btn a {
  display: block;
  color: #cacbca;
  font-size: 1rem;
  padding: 2px 12px;
}

/* W鑑定 */

.used-item-detail .w-appraisal-title {
  margin: 30px -15px 0;
}

.used-item-detail .w-appraisal-title img {
  width: 100%;
  height: auto;
}

.used-item-detail .w-appraisal-description {
  font-size: 1.5rem;
  color: #000;
  font-weight: bold;
  line-height: 1.6;
  margin: 18px 0 10px;
  text-align: justify;
  text-justify: inter-ideograph;
}

.used-item-detail .w-appraisal-point-box-wrapper {
  margin: 0 0 20px;
}

.used-item-detail .w-appraisal-point-box {
  background: #f5f5f5;
  padding: 15px 35px 15px 15px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  box-sizing: border-box;
  border-radius: 5px;
  margin: 0 0 5px;
  position: relative;
}

.used-item-detail .w-appraisal-point-box::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 12px;
  background: url("../../../img/common/sp-icon-arrow-right-black.png")
    center/contain no-repeat;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.used-item-detail .w-appraisal-point-box .img-box {
  width: 30%;
  height: auto;
}

.used-item-detail .w-appraisal-point-box .img-box img {
  width: 100%;
  height: auto;
}

.used-item-detail .w-appraisal-point-box .text-box {
  margin: 0 0 0 15px;
  width: 70%;
}

.used-item-detail .w-appraisal-point-box .text-box .title {
  font-size: 1.6rem;
  color: #000;
  font-weight: bold;
  line-height: 1.4;
}

.used-item-detail .w-appraisal-point-box .text-box .text {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.4;
  margin: 3px 0 0;
  text-align: justify;
  text-justify: inter-ideograph;
}

.used-item-detail.sold::before {
  content: " ";
  display: block;
  background-image: url("../../../img/common/used-item-sold.png");
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
}

.used-item-detail .used-content-wrapper .banner {
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0em;
  padding-top: 6px;
}

.used-item-detail .used-content-wrapper .banner span.label-red {
  background: #FF0230;
  border-radius: 3px;
  color: #fff;
  font-family: Hiragino Sans;
  font-size: 10px;
  margin-right: 5px;
  padding: 3px 5px;
}

.used-item-detail .used-content-wrapper span.text-red {
  color: #FF0230;
  font-family: Hiragino Sans;
  font-size: 12px;
  line-height: 17px;
}

/* 中古お気に入り追加 */
.used-item-detail .used-content-wrapper .favorites-button-box {
  margin: 14px 0 0;
}

.used-content-wrapper .icon-box {
  width: 100%;
  margin: 10px 0 5px;
}

.used-content-wrapper .icon-box li {
  width: 25%;
  float: left;
  text-align: center;
}

.used-content-wrapper .icon-box li a {
  background-repeat: no-repeat;
  display: block;
  height: 62px;
  color: #666;
  padding: 43px 0 0;
  box-sizing: border-box;
}

.used-content-wrapper .icon-box li a.icon-1 {
  background-image: url("../../../img/product/product-icon-1.png");
  background-size: 29px auto;
  background-position: center top 8px;
}

.used-content-wrapper .icon-box li a.icon-2 {
  background-image: url("../../../img/product/product-icon-2.png");
  background-size: 31px auto;
  background-position: center top 6px;
}

.used-content-wrapper .icon-box li a.icon-3 {
  background-image: url("../../../img/product/product-icon-3.png");
  background-size: 31px auto;
  background-position: center top 8px;
}

.used-content-wrapper .icon-box li a.icon-4 {
  background-image: url("../../../img/product/product-icon-4.png");
  background-size: 32px auto;
  background-position: center top 4px;
}

.used-content-wrapper .icon-box li a.icon-5 {
  background-image: url("../../../img/product/product-icon-5.png");
  background-size: 37px auto;
  background-position: center top 4px;
}

.used-content-wrapper .icon-box li a.icon-6 {
  background-image: url("../../../img/product/product-icon-6.png");
  background-size: 30px auto;
  background-position: center top 7px;
}

.item-safe-content-block {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin: 0 0 15px;
  padding: 14px 0 12px;
  display: block;
  background-image: url("../../../img/common/sp-icon-arrow-right.png");
  background-repeat: no-repeat;
  background-size: 7px 12px;
  background-position: right center;
}

.item-safe-content-block .safe-inner-icon {
  background-image: url("../../../img/product/product-icon-safe.png");
  background-repeat: no-repeat;
  background-size: 25px auto;
  background-position: left center;
  padding: 0 0 0 35px;
}

.item-safe-content-block .safe-title {
  font-size: 1.3rem;
  color: #000;
  font-weight: bold;
  padding: 0 0 1px;
  line-height: 1.3;
}

.item-safe-content-block .safe-text {
  font-size: 1.1rem;
  color: #999;
  line-height: 1.3;
}

/* ----- レスポンシブ ----- */

@media screen and (width >=768px) {
  /* 中古商品一覧 */

  .used-item-list-wrapper .used-item-list .list {
    width: calc(100% / 3 - 6px);
    margin: 3px 3px 20px;
    transition: 0.3s;
  }

  .used-item-list-wrapper .used-item-list .list:hover {
    opacity: 0.6;
  }

  .used-item-list-wrapper .used-item-list .list .price {
    font-size: 2.2rem;
    margin: 8px 0 2px;
  }

  .used-item-list-wrapper .used-item-list .list .condition {
    font-size: 1.3rem;
  }

  /* 中古商品詳細 */

  .used-item-detail .tns-ovh {
    height: 800px;
    width: 800px;
  }

  .used-item-detail .tns-horizontal.tns-subpixel > .tns-item {
    width: 800px;
  }

  .used-item-detail .tns-inner,
  .used-item-detail .tns-item {
    height: 800px !important;
  }
}

/* ----- 中古商品詳細 / 新品へのリンクを設置 github:3854 ----- */
.resale-item-link-wrapper {
  padding: 0 0 15px;
}

.resale-item-link-wrapper .title {
  font-size: 1.6rem;
  color: #000;
  font-weight: bold;
  margin: 20px 0 15px;
}

.resale-item-link {
  height: auto;
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
  padding: 8px 25px 10px 12px;
  border-radius: 5px;
  background-image: url("../../../img/common/icon-arrow-right.png");
  background-size: 6px 12px;
  background-repeat: no-repeat;
  background-position: right 12px center;
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
  align-items: center;
  font-family: Avenir, "游ゴシック体", "Yu Gothic", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    "ＭＳ Ｐゴシック", sans-serif;
}

.resale-item-link .product-img-box {
  flex-basis: 30%;
  height: 70px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.resale-item-link .product-img-box img {
  width: 100%;
  height: auto;
  position: absolute;
  inset: -5px 0 0;
  margin: auto;
}

.resale-item-link .product-description {
  flex-basis: 70%;
  margin: 0 0 0 12px;
}

.resale-item-link .product-description .price {
  color: #ff0030;
  font-size: 2.1rem;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.resale-item-link .product-description .price-blank {
  color: #000;
  font-size: 2.1rem;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.resale-item-link .product-description .price span {
  font-size: 1rem;
  position: relative;
  top: -3px;
  left: 3px;
  background: #ff0030;
  border-radius: 2px;
  color: #fff;
  padding: 3px 6px 1px 5px;
  margin: 0;
  line-height: 1;
}

.resale-item-link .product-description .sell-num {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  margin: 4px 0 5px;
  line-height: 1;
  position: relative;
}

.resale-item-link .product-description .sell-num.pb {
  padding: 0 0 0 15px;
  margin: 3px 0 0;
}

.resale-item-link .product-description .sell-num.pb::before {
  content: " ";
  color: #000;
  background-image: url("../../../img/common/pb-badge.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -2px;
  margin: 0;
}

.resale-item-link .product-description .name {
  font-size: 1.1rem;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  height: 11px;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1;
}

.resale-item-info-link {
  background-image: url("../../../img/common/icon-arrow-right.png");
  background-size: 6px 12px;
  background-repeat: no-repeat;
  background-position: right 12px center;
  display: flex;
  flex-direction: row;
  line-height: 42px;
  margin: 5px -8px -15px 0;
}

.resale-item-info-link .size {
  flex: auto;
  text-align: left;
  font-size: 1.2rem;
  font-weight: normal;
  color: #999;
}

.resale-item-info-link .min-price {
  flex: auto;
  font-size: 1.4rem;
  color: #000;
  font-weight: bold;
  text-align: right;
  padding-right: 25px;
}
