@charset "UTF-8";
/*================================================
商品一覧ページの商品比較専用CSS
================================================*/

.item_compare_wrap {
  display: block;
  cursor: pointer;
}
.item_compare_text {
	line-height: 1.4;
	color: #9d9d9d;
	padding-right: 1.25rem;
	background:url("/static/full/images/svg/icn_compare.svg") no-repeat right center;
}
.compare_disabled {
	cursor:default;
	opacity: 0.5;
}

.addItemCompare {
  cursor: pointer;
}

.compare_on .item_compare_text {
	color:#1A1A1A;
	background:url("/static/full/images/svg/icn_compare_on.svg") no-repeat right center;
}
.compare_disabled.compare_on{
	opacity:1;
	cursor: pointer;
}
.item_compare_text:before{
	content:"比較する";
}
.compare_on .item_compare_text:before{
	content:"比較リスト追加済";
}
.compare_on .item_compare_text:hover:before{
	content:"比較リストから削除";
}
/* 比較エリア
********************************************/
.compare_area {
	display: block;
	width: 100%;
	background-color: transparent;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	transition: all .5s ease;
	pointer-events: none;
}
.compare_area.open {
  display: block;
}
.compare_area.active {
	pointer-events: all;
}
.compare_area.active * {
  /* pointer-events: none; */
}
.compare_area.active:hover {}

.compare_area.active:hover * {
  pointer-events:auto;
}
.compare_area_container {
	width: 100%;
	background-color: #fafafa;
	padding: 0 20px;
	transform: translate3d(0, 100%, 0);
	transition: all .5s ease;
}
.compare_area.active .compare_area_container {
	transform: translate3d(0, 0, 0);
}
.compare_area_inner{
	display:flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 0;
	height: 50px;
	width: 1200px;
	margin: 0 auto;
}
.compare_area_header {}
.compare_area .compare-title {
  font-size: 14px;
	font-weight: bold;
  line-height: 1.3;
}
.compare_area_main{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 60px;
}
.compare_area_product {
	height:50px;
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}
.compare_item_list {
	display: flex;
	height: 40px;
	gap: 10px;
	width: 140px;
}
.compare_item {
	display: flex;
  width: 40px;
  height: 100%;
  border: 1px solid var(--color-border-gray);
}
.compare_item_wrap {
   width: 100%;
}
.compare_item_remove {
	pointer-events:auto;
	display:block;
	height:100%;
	width: 100%;
	position:relative;
}
.compare_item_remove:hover:after{
	content:"";
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	background: rgba(0,0,0,0.5) url('/static/full/images/svg/icn_cancel_white.svg') no-repeat center;
	background-size:24px 24px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.compare_item_photo {
	display:block;
	position:relative;
  width: 100%;
  height: 100%;
}
.compare_item_photo:before {
	content: "";
	display: block;
	padding-top: var(--goods-aspect-ratio);
}
.compare_item_image {
  width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	-webkit-user-select: none;
	user-select: none;
}
.compare_item_info {
  display: none;
}
.compare_item_alert {
  display: none;
  color: var(--color-text-red);
	font-size: 12px;
  text-align: center;
  margin-bottom: 20px;
	padding: 10px 0;
	border: 1px solid var(--color-border-red);
}
.compare_item_list_empty {
	display: flex;
	height: 40px;
	gap: 10px;
	width: 140px;
	position: absolute;
	z-index: -1;
}
.compare_item_list_empty > div{
	width: 40px;
	height:100%;
	border:1px dashed var(--color-border-gray);
}
.compare_num{
	display:none;
}
.compare_item_do {
	display: block;
  width: 84px;
  height: 40px;
	color:#fff;
  font-size: 12px;
	font-weight: bold;
	line-height: 1.3;
	text-align:center;
  cursor: pointer;
  background-color: var(--color-background-general);
  padding: 10px 15px;
}
.compare_item_do_text {
	color:#fff;
  font-size: 12px;
	font-weight: bold;
	line-height: 1.3;
}
.compare_item_clear {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
.compare_item_clear_icon {
	display:block;
	width: 20px;
	height: 20px;
	position: relative;
}
.compare_item_clear_icon:before {
	content:"";
	width: 20px;
	height: 2px;
	background: var(--color-background-base);
	position:absolute;
	top:50%;
	left:0px;
	transform:rotate(135deg);
}
.compare_item_clear_icon:after {
	content:"";
	width: 20px;
	height: 2px;
	background: var(--color-background-base);
	position:absolute;
	top:50%;
	left:0px;
	transform:rotate(45deg);
}
.compare_item_clear_text {
	flex-shrink: 0;
	font-size: 14px;
	line-height: 1.3;
}
.compare_item_name {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}
.compare_item_mkcode {}