/*固定カートボタンここから*/
.fixed-cart {
	position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}
.fixed-cart a {
	background-color: #fff;
    display: flex;
    color: #555;
    text-decoration: none;
    align-items: center;
    justify-content: space-between;
    padding: 2%;
    box-sizing: border-box;
    font-weight: bold;
	box-shadow: 0 0 3px 2px rgba(0,0,0,0.4);
}
.fixed-cart a img {
	width: 100%;
}
.fixed-cart a .fix-img {
	width: 15%;
}
.fixed-cart a .fix-price {
	width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.fixed-cart a .fix-price .fix-low {
	display: flex;
    align-items: center;
    width: 100%;
	justify-content: flex-start;
}
.fixed-cart a .fix-price span.fix-name {
	width: 100%;
    margin-bottom: 2%;
}
.fixed-cart a .fix-price span.fix-first {
	font-size: 0.7rem;
    border: 1px solid #555;
    line-height: 1.2;
    display: inline-block;
    margin-right: 10px;
	box-sizing: border-box;
	padding: 2px 5px;
}
.fixed-cart a .fix-price span.fix-num {
	    font-size: 1.3rem;
    display: inline-block;
}
.fixed-cart a .btn {
	    width: 30%;
    color: #fff;
    background-color: #F15055;
    border-radius: 6px;
    padding: 3% 2%;
    text-align: center;
}
/*固定カートボタンここまで*/