@charset "utf-8";

/* クイックビューは非表示 */
.catalogList_item .trgQuickView {
  display: none !important;
}

/*----------------------------------------
  お気に入り追加
----------------------------------------*/
.catalogList_item .priceLine{
  position:relative;
}
.catalogList_item .trgFavItem {
  display: block;
  position:absolute;
  top:-5px;
}
.trgFavItem {
  display: block;
}
.icon-favItemAdd,
.trgFavItem {
  height: 32px;
  width: 32px;
  color: #000;
  background: url(https://media.aws.locondo.jp/contents/img/common/icon-favItemAdd.svg) no-repeat;
  background-position: center 5px;
  background-size: 24px auto;
}
.site_fashionwalker .icon-favItemAdd,
.site_brandeli .icon-favItemAdd {
  background-size: 20px auto;
}
.icon-favItemAdd:hover {
  background-image: url(https://media.aws.locondo.jp/contents/img/common/icon-favItemAdd-blk.svg);
}

/* モーダル内 */
.modal_favItemAdd {
  margin-top: 30px;
  width: 640px;
  padding: 0;
}
.modal_favItemAdd .modal-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  -ms-display: flex;
  -ms-flex-wrap: wrap;
  -ms-justify-content: space-between;
  -ms-align-items: flex-start;
  padding: 30px;
}
.modal_favItemAdd .modal-inner>.heading {
  width: 100%;
  text-align: left;
}
.modal_favItemAdd .heading h2 {
  margin-bottom: 24px;
  font-size: 18px;
  color: #333;
}
.modal_favItemAdd .heading .note {
  color: #666;
}

/* クローズボタン */
/* リセット */
.modal_favItemAdd button,
.modal_favItemAdd_login button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
.modal_favItemAdd_closeBtn.upper {
  display: block;
  position: absolute;
  right: -16px;
  top: -16px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  background: url(https://media.aws.locondo.jp/contents/img/pc/btn-modal-close.png);
  background-repeat: no-repeat;
  background-size: 46px;
}
.modal_favItemAdd_closeBtn.bottom {
  margin: 20px auto 30px;
  width: 30%;
  font-size: 15px;
  line-height: 44px;
  color: #999;
  border: 1px solid #999;
  border-radius: 2px;
}
.modal_favItemAdd .productInfo {
  box-sizing: border-box;
  width: 40%;
  text-align: left;
  position: sticky;
  top: -40px;
}
.modal_favItemAdd .productImage {
  display: inline-block;
  margin-bottom: 6px;
  width: 200px;
  height: 200px;
}
.modal_favItemAdd .productColor {
  display: block;
  margin-bottom: .5em;
  width: 180px;
  vertical-align: top;
  font-size: 12px;
  color: #333;
}
.modal_favItemAdd .sizeList {
  margin-bottom: 20px;
  width: 60%;
}
.modal_favItemAdd .item {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  display: -ms-flexbox !important;
  -ms-justify-content: space-between;
  -ms-align-items: center;
  min-height: 40px;
  padding-left: 1em;
  font-size: 13px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}
.modal_favItemAdd .item:nth-child(2) {
  border-top: 1px solid #f0f0f0;
}
.modal_favItemAdd .item .wrap {
  max-width: 284px;
}
.modal_favItemAdd .item span {
  display: inline-block;
  align-self: center;
  text-align: left;
  word-wrap: normal;
  word-break: break-all;
}
.modal_favItemAdd .item .wrap.isStock0 {
  opacity: .4;
}
.modal_favItemAdd .item .size:after {
  content: "/";
  padding: 0 .5em;
}
:where(.site_magaseek, .site_brandeli, .site_fashionwalker, .site_waja) 
.modal_favItemAdd .stock:where(
  [data-zaiko-label="stockSufficient"],
  [data-zaiko-label="stockLittle"]
):after{
  display:inline-block;
  content:"お急ぎ便";
  background-image: url(https://media.aws.locondo.jp/contents/img/sp/icon_speed-delivery.png);
  background-repeat:no-repeat;
  background-position: left -1px;
  background-size:14px;
  padding-left:14px;
  font-size:10px;
  line-height:14px;
  color:#666;
}

/* アイコン */
/* beforeがチェック afterが未チェック */
.modal_favItemAdd .item .btnFavItem {
  position: relative;
  display: block;
  width: 48px;
  min-height: 40px;
  cursor: pointer;
}
.modal_favItemAdd .item .btnFavItem:before,
.modal_favItemAdd .item .btnFavItem:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  background: url(https://media.aws.locondo.jp/_assets/img/both/icon_fav_product.png);
  width: 48px;
  height: 27px;
  background-size: 30px auto;
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
}

/* チェック */
.modal_favItemAdd .item .btnFavItem:before {
  background-position: center -27px;
  z-index: -1;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: transform .3s cubic-bezier(.215, .61, .355, 1);
  transition: transform .3s cubic-bezier(.215, .61, .355, 1);
}

/* 未チェック */
.modal_favItemAdd .item .btnFavItem:after {
  opacity: 1;
  -webkit-transition: opacity .3s cubic-bezier(.215, .61, .355, 1), transform .3s cubic-bezier(.215, .61, .355, 1);
  transition: opacity .3s cubic-bezier(.215, .61, .355, 1), transform .3s cubic-bezier(.215, .61, .355, 1);
}

/* 押された時のアニメーション */
.modal_favItemAdd .item .btnFavItem.true:before {
  -webkit-transform: scale(1);
  transform: scale(1)
}
.modal_favItemAdd .item .btnFavItem.true:after {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
}

/* お気に入り追加 ログイン */
.modal_favItemAdd_login {
  width: calc(100% - 30px);
}

/* ローダー */
.modal_favItemAdd .loaderGif.is-hide {
  display: none;
}

/* ログイン画面へ */
.boxToLogin {
  padding: 24px 0;
  background-color: #f6f6f6;
  border-bottom: 1px solid #eee;
}
.boxToLogin .heading {
  margin-bottom: 1em;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: #333;
}
.boxToLogin .heading strong {
  font-weight: 400;
}
.boxToLogin .note {
  display: inline-block;
  margin: 0 auto 16px;
  line-height: 1.7;
  text-align: left;
  font-size: 11px;
  color: #666;
}
.boxToLogin .btn-login a {
  display: inline-block;
  width: 40%;
  padding: .8em;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
}

/* おすすめ商品 */
.favoriteSimilarities {
  background: #f8f8f8;
}
.favoriteSimilarities .heading {
  padding: 16px;
  font-size: 13px;
  text-align: center;
}
.list-similarities {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -ms-display: flex;
  -ms-flex-wrap: wrap;
  -ms-justify-content: space-between;
  margin: 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.item-similarities {
  width: 101px;
  vertical-align: top;
  padding-bottom: 16px;
  box-sizing: content-box;
}
.item-similarities:nth-child(3n) {
  border-right: none;
}
.item-similarities a {
  font-size: 12px;
  text-decoration: none;
}
.item-similarities img {
  display: block;
  margin-bottom: 8px;
  width: 100%;
  height: auto;
}
.item-similarities p span {
  display: block;
  line-height: 1;
  font-weight: 400;
  letter-spacing: .02em;
}
.item-similarities .brand_name {
  margin-bottom: .5em;
  padding: 0 .5em;
  font-size: 11px;
  color: #666;
  overflow: hidden;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
}
.item-similarities .price {
  font-size: 13px;
  color: #333;
  overflow: hidden;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
}
.item-similarities .price.special_price {
  color: #FF0030;
}

/* 三角 */
.favoriteSimilarities .heading,
.boxToLogin {
  position: relative;
}
.favoriteSimilarities .heading:before,
.boxToLogin:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f0f0f0;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.favoriteSimilarities .heading:after,
.boxToLogin:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f6f6f6;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* フィードバック（登録しました文言） */
.favoriteSimilarities .heading .feedbackTxt {
  margin-bottom: 1em;
  font-size: 15px;
}
.favoriteSimilarities .heading .toMypage {
  display: inline-block;
  margin-bottom: 16px;
  padding: .8em 1.2em;
  line-height: 1;
  font-size: 11px;
  border-radius: 2px;
  text-decoration: none;
}
.favoriteSimilarities .heading .similaritiesHeading {
  padding-top: 16px;
  border-top: 1px solid #fff;
}
.favoriteSimilarities .heading .toMypage:hover {
  text-decoration: none;
  opacity: .7;
  cursor: pointer;
}
.favoriteSimilarities .heading .similaritiesHeading {
  padding-top: 16px;
  font-size: 15px;
  border-top: 2px solid #fff;
}

/* ダブルクリック防止 */
.modal_favItemAdd .btnFavItem.disable {
  pointer-events: none;
}
