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

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

a:hover,
button:hover {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.buy-content {
  display: flex;
  flex-wrap: wrap;
}

.left-column {
  position: relative;
  width: 54%;
  height: calc(100vh - 70px);
  padding: 0 3% 3%;
  box-sizing: border-box;
}

.page-title {
  font-size: 2.2rem;
  margin: 30px 0 0 12%;
}

/* 戻るボタン */
.return-btn {
  position: absolute;
  top: 15px;
  left: 18px;
  z-index: 99;
}

.return-btn a {
  display: block;
  width: 40px;
  height: 40px;
  transform: scale(-1, 1);
  border-radius: 50%;
  box-shadow: 0 0 8px rgb(0 0 0 / 10%);
  padding: 10px 9px 10px 11px;
  box-sizing: border-box;
  text-align: center;
}

.return-btn img {
  width: auto;
  height: 100%;
}

/* 商品情報 */

.selected-product-info {
  box-sizing: border-box;
}

.selected-product-image {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.selected-product-image img {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.selected-product-name {
  width: 80%;
  font-size: 2.2rem;
  margin: 3px auto 0;
  line-height: 1.4;
  text-align: center;
}

.selected-product-label {
  display: inline-block;
  padding: 5px 10px 3px;
  margin: 8px 0 0;
  font-size: 1.5rem;
  color: #fff;
  background: #00aaa4;
  border: 1px solid #00aaa4;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.selected-product-size {
  text-align: center;
  font-size: 1.4rem;
  margin: 12px 0 0;
  color: #777;
  font-weight: 500;
}

/* 発送期限ラベル */
.selected-product-textbox .label-shipping {
  margin-top: 10px;
  text-align: center;
}

.selected-product-textbox .label-shipping span {
  display: inline-block;
  padding: 5px 5px 4px;
  border-radius: 3px;
  background: #000;
  color: #fff;
  font-weight: 400;
  font-size: 1.1rem;
}

/* フリー出品の場合 */
.selected-product-info.free {
  padding: 3%;
  max-height: calc(100vh - 124px);
  overflow-y: scroll;
}

.selected-product-info.free .selected-product-image {
  height: 50vh;
}

.selected-product-info.free .selected-product-image img {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 100%;
  min-width: 100%;
  height: 100%;
  width: auto;
  transform: translateX(-50%) translateY(-50%);
}

@media screen and (width <=834px) {
  .left-column {
    position: fixed;
    bottom: 16px;
    left: 0;
    background: #fff;
    width: 100%;
    height: auto;
    padding: 0;
    box-sizing: border-box;
    z-index: 9;
  }

  .selected-product-info {
    width: calc(100% - 30px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 3px 2%;
    border-radius: 6px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    box-sizing: border-box;
  }

  .selected-product-image {
    width: 130px;
  }

  .selected-product-info.free {
    padding: 3px 2%;
  }

  .selected-product-info.free .selected-product-image {
    height: 80px;
  }

  .selected-product-textbox {
    width: calc(100% - 130px);
  }

  .selected-product-name {
    font-size: 1.2rem;
    margin: 0 0 0 5%;
    text-align: left;
  }

  .selected-product-size {
    margin: 8px 0 0 5%;
    text-align: left;
  }

  .return-btn {
    display: none;
  }

  .bottom-fix-area {
    display: none;
  }
}

/* 右カラム */
.right-column {
  position: relative;
  width: 46%;
  height: calc(100vh - 70px);
  border-left: 1px solid #e5e5e5;
  box-sizing: border-box;
}

@media screen and (width <=834px) {
  .right-column {
    width: 100%;
  }
}

/* サイズ選択 */

/* スイッチ */

.switch-button-box {
  background: #eee;
  width: 100%;
  height: 46px;
  border-radius: 100px;
  font-size: 0;
  padding: 3px;
  box-sizing: border-box;
}

.buy-size-select .switch-button-wrapper {
  display: block;
}

.switch-button-box .switch-on {
  background: #000;
  width: 50%;
  height: 100%;
  color: #fff;
  display: inline-block;
  border-radius: 100px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 30%);
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
  pointer-events: none;
}

.switch-button-box .switch-on.sell {
  background: #ff832d;
}

.switch-button-box .switch-off {
  width: 50%;
  height: 40px;
  color: #000;
  display: inline-block;
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
}

.buy-size-select .switch-condition-wrapper {
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #e5e5e5;
}

.buy-size-select .switch-condition-box {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  align-items: center;
}

.buy-size-select .switch-condition-box .list {
  width: 50%;
  box-sizing: border-box;
  border-bottom: none;
}

.buy-size-select .switch-condition-box .list a {
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.6rem;
  height: 42px;
  line-height: 42px;
  color: #999;
  font-weight: bold;
  cursor: pointer;
}

.buy-size-select .switch-condition-box .list a.active {
  background: #fff;
  color: #000;
  font-weight: bold;
}

.buy-size-select .switch-condition-box .list a.active::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: #000;
  bottom: -2px;
  left: 0;
  z-index: 1;
}

.switch-button-wrapper {
  width: 80%;
  max-width: 360px;
  margin: 18px auto 0;
}

.buy-size-select .buy-size-select-box {
  width: 100%;
  height: calc(100vh - 164px);
  overflow-y: scroll;
}

.buy-size-select .buy-size-select-box .list {
  margin: 0 5%;
  border-bottom: 1px solid #e5e5e5;
  background-image: url("../../../img/common/icon-arrow-right-grey.png");
  background-position: right center;
  background-size: 6px;
  background-repeat: no-repeat;
}

.buy-size-select .buy-size-select-box .list:first-of-type {
  margin: 28px 5% 0;
}

.buy-size-select .buy-size-select-box .list:last-of-type {
  margin: 0 5% 28px;
}

.buy-size-select .buy-size-select-box .list.none {
  background: none;
}

.buy-size-select .buy-size-select-box .list.none:hover {
  opacity: 1;
  cursor: default;
}

.buy-size-select .buy-size-select-box .list .list-box {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}

.buy-size-select .buy-size-select-box .list .list-box .size-num {
  text-align: left;
  padding: 0 20px 0 14px;
  box-sizing: border-box;
  color: #000;
  position: relative;
}

.buy-size-select .buy-size-select-box .list .list-box .size-num .size-num-box {
  display: flex;
  align-items: center;
}

.buy-size-select .buy-size-select-box .list .list-box .size-num .pre {
  font-size: 1.2rem;
  margin: 3px 0 0 2px;
}

.buy-size-select .buy-size-select-box .list .list-box .size-num .num {
  font-size: 1.5rem;
  margin: 0 0 0 2px;
  font-weight: bold;
  min-width: 64px;
  padding-right: 8px;
}

.buy-size-select .buy-size-select-box .list .list-box .all {
  font-size: 1.3rem;
  color: #999;
  border-radius: 2px;
  min-width: 47px;
  font-weight: bold;
}

.buy-size-select .buy-size-select-box .list .list-box .size-num .all span {
  background-image: url("../../../img/common/icon-arrow-bottom-grey.png");
  background-position: right 0 center;
  background-size: 9px;
  background-repeat: no-repeat;
  width: 9px;
  height: 8px;
  display: inline-block;
  padding: 0 0 0 4px;
}

.buy-size-select .buy-size-select-box .list .list-box .size-price-box {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.buy-size-select
  .buy-size-select-box
  .list
  .list-box
  .size-price-box
  .pb-badge {
  font-size: 1.1rem;
  background-image: url("../../../img/common/pb-badge.png");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position-y: center;
  height: 14px;
  padding: 0 0 0 15px;
  color: #009166;
  font-weight: bold;
  line-height: 1.4;
  margin-right: 6px;
}

.buy-size-select
  .buy-size-select-box
  .list
  .list-box
  .size-price-box
  .pbs-badge {
  font-size: 1.1rem;
  background-image: url("../../../img/common/pbs-badge.png");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position-y: center;
  height: 14px;
  padding: 0 0 0 15px;
  color: #0089b4;
  font-weight: bold;
  line-height: 1.4;
  margin-right: 6px;
}

.buy-size-select
  .buy-size-select-box
  .list
  .list-box
  .size-price-box
  .size-price {
  font-size: 2rem;
  color: #000;
  text-align: right;
  font-weight: bold;
  padding: 0 20px 0 0;
  min-width: 90px;
}

/* .buy-size-select .buy-size-select-box.all-size .list .list-box .right-box .inner{
    display: flex;
    justify-content: flex-end;
}

.buy-size-select .buy-size-select-box.all-size .list .list-box .right-box .detail-box{
  position: relative;
  margin: 0 15px 0 0;
  text-align: right;
  display: inline-block;
}

.buy-size-select .buy-size-select-box .list .list-box .size-price .listing-count {
  font-size: 1.7rem;
  font-weight: normal;
  color: #333;
}

.buy-size-select .buy-size-select-box.all-size .list .list-box .right-box .detail-box.identification-box{
  padding: 3px 5px 1px;
  border: 1px solid #144278;
  border-radius: 5px;
  background-image: url(../../../img/common/identification-badge-active.png);
  background-position: 5px 3px;
  background-size: 13px;
  background-repeat: no-repeat;
}

.buy-size-select .buy-size-select-box.all-size .list .list-box .right-box .detail-box .identification{
  display: inline-block;
  font-size: 1rem;
  color: #144278;
  font-weight: bold;
  padding: 0 0 0 15px;
  background-repeat: no-repeat;
  line-height: 1.5;
}

.buy-size-select .buy-size-select-box.all-size .list .list-box .right-box .detail-box .pb-badge{
    display: inline-block;
    font-size: 1.1rem;
    background-image: url(../../../img/common/pb-badge.png);
    background-size: 14px;
    background-repeat: no-repeat;
    height: 14px;
    padding: 0 0 0 18px;
    color: #009166;
    font-weight: bold;
    line-height: 1.5;
    margin: 3px 0 0 0;
} */

/* サイズ選択 出品者情報 */
.buy-size-select .buy-size-select-box .list .list-box.buy {
  padding: 16px 0;
}

.buy-size-select .buy-size-select-box.all-size .list .list-box .size-price {
  display: inline-block;
  vertical-align: middle;
  min-width: 118px;
  font-size: 2.1rem;
  font-weight: bold;
  color: #000;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .select-box-inner {
  width: 100%;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .select-box-inner
  .shipping {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .select-box-inner
  .shipping
  .shipping-date {
  font-size: 1.2rem;
  color: #999;
  padding-right: 15px;
  display: flex;
  align-items: center;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .select-box-inner
  .shipping
  .shipping-date
  .shipping-date-schedule {
  font-size: 1.2rem;
  color: #999;
  margin-top: 3px;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .select-box-inner
  .shipping
  .shipping-date
  .shipping-date-num {
  font-size: 2.6rem;
  padding-left: 8px;
  margin-bottom: 3px;
  font-weight: bold;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .select-box-inner
  .shipping
  .shipping-date
  .shipping-date-num
  + span {
  font-weight: bold;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .select-box-inner
  .shipping
  .shipping-date
  span {
  font-size: 1.6rem;
  color: #000;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .select-box-inner
  .shipping-detail {
  padding: 10px;
  background-color: #f5f5f5;
  margin-right: 15px;
  margin-top: 5px;
  border-radius: 4px;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label {
  position: relative;
  display: -webkit-inline-box;
  display: inline-flexbox;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label
  .pb-badge {
  position: relative;
  padding: 4px 4px 3px 19px;
  border: 1px solid #009166;
  border-radius: 5px;
  font-size: 1rem;
  color: #009166;
  font-weight: bold;
  line-height: 1.2;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label
  .pb-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  background-image: url("../../../img/common/pb-badge.png");
  background-size: 13px;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label
  .pbs-badge {
  position: relative;
  padding: 5px 4px 3px 19px;
  border: 1px solid #0089b4;
  border-radius: 5px;
  font-size: 1rem;
  color: #0089b4;
  font-weight: bold;
  line-height: 1.2;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label
  .pbs-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  background-image: url("../../../img/common/pbs-badge.png");
  background-size: 13px;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label
  .identification {
  display: inline-block;
  vertical-align: middle;
  padding: 6px 4px 4px;
  border: 1px solid #cacbca;
  border-radius: 5px;
  background-image: url("../../../img/common/identification-badge.png");
  background-position: 4px 4px;
  background-size: 13px;
  background-repeat: no-repeat;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label
  .identification
  .identification-text {
  display: block;
  padding: 0 0 0 16px;
  font-size: 1rem;
  color: #cacbca;
  font-weight: bold;
  line-height: 1;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label
  .identification.verified {
  border: 1px solid #144278;
  background-image: url("../../../img/common/identification-badge-active.png");
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label
  .identification.verified
  .identification-text {
  color: #144278;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label
  .yahoo-badge {
  padding: 6px 5px 4px 4px;
  background: #ffa3b4;
  border: 1px solid #ffa3b4;
  border-radius: 5px;
  font-size: 1rem;
  color: #252525;
  font-weight: bold;
  line-height: 1;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label
  .corporate-badge {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.1rem;
  background-image: url("../../../img/common/corporate-badge.png");
  background-size: 14px;
  background-position: left center;
  background-repeat: no-repeat;
  height: 14px;
  padding: 0 0 0 18px;
  color: #7d8897;
  font-weight: bold;
  line-height: 1.5;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label
  .rank-label {
  color: #fff;
  padding: 6px 5px 4px 4px;
  border-radius: 5px;
  font-weight: 500;
  line-height: 1;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label
  .rank-label.gold {
  background: #f5af41;
  border: 1px solid #f5af41;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .size-detail-label
  .rank-label.platinum {
  background: #000;
  border: 1px solid #000;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .select-box-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .select-box-text
  .size-detail-title {
  color: #999;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .select-box-text
  .size-detail-title
  span {
  color: #000;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .select-box-text
  .size-detail-title.pb-badge {
  color: #009166;
}

.buy-size-select .buy-size-select-box .list .list-box .size-price-offer {
  display: block;
  width: 100%;
  text-align: right;
}

.buy-size-select
  .buy-size-select-box
  .list
  .list-box
  .size-price-offer
  .size-price-offer {
  font-size: 2rem;
  color: #000;
  font-weight: bold;
  text-align: right;
}

.buy-size-select
  .buy-size-select-box
  .list
  .list-box
  .size-price-offer
  .do-offer {
  color: #00aaa4;
  font-size: 1.3rem;
  font-weight: bold;
}

.buy-size-select
  .buy-size-select-box
  .list
  .list-box
  .size-price-offer
  .size-price-offer-none {
  font-size: 1.3rem;
  color: #333;
}

.buy-size-select
  .buy-size-select-box
  .list
  .list-box
  .size-price-offer
  .size-price-text {
  font-size: 1rem;
  color: #ccc;
  margin: 3px 0 0;
}

.buy-size-select .buy-size-select-box .list.none .list-box .size-num {
  color: #ccc;
}

.buy-size-select .buy-size-select-box .list.none .list-box .size-price {
  font-size: 1.3rem;
  color: #ccc;
}

.buy-size-select .item-box {
  width: 94%;
  height: 80px;
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
}

.buy-size-select .item-box .inner {
  width: 100%;
  height: 80px;
  padding: 0 15px;
  display: table;
  table-layout: fixed;
  box-sizing: border-box;
}

.buy-size-select .item-box .img-box {
  width: 100px;
  height: 70px;
  overflow: hidden;
  position: relative;
  background: #fff;
  border-radius: 5px;
  display: table-cell;
  vertical-align: middle;
}

.buy-size-select .item-box .img-box img {
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0;
  margin: auto;
}

.buy-size-select .item-box .text-box {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding: 5px 0 0 15px;
  box-sizing: border-box;
}

.buy-size-select .item-box .text-box .text {
  font-size: 1.3rem;
  color: #000;
  font-weight: bold;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.buy-size-select .item-box .text-box .detail-text {
  font-size: 1.2rem;
  color: #00aaa4;
  line-height: 1.3;
  display: -webkit-box;
  margin: 3px 0 0;
}

.buy-size-select-bottom-margin {
  height: 100px;
}

.buy-size-select
  .buy-size-select-box.all-size
  .list
  .list-box
  .right-box
  .size-price-all {
  font-size: 2rem;
  text-align: right;
  font-weight: bold;
  color: #000;
  padding: 0 16px 0 0;
}

/* アイテム選択 */
.buy-size-select .buy-size-select-box.all-size .list:first-of-type {
  margin: 0 5%;
}

/* 戻るボタン */
.select-return {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.select-return-btn {
  display: inline-block;
  margin: 0 0 0 5%;
}

.select-return-btn a {
  position: relative;
  display: block;
  padding: 24px 0 20px 14px;
  font-size: 1.3rem;
  color: #999;
  word-break: keep-all;
}

.select-return-btn a::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 12px;
  background: url("../../../img/common/icon-arrow-right-grey.png") no-repeat
    center / contain;
  transform: scale(-1, 1) translateY(-50%);
  left: 0;
  top: 50%;
}

/* 購入確認画面 */

.buy-content.confirm .right-column {
  background: #f9f9f9;
}

.buy-confirm-detail {
  box-sizing: border-box;
  overflow-y: scroll;
  height: calc(100vh - 126px);
  background: #f9f9f9;
}

.buy-c .buy-item-box {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 20px 20px;
  height: auto;
  background: #fff;
}

.sell-input-box .input-box {
  box-sizing: border-box;
  padding: 0 15px;
  background: #fff;
  width: 100%;
  margin: 0 auto;
}

.buy-c .buy-item-box .text {
  font-size: 1.4rem;
  color: #000;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin: 15px 0 5px;
}

.buy-c .buy-item-box .detail-text {
  font-size: 1.2rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
}

.popup-content .pay-logo-box {
  text-align: center;
  margin: 10px 0 0;
}

.buy-c .input-box .list .right-box .text-arrow.entered {
  margin: -20px -15px -20px 0;
  padding: 7px 38px 20px 0;
}

.buy-c .input-box .list .right-box .text-arrow .pay-card-icon {
  width: 32px;
  height: 22px;
  background-size: 28px auto;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  position: relative;
  top: 8px;
  margin: 0 8px 0 0;
}

.buy-c .input-box .list .right-box .text-arrow .pay-card-icon.master {
  background-image: url("../../../img/common/pay-master-logo.png");
}

.buy-c .input-box .list .right-box .text-arrow .pay-card-icon.visa {
  background-image: url("../../../img/common/pay-visa-logo.png");
}

.buy-c .input-box .list .right-box .text-arrow .pay-card-icon.jcb {
  background-image: url("../../../img/common/pay-jcb-logo.png");
}

.buy-c .input-box .list .right-box .text-arrow .pay-card-icon.american {
  background-image: url("../../../img/common/pay-american-logo.png");
}

.buy-c .input-box .list .right-box .text-arrow .pay-card-icon.diners {
  background-image: url("../../../img/common/pay-diners-logo.png");
}

.buy-c .sell-input-box .input-box .pay-box {
  text-align: center;
  background: #fff4f4;
  padding: 11px 0 9px;
  border-radius: 5px;
  box-sizing: border-box;
  border: 1px solid #ff0230;
  color: #ff0230;
  font-size: 1.2rem;
  font-weight: bold;
}

.buy-c .offer-box {
  background: #fff;
}

.buy-c .offer-box .price-wrapper,
.sell-input-box .price-wrapper {
  border-bottom: 1px solid #e5e5e5;
}

.buy-c .offer-box .price-wrapper .price-box,
.sell-input-box .price-wrapper .price-box {
  text-align: center;
  width: 50%;
  margin: 28px 0;
  float: left;
  box-sizing: border-box;
}

.buy-c .offer-box .price-wrapper .price-box.left,
.sell-input-box .price-wrapper .price-box.left {
  border-right: 1px solid #e5e5e5;
}

.buy-c .offer-box .price-wrapper .price-box .main-text,
.sell-input-box .price-wrapper .price-box .main-text {
  font-size: 2rem;
  color: #000;
  font-weight: bold;
  line-height: 0.8;
}

.buy-c .offer-box .price-wrapper .price-box .main-text span,
.sell-input-box .price-wrapper .price-box .main-text span {
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.buy-c .offer-box .price-wrapper .price-box .price-num,
.sell-input-box .price-wrapper .price-box .price-num {
  font-size: 2.8rem;
  font-weight: bold;
  margin: 10px 0 0;
}

.buy-c .offer-box .price-wrapper .price-box .price-num.high,
.sell-input-box .price-wrapper .price-box .price-num.high {
  color: #ff0230;
}

.buy-c .offer-box .price-wrapper .price-box .price-num.low,
.sell-input-box .price-wrapper .price-box .price-num.low {
  color: #00b4ff;
}

.buy-c .offer-box .price-wrapper .price-box .detail-text,
.sell-input-box .price-wrapper .price-box .detail-text {
  font-size: 1.1rem;
  color: #999;
  line-height: 1.3;
  margin: 12px 0 0;
}

.buy-c .offer-box .price-wrapper .price-box .detail-button,
.sell-input-box .price-wrapper .price-box .detail-button {
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  width: 55%;
  padding: 10px 0 9px;
  line-height: 1;
  border-radius: 5px;
  margin: 10px auto 0;
}

.buy-c .offer-box .price-wrapper .price-box .detail-button {
  color: #00b4ff;
  border: #00b4ff 1px solid;
}

.sell-input-box .price-wrapper .price-box .detail-button {
  color: #ff0230;
  border: #ff0230 1px solid;
}

.buy-c .offer-box .input-box .list {
  padding: 25px 0;
}

.buy-c .offer-box .input-box .list .left-box .text {
  font-size: 1.6rem;
  color: #000;
  font-weight: bold;
}

.buy-c .offer-box .input-box .list .right-box .input.price {
  font-size: 2.4rem;
  font-weight: bold;
  width: 55%;
}

.input-box .list .right-box.price-box .yen {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: Avenir;
  line-height: 0;
  position: absolute;
  top: 11px;
  right: 55%;
  z-index: 10;
}

.buy-c .detail-text-wrapper {
  border-top: 1px solid #e5e5e5;
  background: #f5f5f5;
  padding: 15px;
  color: #999;
  line-height: 1.5;
  font-size: 1rem;
}

.input-box .list .right-box.price-box .yen.immediate {
  text-align: right;
  right: 0;
}

.text-list-1-row-box {
  width: 100%;
  background-color: #fff;
}

.text-list-1-row-box li .list-title {
  font-size: 1.3rem;
  padding: 18px 15px 8px;
  background: #f5f5f5;
  color: #999;
  border-bottom: 1px solid #e5e5e5;
}

.text-list-1-row-box li a {
  border-bottom: 1px solid #e5e5e5;
  padding: 14px 15px 13px;
  color: #000;
  font-size: 1.2rem;
  line-height: 1.4;
  display: block;
  background-image: url("../../../img/common/sp-icon-arrow-right.png");
  background-repeat: no-repeat;
  background-size: 7px 12px;
  background-position: right 15px center;
}

.text-list-1-row-box li a.icon-text {
  padding: 0 15px;
}

.text-list-1-row-box li a.icon-text .icon-authentic {
  background-image: url("../../../img/common/icon-authentic.png");
  background-repeat: no-repeat;
  background-size: 28px auto;
  background-position: left center;
  padding: 14px 0 13px 42px;
}

.text-list-1-row-box li a.icon-text .icon-guarantee {
  background-image: url("../../../img/common/icon-guarantee.png");
  background-repeat: no-repeat;
  background-size: 28px auto;
  background-position: left center;
  padding: 14px 0 13px 42px;
}

.text-list-1-row-box li a.icon-text .icon-item-status {
  background-image: url("../../../img/common/select-button-icon-2.png");
  background-repeat: no-repeat;
  background-size: 33px auto;
  background-position: left center;
  padding: 14px 0 13px 42px;
}

.text-list-1-row-box li a.icon-text .icon-flow {
  background-image: url("../../../img/common/icon-flow.png");
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: left center;
  padding: 14px 0 13px 42px;
}

.text-list-1-row-box li a span.right-text {
  float: right;
  margin: 0 25px 0 0;
  font-size: 1.1rem;
  background: #fff;
  color: #999;
  font-weight: bold;
  padding: 4px 8px 2px;
}

.text-list-1-row-box li a span.right-text.green {
  background: #00aaa4;
  color: #fff;
  font-weight: bold;
  padding: 4px 8px 2px;
  border-radius: 100px;
}

/* 2列 */

.text-list-2-row-box {
  width: 100%;
  background: #f5f5f5;
}

.text-list-2-row-box li {
  width: 50%;
  float: left;
  box-sizing: border-box;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

.text-list-2-row-box li:nth-child(odd) {
  border-right: 1px solid #e5e5e5;
}

.text-list-2-row-box li a {
  padding: 13px 25px 13px 15px;
  color: #000;
  font-size: 1.3rem;
  line-height: 1.4;
  display: block;
  background-image: url("../../../img/common/sp-icon-arrow-right.png");
  background-repeat: no-repeat;
  background-size: 7px 12px;
  background-position: right 15px center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.action-button-bottom {
  position: absolute;
  display: flex;
  top: 0;
  right: 0;
  height: 70px;
  line-height: 70px;
  width: 46%;
  text-align: center;
}

.action-button-inner {
  width: 100%;
  display: block;
  border-top: 1px solid #000;
  background: #000;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
}

.action-button-inner.buy {
  border-top: 1px solid #f73f60;
  background: #f73f60;
}

.action-button-inner.next {
  border-top: 1px solid #00aaa4;
  background: #00aaa4;
}

.action-button-inner.offer {
  border-top: 1px solid #00aaa4;
  background: #00aaa4;
}

.action-button-inner.change {
  border-top: 1px solid #ff4715;
  background: #ff4715;
}

.action-button-inner.sell {
  border-top: 1px solid #ff832d;
  background: #ff832d;
}

.action-button-inner:hover {
  color: #fff;
}

.action-button-half {
  width: 50%;
  display: block;
  border-top: 1px solid #000;
  background: #000;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
}

.action-button-half.buy {
  border-top: 1px solid #f73f60;
  background: #f73f60;
}

.action-button-half.offer {
  border-top: 1px solid #00aaa4;
  background: #00aaa4;
}

.action-button-half:hover {
  color: #fff;
}

@media screen and (width <=834px) {
  .selected-product-label {
    left: 5%;
    transform: none;
    font-size: 1.2rem;
  }

  .buy-content.confirm .left-column {
    position: static;
  }

  .buy-content.confirm .select-return {
    display: none;
  }

  .buy-content.confirm .left-column .selected-product-info {
    width: 100%;
    display: block;
    padding: 0;
    box-shadow: none;
  }

  .buy-content.confirm .left-column .selected-product-image {
    width: 90%;
    margin: 0 auto;
  }

  .buy-content.confirm .left-column .selected-product-textbox {
    width: 90%;
    margin: 8px auto 20px;
    text-align: center;
  }

  .buy-content.confirm .bottom-fix-area {
    display: block;
  }

  .buy-content.confirm .cancel-btn {
    display: none;
  }

  .buy-content.confirm .action-button-bottom {
    width: 100%;
  }

  .buy-content.confirm .selected-product-name {
    font-size: 1.6rem;
    margin: 0 auto;
  }

  .buy-content.confirm .selected-product-size {
    text-align: center;
  }
}

/* 本人情報入力 お届け先入力画面 お支払い方法の入力 */

.info-input-header {
  padding: 16px 0 10px 5%;
  background: #fff;
  box-sizing: border-box;
  border-bottom: 1px solid #e5e5e5;
}

.info-input-title {
  font-size: 1.7rem;
}

.info-input-text {
  margin: 6px 0 0;
  line-height: 1.3;
  color: #333;
}

.info-input-form-box .input-box {
  padding: 0 5%;
}

.info-input-form-box .input-box .list .left-box {
  width: 100px;
}

.info-input-form-box .input-box .list .right-box {
  width: calc(100% - 100px);
}

.info-input-notes {
  margin: 18px 0 0 4%;
  line-height: 1.4;
  font-size: 1.1rem;
  width: 90%;
  color: #666;
}

.info-input-notes.fix-bottom {
  position: absolute;
  bottom: 8px;
  left: 0;
}

.next-action-btn {
  display: none;
  background: #000;
  color: #fff;
  width: 90%;
  margin: 22px auto 0;
  border: none;
  height: 38px;
  border-radius: 6px;
}

.info-input-form-box .label-type-1 {
  padding: 13px 0 10px;
}

.info-input-form-box .input-box .list .right-box .select {
  text-align: right;
}

.info-input-form-box .input-box .list .right-box .select:invalid {
  color: #ccc;
}

.info-input-header .pay-logo-box {
  width: 440px;
  margin: 10px 0 6px;
}

/* 支払い方法の選択 */
.info-input-form-box.payment {
  background: #f9f9f9;
  padding: 2% 5% 6%;
  max-height: calc(100vh - 168px);
  box-sizing: border-box;
  overflow-y: scroll;
}

/* オファー */
.info-input-form-box.offer {
  background: #f9f9f9;
  height: 100%;
  max-height: calc(100vh - 124px);
  box-sizing: border-box;
  overflow-y: scroll;
}

/* 出品 */
.info-input-form-box.sell {
  background: #f9f9f9;
  height: 100%;
  max-height: calc(100vh - 124px);
  box-sizing: border-box;
  overflow-y: scroll;
}

/* フッターエリア */
.bottom-fix-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  box-sizing: border-box;
  padding: 0 10px 0 5%;
}

.bottom-fix-area-buy {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  box-sizing: border-box;
  padding: 0 10px 0 5%;
}

.cancel-btn {
  position: relative;
  display: inline-block;
  border: 1px solid #999;
  top: 50%;
  transform: translateY(-50%);
}

.cancel-btn a {
  display: block;
  padding: 8px 30px;
  font-size: 1.2rem;
  box-sizing: border-box;
  color: #999;
}

.delete-btn .button-type-1 {
  width: 300px;
  height: 40px;
  line-height: 40px;
}

.wrapper-margin-mini {
  height: 8px;
  background: #f9f9f9;
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 0 6px 1px rgb(0 0 0 / 8%) inset;
}

.buy-c .about {
  height: auto;
  padding: 15px;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
}

@media screen and (width <=834px) {
  .buy-size-select .buy-size-select-box .list:last-of-type {
    margin: 0 5% 78px;
  }

  .info-input-notes.fix-bottom {
    position: static;
  }

  .next-action-btn {
    display: block;
  }
}
