/* CSS Document */
.searchArea {
  padding-top: 170px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
.searchArea {
	padding-top: 110px;
  margin-bottom: 30px;
}
}

.searchAreaInner {
  background-color: #FF3B8E;
  padding: 30px 0px;
}
@media screen and (max-width: 767px) {
.searchAreaInner .titleCenter{
	font-size: 3.0rem;
}
}

.searchAreaInner .searchItem {
  display: flex;
  width: 100%;
  padding: 20px 35px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.searchAreaInner .searchItem .ttl {
  width: 30%;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
.searchAreaInner .searchItem .ttl {
  font-size: 2.2rem;
}
}

.searchAreaInner .searchItem .ttl span {
  font-size: 1.6rem;
}
.searchAreaInner .searchItem .detail {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .searchAreaInner .searchItem {
    display: block;
    padding: 15px 20px;
  }
  .searchAreaInner .searchItem .ttl, .searchAreaInner .searchItem .detail {
    width: 100%;
  }
  .searchAreaInner .searchItem .ttl {
    margin-bottom: 5px;
  }
}


.searchAreaInner .txt {
  border: none;
  padding: 12px;
  border-radius: 0px 15px 15px;
}
.searchAreaInner .keyword .txt {
  width: 100%;
}
.categoryBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -15px;
  margin-top: -15px;
}
.categoryBox > .item {
  width: 20%;
  padding: 15px 0 0 15px;
}
@media screen and (max-width: 1240px) {
  .categoryBox > .item {
    width: 25%;
  }
}
@media screen and (max-width: 1050px) {
  .categoryBox > .item {
    width: 33%;
  }
}
@media screen and (max-width: 767px) {
  .categoryBox > .item {
    width: 50%;
  }
}

.categoryBox > .item input[type="checkbox"], .categoryBox > .item input[type="radio"] {
  display: none;
}
.categoryBox > .item input[type="checkbox"] + label, .categoryBox > .item input[type="radio"] + label {
  display: flex;
  width: 100%;
  align-items: center;
  font-weight: bold;
  padding: 10px 10px;
  line-height: 1;
  border-radius: 0px 12px 12px;
  background-color: #fff;
  color: #FF3B8E !important;
  border: 2px solid #FF3B8E;
}
.categoryBox > .item input[type="checkbox"] + label:hover, .categoryBox > .item input[type="radio"] + label:hover {
  background-color: #FA80B8;
  color: #fff !important;
  border: 2px solid #fff;
}
.categoryBox > .item input[type="checkbox"]:checked + label, .categoryBox > .item input[type="radio"]:checked + label {
  background-color: #FFAA2C;
  color: #fff !important;
}
.categoryBox > .item input[type="checkbox"] + label::before, .categoryBox > .item input[type="radio"] + label::before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.categoryBox > .item input[type="checkbox"] + label.licca::before {
  background-image: url("../images/icon_licca_ov.svg");
}
.categoryBox > .item input[type="checkbox"] + label.licca:hover::before, .categoryBox > .item input[type="checkbox"]:checked + label.licca::before {
  background-image: url("../images/icon_licca.svg");
}
.categoryBox > .item input[type="checkbox"] + label.friend::before {
  background-image: url("../images/icon_friend_ov.svg");
}
.categoryBox > .item input[type="checkbox"] + label.friend:hover::before, .categoryBox > .item input[type="checkbox"]:checked + label.friend::before {
  background-image: url("../images/icon_friend.svg");
}
.categoryBox > .item input[type="checkbox"] + label.dress::before {
  background-image: url("../images/icon_dress_ov.svg");
}
.categoryBox > .item input[type="checkbox"] + label.dress:hover::before, .categoryBox > .item input[type="checkbox"]:checked + label.dress::before {
  background-image: url("../images/icon_dress.svg");
}
.categoryBox > .item input[type="checkbox"] + label.house::before {
  background-image: url("../images/icon_house_ov.svg");
}
.categoryBox > .item input[type="checkbox"] + label.house:hover::before, .categoryBox > .item input[type="checkbox"]:checked + label.house::before {
  background-image: url("../images/icon_house.svg");
}
.categoryBox > .item input[type="checkbox"] + label.shop::before {
  background-image: url("../images/icon_shop_ov.svg");
}
.categoryBox > .item input[type="checkbox"] + label.shop:hover::before, .categoryBox > .item input[type="checkbox"]:checked + label.shop::before {
  background-image: url("../images/icon_shop.svg");
}
.categoryBox > .item input[type="checkbox"] + label.vehicle::before {
  background-image: url("../images/icon_vehicle_ov.svg");
}
.categoryBox > .item input[type="checkbox"] + label.vehicle:hover::before, .categoryBox > .item input[type="checkbox"]:checked + label.vehicle::before {
  background-image: url("../images/icon_vehicle.svg");
}
.categoryBox > .item input[type="checkbox"] + label.goods::before {
  background-image: url("../images/icon_goods_ov.svg");
}
.categoryBox > .item input[type="checkbox"] + label.goods:hover::before, .categoryBox > .item input[type="checkbox"]:checked + label.goods::before {
  background-image: url("../images/icon_goods.svg");
}
.categoryBox > .item input[type="checkbox"] + label.other::before {
  background-image: url("../images/icon_other_ov.svg");
}
.categoryBox > .item input[type="checkbox"] + label.other:hover::before, .categoryBox > .item input[type="checkbox"]:checked + label.other::before {
  background-image: url("../images/icon_other.svg");
}
/**カテゴリーから探す（スマホ専用）**/
.categorySelectBox {
/*	display: none;*/
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
.categorySelectBox {
  display: block;
}
}

.categorySelectBox::before {
  pointer-events: none;
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #FF3B8E;
  border-right: solid 2px #FF3B8E;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}
.categorySelectBox select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none #ffffff;
  vertical-align: middle;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
	
  font-size: 1.6rem;
  width: 100%;
  font-weight: bold;
  padding: 10px 10px 10px 45px;
  line-height: 1;
  border-radius: 0px 12px 12px;
  background-color: #fff;
  color: #FF3B8E !important;
  border: 2px solid #FF3B8E;
	
height: 50px;
	
	
}
.categorySelectBox::after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/icon_tag.svg");
  position: absolute;
  top: 10px;
  left: 10px;
}
.categorySelectBox.licca::after {
  background-image: url("../images/icon_licca_ov.svg");
}
.categorySelectBox.friend::after {
  background-image: url("../images/icon_friend_ov.svg");
}
.categorySelectBox.dress::after {
  background-image: url("../images/icon_dress_ov.svg");
}
.categorySelectBox.house::after {
  background-image: url("../images/icon_house_ov.svg");
}
.categorySelectBox.shop::after {
  background-image: url("../images/icon_shop_ov.svg");
}
.categorySelectBox.vehicle::after {
  background-image: url("../images/icon_vehicle_ov.svg");
}
.categorySelectBox.goods::after {
  background-image: url("../images/icon_goods_ov.svg");
}
.categorySelectBox.other::after {
  background-image: url("../images/icon_other_ov.svg");
}
/** //カテゴリーから探す（スマホ専用）**/




.searchAreaInner .price {
  display: flex;
  align-items: center;
  color: #fff;
}
.searchAreaInner .price .txt {
  width: 35%;
}
.searchAreaInner .price span {
  margin: 0 5px;
  font-weight: bold;
}
.searchAreaInner .releaseDate {
  display: flex;
}
.searchAreaInner .select-wrap {
  position: relative;
  width: 20%;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
.searchAreaInner .select-wrap {
  width: 100%;
  margin-right: 0;
}
}


.searchAreaInner .select-wrap:before {
  pointer-events: none;
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #FF3B8E;
  border-right: solid 2px #FF3B8E;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}
.searchAreaInner .select-wrap select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none #ffffff;
  vertical-align: middle;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  padding: 12px;
  border-radius: 0px 15px 15px;
  font-weight: bold;
  font-size: 1.6rem;
  width: 100%;
}
.searchAreaInner .submitButtonArea {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.searchAreaInner .submitButtonArea .search {
  border-radius: 0 15px 15px;
  border: 2px solid #FF3B8E;
  padding: 12px;
  background-color: #fff;
  color: #FF3B8E !important;
  margin: 0 5px;
  font-size: 24px;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.searchAreaInner .submitButtonArea .search:hover {
  background-color: #FA80B8;
  color: #fff !important;
  border: 2px solid #fff;
}
.searchAreaInner .submitButtonArea .search::before {
  content: '';
  display: block;
  width: 23px;
  height: 23px;
  margin-right: 5px;
  background-image: url("../images/icon_search.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.searchAreaInner .submitButtonArea .search:hover::before {
  background-image: url("../images/icon_search_white.svg");
}
.searchAreaInner .submitButtonArea .detail {
  border-radius: 0 15px 15px;
  border: 2px solid #FF3B8E;
  padding: 8px;
  background-color: #FA80B8;
  color: #fff !important;
  font-weight: bold;
  margin: 0 10px;
  font-size: 21px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.searchAreaInner .submitButtonArea .detail:hover {
  color: #fff !important;
  border: 2px solid #fff;
}
.searchAreaInner .submitButtonArea .detail::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 7px;
  background-image: url("../images/icon_arrow_down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.searchAreaInner .submitButtonArea .detail.open::before {
  background-image: url("../images/icon_arrow_top.svg");
}

.resultArea .selectSort {
  position: relative;
  padding: 5px 0;
}
.resultArea .selectSort::before {
  pointer-events: none;
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #FF3B8E;
  border-right: solid 2px #FF3B8E;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}
.resultArea .selectSort select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none #ffffff;
  vertical-align: middle;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ccc;
  padding: 6px 25px 6px 6px;
  border-radius: 0px 8px 8px;
  font-size: 1.6rem;
  width: 100%;
}
.viewChangeNav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.viewChangeNav > div {
  height: 50px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  width: 150px;
  transition: 0.3s;
  border: solid 2px #FF3B8E;
  color: #FF3B8E;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.viewChangeNav > div.viewList {
  border-radius: 0 15px 15px 0;
}
.viewChangeNav > div.viewThumb {
  border-radius: 0 0 0 15px;
}
.viewChangeNav > div::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.viewChangeNav > div.viewList::before {
  background-image: url("../images/icon_list-solid_ov.svg");
}
.viewChangeNav > div.viewThumb::before {
  background-image: url("../images/icon_list-thumb_ov.svg");
}
.viewChangeNav > div:hover {
  background-color: #FCE5F0;
}
.viewChangeNav > div.current {
  background-color: #FF3B8E;
  color: #fff;
  transition: 0.1s;
}
.viewChangeNav > div.current.viewList::before {
  background-image: url("../images/icon_list-solid.svg");
}
.viewChangeNav > div.current.viewThumb::before {
  background-image: url("../images/icon_list-thumb.svg");
}
.viewMode {
  margin-bottom: 30px;
}
.card_list {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -15px;
}
@media screen and (max-width: 767px) {
.card_list {
  margin: -20px -10px;
}
}

.card_list .head {
  display: none;
}
.card_list > .margin-child {
  width: 20%;
  padding: 20px 15px;
}
@media screen and (max-width: 1050px) {
.card_list > .margin-child {
  width: 25%;
}
}
@media screen and (max-width: 767px) {
.card_list > .margin-child {
  width: 50%;
  padding: 20px 10px;
}
}

.card_list > .margin-child > .card {
  height: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
	position: relative;
}
.card_list > .margin-child > .card .badge {
position: absolute;
	top: -5px;
	left: -8px;
	z-index: 100;
	font-weight: bold;
	padding: 2px 7px;
	background-color: #FF3B8E;
	border: 2px solid #fff;
	border-radius: 0 10px 10px;
	color: #fff;
}
.card_list > .margin-child > .card .badge::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	background-image: url("../images/icon_other.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 3px;
}

.card_list > .margin-child > .card img {
  width: 100%;
  height: auto;
  border-radius: 0 13px 13px;
}
.card_list > .margin-child > .card .img_box {
  padding: 3px;
  background-color: #fff;
  border: 4px solid #FCE5F0;
  overflow: hidden;
  border-radius: 0 16px 16px;
  margin-bottom: 5px;
  display: block;
  transition: 0.3s;
  aspect-ratio: 1 / 1;
}
.card_list > .margin-child > .card > a:hover .img_box {
  border-color: #FF3B8E;
  transition: 0.1s;
}

.card_list > .margin-child > .card > a:hover ~ .badge {
	animation: poyo 0.5s;
}
@keyframes poyo {
	from, to { transform: none; }
	10% { transform: scale(1.3); }
	40% { transform: scale(.9); }
	60% { transform: scale(1.05); }
	80% { transform: scale(.98); }
}


.card_list > .margin-child > .card > a {
  text-decoration: none;
}
.card_list > .margin-child > .card .productsname {
  font-weight: bold;
  margin-bottom: 0.5em;
  text-decoration: none;
}
.card_list > .margin-child > .card > .bottomBox {
  margin-top: auto;
  font-size: 1.4rem;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  background-image: url("../images/icon_licca_ov.svg");
}
.card_list > .margin-child > .card.licca > .bottomBox {
  background-image: url("../images/icon_licca_ov.svg");
}
.card_list > .margin-child > .card.friend > .bottomBox {
  background-image: url("../images/icon_friend_ov.svg");
}
.card_list > .margin-child > .card.dress > .bottomBox {
  background-image: url("../images/icon_dress_ov.svg");
}
.card_list > .margin-child > .card.house > .bottomBox {
  background-image: url("../images/icon_house_ov.svg");
}
.card_list > .margin-child > .card.shop > .bottomBox {
  background-image: url("../images/icon_shop_ov.svg");
}
.card_list > .margin-child > .card.vehicle > .bottomBox {
  background-image: url("../images/icon_vehicle_ov.svg");
}
.card_list > .margin-child > .card.goods > .bottomBox {
  background-image: url("../images/icon_goods_ov.svg");
  background-size: 42px auto;
  background-position: right bottom;
}
.card_list > .margin-child > .card.other > .bottomBox {
  background-image: url("../images/icon_other_ov.svg");
  background-size: 36px auto;
}
.card_list > .margin-child > .card > .bottomBox .price {
  font-weight: bold;
}
.card_list > .margin-child > .card > .category, .card_list > .margin-child > .card > .battery, .card_list > .margin-child > .card > .ecotoy, .card_list > .margin-child > .card > .onlineshop {
  display: none;
}
/**
* Listモード
**/
.listMode .card_list {
  display: block;
  margin: 0px;
}
.listMode .card_list .head {
  display: block;
  width: 100%;
  background-color: #FF3B8E;
  color: #fff;
}
@media screen and (max-width: 767px) {
.listMode .card_list .head {
  display: none;
}
}
.listMode .card_list > .margin-child {
  width: 100%;
  padding: 0px;
}
.listMode .card_list > .margin-child.item {
  padding: 15px 0;
}
.listMode .card_list > .margin-child.item:nth-child(odd) {
  background-color: #FDF2F7;
}
.listMode .card_list > .margin-child > .card {
  flex-direction: row;
  margin: 0;
  padding: 0;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
.listMode .card_list > .margin-child > .card {
	flex-wrap: wrap;
}
}
.listMode .card_list > .margin-child > .card .badge {
	top: -10px;
	left: -3px;
	font-size: 1.4rem;
}
.listMode .card_list > .margin-child > .card > .link {
  flex: 1;
  display: flex;
  align-items: center;
}
.listMode .card_list > .margin-child > .card .productsname {
  font-weight: normal;
  padding: 12px 15px;
}
.listMode .card_list > .margin-child > .card > .bottomBox {
  margin-top: inherit;
  display: flex;
}
.listMode .card_list > .margin-child > .card > .category, .listMode .card_list > .margin-child > .card > .bottomBox > .price, .listMode .card_list > .margin-child > .card > .bottomBox > .release, .listMode .card_list > .margin-child > .card > .battery, .listMode .card_list > .margin-child > .card > .ecotoy, .listMode .card_list > .margin-child > .card > .onlineshop {
  display: flex;
  align-items: center;
  font-weight: normal;
  padding: 0px 0px 0px 12px;
}
.listMode .card_list > .margin-child.head > .card > .link, .listMode .card_list > .margin-child.head > .card > .category, .listMode .card_list > .margin-child.head > .card > .bottomBox > .price, .listMode .card_list > .margin-child.head > .card > .bottomBox > .release, .listMode .card_list > .margin-child.head > .card > .battery, .listMode .card_list > .margin-child.head > .card > .ecotoy, .listMode .card_list > .margin-child.head > .card > .onlineshop {
  border-right: 1px solid #fff;
  padding: 12px 0 12px 12px;
}
.listMode .card_list > .margin-child.head > .card > .ecotoy {
	padding: 0;
	text-align: center;
}

.listMode .card_list > .margin-child.item > .card > .link {
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
.listMode .card_list > .margin-child.item > .card > .link {
	width: 70%;
	flex: none;
	order: 1;
}
}
.listMode .card_list > .margin-child.item > .card .img_box {
  width: 80px;
  padding: 2px;
  border-width: 3px;
}
.listMode .card_list > .margin-child.item > .card .productsname {
  flex: 1;
  padding: 0 10px;
  font-weight: bold;
}
.listMode .card_list > .margin-child > .card > .category {
  width: 130px;
}
.listMode .card_list > .margin-child.item > .card > .category {
  font-weight: bold;
  color: #FF3B8E;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
.listMode .card_list > .margin-child.item > .card > .category {
	order: 3;
	width: 40%;
}
}
.listMode .card_list > .margin-child.item > .card > .category::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.listMode .card_list > .margin-child.item > .card.licca > .category::before {
  background-image: url("../images/icon_licca_ov.svg");
  width: 19px;
}
.listMode .card_list > .margin-child.item > .card.friend > .category::before {
  background-image: url("../images/icon_friend_ov.svg");
  width: 20px;
}
.listMode .card_list > .margin-child.item > .card.dress > .category::before {
  background-image: url("../images/icon_dress_ov.svg");
}
.listMode .card_list > .margin-child.item > .card.house > .category::before {
  background-image: url("../images/icon_house_ov.svg");
}
.listMode .card_list > .margin-child.item > .card.shop > .category::before {
  background-image: url("../images/icon_shop_ov.svg");
}
.listMode .card_list > .margin-child.item > .card.vehicle > .category::before {
  background-image: url("../images/icon_vehicle_ov.svg");
}
.listMode .card_list > .margin-child.item > .card.goods > .category::before {
  background-image: url("../images/icon_goods_ov.svg");
}
.listMode .card_list > .margin-child.item > .card.other > .category::before {
  background-image: url("../images/icon_other_ov.svg");
}
.listMode .card_list > .margin-child > .card > .bottomBox {
  width:  20%;
}
@media screen and (max-width: 767px) {
.listMode .card_list > .margin-child > .card > .bottomBox {
	order: 4;
  width:  60%;
	justify-content: flex-end;
}
}

.listMode .card_list > .margin-child > .card > .bottomBox > .price,
.listMode .card_list > .margin-child > .card > .bottomBox > .release {
  width:  50%;
	font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
.listMode .card_list > .margin-child > .card > .bottomBox > .price,
.listMode .card_list > .margin-child > .card > .bottomBox > .release {
	text-align: right;
	justify-content: flex-end;
	width: auto;
	padding: 0;
}

	.listMode .card_list > .margin-child > .card > .bottomBox > .release::before {
	content: '/';
		padding: 0 0.4em;
	}
}

.listMode .card_list > .margin-child > .card > .battery {
  width: 15%;
}
.listMode .card_list > .margin-child > .card > .ecotoy {
  width: 8.33%;
  justify-content: center;
	padding: 0;
}

@media screen and (max-width: 767px) {
.listMode .card_list > .margin-child > .card > .battery,
.listMode .card_list > .margin-child > .card > .ecotoy {
	display: none;
}
}



.listMode .card_list > .margin-child > .card > .onlineshop {
  width: 11.67%;
}
.listMode .card_list > .margin-child.item > .card > .onlineshop {
  padding-left: 5px;
  padding-right: 5px;
}
@media screen and (max-width: 767px) {
.listMode .card_list > .margin-child.item > .card > .onlineshop {
	order: 2;
	width: 30%;
}
	
}

.listMode .card_list > .margin-child.item > .card > .onlineshop > ._button {
  width: 100%;
  background-color: #FF3B8E;
  color: #fff !important;
  font-weight: bold;
  padding: 15px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0 15px 15px;
  border: 2px solid #fff;
  transition: 0.2s;
}
@media screen and (max-width: 1050px) {
.listMode .card_list > .margin-child.item > .card > .onlineshop > ._button {
	font-size: 1.4rem;
	}
}

.listMode .card_list > .margin-child.item > .card > .onlineshop > ._button.empty {
	pointer-events: none;
	background-color: #ccc;
}

.listMode .card_list > .margin-child.item > .card > .onlineshop > ._button:hover {
  background-color: #fff;
  color: #FF3B8E !important;
  border: 2px solid #FF3B8E;
}
.listMode .card_list > .margin-child.item > .card > .onlineshop > ._button::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background-image: url("../images/icon_cart.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.listMode .card_list > .margin-child.item > .card > .onlineshop > ._button:hover::before {
  background-image: url("../images/icon_cart_ov.svg");
}
.listMode .card_list > .margin-child > .card.licca > .bottomBox, .listMode .card_list > .margin-child > .card.friend > .bottomBox, .listMode .card_list > .margin-child > .card.dress > .bottomBox, .listMode .card_list > .margin-child > .card.house > .bottomBox, .listMode .card_list > .margin-child > .card.shop > .bottomBox, .listMode .card_list > .margin-child > .card.vehicle > .bottomBox, .listMode .card_list > .margin-child > .card.goods > .bottomBox, .listMode .card_list > .margin-child > .card.other > .bottomBox {
  background-image: none;
}
.listMode .card_list > .margin-child > .card > .ecotoy > img {
  width: 50%;
  height: auto;
}

.page-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.page-nav > div {
  text-align: center;
  font-size: 2.4rem;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: bold;
  background-color: #fff;
  color: #FF3B8E;
  margin: 0;
  cursor: pointer;
  border-top: 2px solid #FF3B8E;
  border-bottom: 2px solid #FF3B8E;
  border-left: 1px solid #FF3B8E;
  border-right: 1px solid #FF3B8E;
}
@media screen and (max-width: 767px) {
.page-nav > div {
  font-size: 1.6rem;
}
}
.page-nav > div:hover {
  background-color: #FCE5F0;
}
.page-nav > .prev {
  border-left: 2px solid #FF3B8E;
  border-bottom-left-radius: 15px;
}
.page-nav > .prev::before, .page-nav > .next::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.page-nav > .next {
  border-right: 2px solid #FF3B8E;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
}
.page-nav > .prev::before {
  background-image: url("../images/icon_arrow_left.svg");
}
.page-nav > .next::before {
  background-image: url("../images/icon_arrow_right.svg");
}
.page-nav > .prev.invalid, .page-nav > .next.invalid {
  color: #FCE5F0;
  pointer-events: none;
}
.page-nav > .prev.invalid::before, .page-nav > .next.invalid::before {
  opacity: 0.3;
}
.page-nav > div.current {
  background-color: #FF3B8E;
  color: #fff;
}


/** アコーディオンメニュー用 **/
.js-accordion--target{
    transition: height 0.2s;
  }
.js-accordion-enter-active{
    animation-duration: 0.2s;
	animation-delay: 0.1s;
    animation-fill-mode: both;
    animation-name: js-accordion--anime__opend;
  }
.js-accordion-leave-active{
    animation-duration: 0.2s;
    animation-fill-mode: both;
    animation-name: js-accordion--anime__closed;
  }

@keyframes js-accordion--anime__opend {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
   }
}
@keyframes js-accordion--anime__closed {
  0% {
   opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

