/* CSS Document */
/**ボタン系**/
.cart_button,
.search_button {
    text-align: center;
    background-color: #ff3e9f;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
    font-size: 15px;
    border-radius: 8px;
    display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'M PLUS Rounded 1c';
	transform: rotate(0.05deg);
	border: 2px solid #ffffff;
	font-weight: bold;
	position: relative;
	height: 46px;
}
.cart_button::before,
.search_button::before {
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background-image: url("../img/cart.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: 4px;
}
.cart_button:hover,
.search_button:hover {
	opacity: 0.7;
}
.cart_button span,
.search_button span{
	flex: 1;
}

.cart_button.arrival {
	font-size: 13px;
	background-color: #91CC50;
}

.cart_button.empty {
	pointer-events: none;
    background-color: #ccc;
}

.search_button {
    background-color: #0090ff;
    font-size: 12px;
}
.search_button::before {
	background-image: url("../img/search.svg");
}
/*お姫様ページ用*/
#princess_contents .cart_button.arrival {
	font-size: 13px;
	background-color: #91CC50;
}
#princess_contents .cart_button.empty {
	pointer-events: none;
    background-color: #ccc;
}
/************/

@media screen and (max-width: 639px) {
.cart_button,
  .search_button {
	background-size: 26px auto;
}
}