@charset "utf-8";

:root {
  --text-base-black: #333;
  --text-light: #999;
  --text-pale: #888;
  --font-size-l: 15px;
  --sale: #ED143D;
}

/* catalogList */
.catalogList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
.catalogList_item {
  position: relative;
  width: calc(calc(100% - 2px) / 3);
  box-sizing: content-box;
}
.catalogList:before,
.catalogList:after {
  display: inline-block;
  content: "";
  width: calc(calc(100% - 2px) / 3);
  order: 100;
}
.catalogList_item a {
  display: block;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.catalogList .product-text .brandName {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.product-text .regular_price,
.product-text .special_price {
  font-size: 16px;
  font-weight: bold;
}
.catalogList .product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  background-color: #fefefe;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.catalogList .product-image>img {
  display: block;
  width: 100%;
  max-width: initial;
  height: auto;
}
.catalogList .product-image:before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: rgba(0, 0, 0, .02);
  position: absolute;
  top: 0;
  left: 0;
}
.product-text .special_price .-proper{
  display:none;
}
/* === 検索履歴 === */
#viewHistory_searchHistoryList {
  margin-bottom: 40px;
  border-top: 1px solid #eee;
  opacity: 1;
  transition: 300ms;
}
#viewHistory_searchHistoryList .indexItem {
  line-height: 1.5;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
#viewHistory_searchHistoryList .indexItem a {
  display: block;
  text-decoration: none;
}
#viewHistory_searchHistoryList .indexItemContent {
  padding: 13px 12px 13px 18px;
}
#viewHistory_searchHistoryList .indexItemHeading {
  font-size: 14px;
  color: #333;
  word-break: break-all;
}
#searchHistory .indexItemHeading .displayAll {
  font-size: 11px;
  margin-left: .5em;
}

/* 検索履歴タブ */
.catalog.view-history .tabList {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #e6e6e6;
}
.catalog.view-history .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 48px;
  background-color: #f6f6f6;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  box-sizing: border-box;
}
.catalog.view-history .tab:last-child {
  border-right: none;
}
.catalog.view-history .tab.is-active {
  background-color: #fff;
  border-bottom: none;
}
.catalog.view-history .tab span {
  display: inline-block;
  font-size: 15px;
  color: #333;
  opacity: .6;
}
.catalog.view-history .tab.is-active span {
  opacity: 1;
}

/* tabContent */
.catalog.view-history .tabContentList {
  position: relative;
}
.catalog.view-history .tabContent {
  opacity: 0;
  visibility: hidden;
  transition-duration: .2s;
  position: absolute;
  top: 0;
}
.catalog.view-history .tabContent.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
#viewHistory .wrap_editBtn,
#searchHistory .wrap_editBtn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  margin: .5em 0;
}
#viewHistory.is-edit .wrap_editBtn,
#searchHistory.is-edit .wrap_editBtn {
  justify-content: space-between;
}
#viewHistory .editBtn,
#viewHistory .clearBtn,
#searchHistory .editBtn,
#searchHistory .clearBtn {
  display: inline-block;
  padding: .5em .8em;
  font-size: 13px;
  background-color: #f2f2f2;
  border-radius: 2px;
}
#viewHistory.is-edit .editBtn,
#searchHistory.is-edit .editBtn {
  color: #fff;
  background-color: #333;
}
#viewHistory.is-edit .clearBtn,
#searchHistory.is-edit .clearBtn {
  color: #666;
  background-color: #f2f2f2;
}
#viewHistory .clearBtn,
#searchHistory .clearBtn {
  display: none;
}
.catalog.view-history #viewHistory {
  margin-top: 0;
}

/* コンテンツが無い時 */
.catalog.view-history .text-noContent {
  display: none;
  margin: 12px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* 編集時 */
#viewHistory .indexItemContent,
#searchHistory .indexItemContent {
  transition-duration: .2s;
}
#viewHistory.is-edit .indexItemContent,
#searchHistory.is-edit .indexItemContent {
  transform: translateX(40px);
}
#viewHistory.is-edit .catalogList_item
#searchHistory.is-edit .indexItem {
  position: relative;
  overflow: hidden;
}
#viewHistory .deleteBtn,
#searchHistory .deleteBtn {
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease-out;
}
#viewHistory.is-edit .deleteBtn,
#searchHistory.is-edit .deleteBtn {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background-color: #777;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translate(0%, -50%);
  opacity: 1;
  visibility: visible;
}
#viewHistory.is-edit .deleteBtn {
  top: 18px;
  right: 4px;
  left: auto;
}
#viewHistory .deleteBtn:before,
#viewHistory .deleteBtn:after,
#searchHistory .deleteBtn:before,
#searchHistory .deleteBtn:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: #fff;
}
#viewHistory .deleteBtn:before,
#searchHistory .deleteBtn:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#viewHistory .deleteBtn:after,
#searchHistory .deleteBtn:after {
  transform: translate(-50%, -50%) rotate(135deg);
}

/* 履歴を消去 */
#viewHistory.is-edit .clearBtn,
#searchHistory.is-edit .clearBtn {
  display: block;
}
.viewHistoryList.is-clear,
#viewHistory_searchHistoryList.is-clear {
  opacity: .1;
}

/* リンクエリア */
#searchHistory.is-edit .indexItem a {
  pointer-events: none;
}
#searchHistory.is-edit .indexItemContent {
  opacity: .6;
}
.view-history .catalogList .product-image {
  margin-bottom: 0px;
}
.catalog.view-history .tabContent {
  display: none;
}
.catalog.view-history .tabContent.is-active {
  display: block;
}
/* スマートアップバナー非表示 */
#anime_sab {
  display: none !important;
}

/* セールクーポン表示の大きさを縮小 #91804 */
.lc-item .lc-item__campaign {
  transform-origin: left bottom;
  transform: scale(.8);
}
.lc-item .lc-item__campaign .lc-item__timesale {
  background: rgba(237, 20, 61, .8);
}

/* キャンペーンアイコン .catalog-campaignGroup */
/* .catalog-campaignGroup{
  font-size:10px;
  transform:translateY(-18px);
  display:inline-flex;
  flex-wrap:wrap;
  min-height:18px;
}
.catalog-campaignItem{
  height:18px;
}
.catalog-content{
  margin-top:-18px;
}
.catalog-campaignItem span{
  display: flex;
  align-items: center;
  padding: 0 .35em 0 .35em;
  font-size: 10px;
  height: 18px;
  color: #fff;
  letter-spacing: .05em;
}
.catalog-campaignItem span:after{
  letter-spacing: 0;
} */
.catalog-link:hover .catalog-campaignItem{
  opacity:.7;
}
/* 小ユニット用のリサイズ調整 */
.section-myBrand .catalog-campaignGroup,
.section-ranking .catalog-item:nth-child(n + 5) .catalog-campaignGroup,
.section-trendWord .catalog-campaignGroup{
  transform:translateY(-16px) scale(calc(16/18));
  transform-origin:top left;
  width:calc((18/16) * 100%);
}
.section-myBrand .catalog-content,
.section-ranking .catalog-item:nth-child(n + 5) .catalog-content,
.section-trendWord .catalog-content{
  margin-top:-16px;
}

/* セール */
.catalog-campaignItem.-discount span{
  background-color: rgba(237, 20, 61, .8);
}
.catalog-campaignItem.-discount span:after{
  content:"OFF";
  margin-left:.1em;
}
.catalog-campaignItem.-discount.-timesale span:before{
  content:"";
  display:inline-block;
  width: 11px;
  height: 11px;
  background-image: url('//media.aws.locondo.jp/contents/img/common/icon_timesale.svg');
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  margin-right: .2em;
}

/* クーポン */
.catalog-campaignItem.-coupon span{
  color:#222;
  background-color: rgba(255, 218, 31, .8);
}
.catalog-campaignItem.-coupon span:before{
  content:"";
  display:inline-block;
  width: 32px;
  height: 13px;
  background-image: url('//media.aws.locondo.jp/contents/img/common/icon_coupon.svg');
  background-size:contain;
  background-repeat:no-repeat;
  background-position:left center;
  margin-right: .2em;
}
.catalog-campaignItem.-coupon.-rate span:after{
  content:"%";
}
/* ここまで キャンペーンアイコン .catalog-campaignGroup */


/* サイト固有のスタイル（PC/SP共通） */
.site_oasys .view-history .catalogList .catalog-campaignGroup {
  display: none;
}
.site_oasys .view-history .catalogList .product-text {
  margin-top: 0;
  padding-top: 5px;
}
.site_oasys .view-history .catalogList .product-text .commodityName {
  white-space: nowrap;
  text-overflow: ellipsis;
  letter-spacing: 0.06em;
  line-height: 1.5;
  width: 100%;
  font-size: 12px;
  color: #000;
  margin-bottom: 0;
}
.site_oasys .view-history .catalogList .product-text .priceLine p {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  color: #000;
}
@media (min-width: 768px) {
  .view-history .section__heading h1 {
    line-height: 1.5;
    font-weight: normal;
    font-size: 24px;
    margin: 1em 0;
    text-align: center;
    font-weight: normal;
  }
  .view-history .tabList li,
  .view-history .editBtn,
  .view-history .clearBtn,
  .view-history .deleteBtn {
    cursor: pointer;
  }
  /* レコメンド catalogList */
  .view-history .catalogList{
    display:flex;
    flex-wrap:wrap;
    justify-content: flex-start;
  }
  .view-history .catalogList > li{
    width: calc(100% / 6 );
  }
  .view-history .catalogList .catalogList_item:nth-child(6n) {
    margin-right: 0;
  }
  .view-history .catalogList .product-image {
    margin-bottom: 4px;
  }
  .view-history .catalogList .product-text{
    padding-right:10px;
  }
  .view-history .catalogList .product-text .brandName {
    margin-bottom: 0.5em;
    line-height:1.1;
    /* font-size: 13px; */
    letter-spacing: initial;
    word-break: break-word;
    color: var(--text-base-black);
  }
  .view-history .catalogList .product-text .commodityName {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.1;
    overflow: hidden;
    overflow-x: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 0.5em;
  }
  .view-history .catalogList .product-text .priceLine p {
    font-size: var(--font-size-l);
    letter-spacing: initial;
    color: var(--text-base-black);
  }
  .view-history .catalogList .product-text .priceLine .special_price span {
    color: var(--sale);
  }
  .view-history .catalogList .product-text .priceLine .special_price .-proper{
    font-weight:400;
    color:var(--text-pale);
    text-decoration: line-through;
    display:none;
  }
  .view-history .catalogList .product-text .member_price {
    padding:0!important;
  }
  .view-history .catalogList .product-text .special_price.member_price{
    color:var(--sale)!important;
  }

  /* サイト固有のスタイル（PC） */
  /* 見出し */
  .site_oasys .view-history .catalogList {
    gap: 10px;
  }
  .site_oasys .view-history .catalogList .catalogList_item {
    width: calc((100% - 50px) / 6);
  }
  .site_oasys .view-history .catalogList .product-text .priceLine p {
    text-align: left;
  }

}

@media (max-width: 767px) {
  .site_oasys .view-history .catalogList .catalogList_item {
    width: 32%;
  }
  .site_oasys .view-history .catalogList .product-text .priceLine {
    justify-content: center;
  }
  .site_oasys .view-history .catalogList .product-text .commodityName {
    font-size: 11px;
  }
  .site_oasys .view-history .catalogList .product-text .priceLine p.special_price {
    color: var(--sale);
  }
}