@charset "UTF-8";
/*スワイパー*/
/* line 6, ../sass/design.scss */
.swiper-container {
  width: auto;
}

/* line 10, ../sass/design.scss */
.swiper-container img {
  width: 100vw;
}

/* line 14, ../sass/design.scss */
.swiper-pagination {
  margin: 0 auto;
}

/* line 18, ../sass/design.scss */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #9acd32;
  opacity: 0.5;
}

/* line 25, ../sass/design.scss */
.swiper-pagination-bullet-active {
  width: 20px;
  height: 20px;
  background: #ffd700;
  opacity: 1;
}

/* line 32, ../sass/design.scss */
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoomUp 8s linear 0s 1 normal both;
}

/* line 38, ../sass/design.scss */
.slide-img img {
  display: block;
}

/*カテゴリーリスト*/
/* line 43, ../sass/design.scss */
#category ul li {
  color: #808080;
  border-bottom: 1px dashed #808080;
}

/* line 48, ../sass/design.scss */
#category ul li:first-child {
  background-color: #000;
}

/*価格別リスト*/
/* line 53, ../sass/design.scss */
#price ul li {
  color: #808080;
  border-bottom: 1px dashed #808080;
}

/* line 58, ../sass/design.scss */
#price ul li:first-child {
  background-color: #000;
}

/*リスト飾り共通*/
/* line 63, ../sass/design.scss */
#category ul, #price ul {
  list-style: none;
  text-align: center;
}

/* line 68, ../sass/design.scss */
#category ul li, #price ul li {
  line-height: 60px;
}

/* line 72, ../sass/design.scss */
#category ul li:last-child, #price ul li:last-child {
  border: none;
  margin: 0;
}

/* line 76, ../sass/design.scss */
#category ul li:before, #price ul li:before {
  font-family: FontAwesome;
  content: "\f054";
  font-size: 1.2em;
  margin-right: 5px;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  background-position: bottom;
}

/* line 85, ../sass/design.scss */
#category ul li:first-child, #price ul li:first-child {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

/* line 91, ../sass/design.scss */
#category ul li:first-child:before,
#price ul li:first-child:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
}

/* line 97, ../sass/design.scss */
#category a:hover, #price a:hover {
  transition: 0.3s;
  color: #a9a9a9;
}

/*スワイパーズームアニメ*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
