﻿#fixed_cart {
	position: fixed;
	right: 0;
	bottom: 83px;
	background: #fff;
	padding: 5px;
	box-sizing: border-box;
	width: 160px;
	border: 1px solid #c9c9c9;
	box-shadow: 0px 0px 13px 0px #b7b7b7;
	border-radius: 3px;
	font-size: 13px;
	z-index: 1;
}

.fc_name {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.fc_pay_type {
	font-weight: bold;
	display: inline-block;
}

.fc_price_value {
	display: inline-block;
	width: 88px;
	font-size: 17px;
	color: #bf0000;
}

.fc_price {
	text-align: right;
	margin-top: 13px;
}

.fc_ship_type {
	color: #bf0000;
}

.cart_kit {
}

.fc_btns [type="button"] {
	width: 100%;
	height: 30px;
	border: 0;
	border-radius: 3px;
}

.fc_btns .fc_cart_btn {
	background: #0d59eb;
	color: #fff;
}

.fc_btns .fc_wishlistbtn {
	background: #fff;
	color: #333;
	border: 1px solid #999;
	padding-right: 23px;
	padding-top: 2px;
}

.fc_wishlist.fc_add::after {
	content: "\e919";
	font-family: 'fs-icon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 1.6em;
	margin-left: 8px;
	position: absolute;
	right: 7px;
	top: 5px;
}

.fc_wishlist.fc_remove::after {
	content: "\e91a";
	color: #C98696;
	font-family: 'fs-icon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 1.6em;
	margin-left: 8px;
	position: absolute;
	right: 7px;
	top: 5px;
}

.fc_btn {
	margin-top: 6px;
	position: relative;
}

.fc_btns [type="button"]:hover {
	opacity: .8;
	cursor: pointer;
}


.fc_wishlist.fc_btn {
	position: relative;
}

.fc_cartpop {
	position: absolute;
	left: -126px;
	background: #333333;
	color: #fff;
	height: 90px;
	width: 105px;
	text-align: center;
	font-size: 14px;
	top: -44px;
	border-radius: 4px;
	z-index: 10;
	display: none;
}

	.fc_cartpop::after {
		content: "";
		position: absolute;
		background: #333333;
		height: 13px;
		width: 13px;
		transform: rotate(45deg);
		top: 54px;
		right: -7px;
		overflow: hidden;
	}

	.fc_cartpop::before {
		content: "";
		height: 35px;
		width: 19px;
		border: 2px solid #fff;
		display: block;
		border-left: 0;
		border-top: 0;
		transform: rotate(45deg);
		margin: auto;
		margin-bottom: 7px;
		margin-top: -2px;
	}


/* スマホレイアウト */
#fixed_cart[data-mode="SP"] {
	bottom: 0;
	width: 100%;
	padding: 0 5px;
}

	#fixed_cart[data-mode="SP"] .fc_name {
		display: none;
	}

	#fixed_cart[data-mode="SP"] .fc_btns {
		display: flex;
		width: calc(100% - 100px);
		gap: 5px;
		position: relative;
		align-items: start;
	}

	#fixed_cart[data-mode="SP"] .fc_wishlist.fc_btn {
		position: absolute;
		font-size: 0;
		left: -36px;
		margin-top: 0;
		padding: 0;
		width: 26px;
		height: 26px;
	}

	#fixed_cart[data-mode="SP"] .fc_price {
		width: 100px;
		text-align: left;
		font-size: 0;
		margin-top: 0;
	}

	#fixed_cart[data-mode="SP"] .cart_kit {
		display: flex;
		padding-top: 3px;
	}

	#fixed_cart[data-mode="SP"] .fc_tax_type {
		display: inline-block;
		width: 33px;
		font-size: 11px;
	}

	#fixed_cart[data-mode="SP"] .fc_ship_type {
		display: none;
	}

	#fixed_cart[data-mode="SP"] .fc_pay_type {
		font-size: 15px;
	}

	#fixed_cart[data-mode="SP"] .fc_btn:not(.fc_wishlist) {
		width: 50%;
		margin-top: 0;
		position: inherit;
	}

	#fixed_cart[data-mode="SP"] input.fc_cart_btn {
		height: 42px;
		line-height: 1;
	}

	#fixed_cart[data-mode="SP"] input.fc_wishlistbtn {
		border: 0;
		background: transparent;
		height: 100%;
		width: 100%;
		line-height: 1;
		padding: 0;
	}

	#fixed_cart[data-mode="SP"] .cart_kit.cart_kit_sub {
		border-top: 1px solid #6f6f6f;
	}

	#fixed_cart[data-mode="SP"] .fc_wishlist::after {
		font-size: 22px !important;
		right: 0;
		top: 0;
		z-index: -1;
	}

	#fixed_cart[data-mode="SP"] .fc_price_value {
		width: unset;
		font-size: 15px;
	}


	#fixed_cart[data-mode="SP"] .fc_cartpop::after {
		display: none !important;
	}

	#fixed_cart[data-mode="SP"] .fc_cartpop {
		top: -300px;
		bottom: 0;
		right: 0;
		left: 0;
		margin: auto;
		position: fixed;
		height: 160px;
		width: 160px;
		font-size: 20px;
		padding: 22px 0;
		border-radius: 11px;
	}
