@charset "UTF-8";
/*---------------------------------
              main
---------------------------------*/
@media screen and (max-width: 980px) {
/*---------------------------------
            main sale
---------------------------------*/
.sale-container,
.pickup-container {
  overflow: hidden;
}
.sale01,
.sale02,
.sale03 {
  position: relative;
  margin: 20px 0 0px 0;
}
.m-item {
  margin: 25% 0 20px 0;
  box-shadow: 10px 10px 1px rgb(0, 0, 0, 0.4);
}
.m-text {
  position: absolute;
  top: -30px;
  margin: 0 auto;
  right: 0;
  left: 0;
}
.animation2 {
  animation: tikatika 1s step-end infinite;
}

@keyframes tikatika {
 0% { opacity: 1; }
 50% { opacity: 0; }
 100% { opacity: 1; }
}
.category2 {
  margin-top: 40px;
}
.other-btn {
  width: 800px;
  font-size: 30px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #333333;
  margin: 40px 0 40px 0;
  padding: 25px 0;
  border-radius: 15px;
}

/*---------------------------------
            sub item
---------------------------------*/
.item-container {
  display: flex;
  justify-content: center;
  margin: 40px 0 40px 0;
}
.item {
  margin: 0 4px;
  height: 590px;
}
.item a {
  text-decoration: none;
}
.item-text-container {
  font-size: 28px;
  margin: 5px 0 20px 0;
  text-align: center;
}
.item-sale {
  color: #FFFFFF;
  background-color: #ff65b9;
  border: 1px solid #ff65b9;
  border-radius: 5px;
  padding: 0px 4px;
}
.item-text {
  font-weight: bold;
  color: #ffffff;
  background-color: #ff4747;
  border: 1px solid #ff4747;
  border-radius: 5px;
  padding: 0px 4px;
  margin: 0 0 0 13px;
}
.item-img {
  position: relative;
  width: 460px;
  height: 506px;
  overflow: hidden;
  margin: 0 5px;
}
.item-img a {
  display    : block;
  position   : absolute;
  overflow   : hidden;
  width      : 460px;
  height     : 460px;
}
.item-img img {
  width: 460px;
  height: auto;
  overflow: hidden;
}
.item-img p {
  display    : block;
  position   : absolute;
  font-size: 32px;
  margin: 0 auto;
  right: 0;
  left: 0;
  top: 470px;
}
.item-transparent {
  opacity: 0;
}
.item-name {
  color: #000000;
  position: absolute;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto;
  right: 0;
  left: 0;
  top: 470px;
}
.item-price {
  font-size: 33px;
  font-weight: bold;
  color: #fa4998;
  margin-top: 5px;
  text-shadow: 1px 2px 1px #ccc;
}
.blinking{
	-webkit-animation:blink 0.7s ease-in-out infinite alternate;
    -moz-animation:blink 0.7s ease-in-out infinite alternate;
    animation:blink 0.7s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

/*---------------------------------
          slider item
---------------------------------*/
.slider-item {
  position: relative;
  width: 460px;
  height: 460px;
  padding-left: 0px;
  margin: 0 5px;
  overflow: hidden;
}
.images {
  position: absolute;
  overflow: hidden;
  height: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  animation: image-switch-animation 10s infinite;
}
@keyframes image-switch-animation {
  0%{ opacity: 0; height: auto;}
  0.1%{ opacity: 1;}
	15%{ opacity: 1;}
  20%{ opacity: 1;}
	21%{ opacity: 0;}
	100%{ opacity: 0;}
}
.images:nth-of-type(1) {
  animation-delay: 0s;
}
.images:nth-of-type(2) {
  animation-delay: 2s;
}
.images:nth-of-type(3) {
  animation-delay: 4s;
}
.images:nth-of-type(4) {
  animation-delay: 6s;
}
.images:nth-of-type(5) {
  animation-delay: 8s;
}

.slide-name-container {
  position: relative;
}
.slide-name {
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  font-size: 32px;
  font-weight: bold;
  opacity: 0;
  animation: name-switch-animation 10s infinite;
}
@keyframes name-switch-animation {
  0%{ opacity: 0;}
  0.1%{ opacity: 1;}
	15%{ opacity: 1;}
  20%{ opacity: 1;}
	21%{ opacity: 0;}
	100%{ opacity: 0;}
}
.slide-name:nth-of-type(1) {
  animation-delay: 0s;
}
.slide-name:nth-of-type(2) {
  animation-delay: 2s;
}
.slide-name:nth-of-type(3) {
  animation-delay: 4s;
}
.slide-name:nth-of-type(4) {
  animation-delay: 6s;
}
.slide-name:nth-of-type(5) {
  animation-delay: 8s;
}














/*---------------------------------
            animation
---------------------------------*/
@-webkit-keyframes tada {
  0% {
      -webkit-transform: scaleX(1);
      transform: scaleX(1)
  }
  10%,20% {
      -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
      transform: scale3d(.9,.9,.9) rotate(-3deg)
  }
  30%,50%,70%,90% {
      -webkit-transform: scale3d(1.1,1.1,1.1) rotate(3deg);
      transform: scale3d(1.1,1.1,1.1) rotate(3deg)
  }
  40%,60%,80% {
      -webkit-transform: scale3d(1.1,1.1,1.1) rotate(-3deg);
      transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
  }
  to {
      -webkit-transform: scaleX(1);
      transform: scaleX(1)
  }
}
@keyframes tada {
  0% {
      -webkit-transform: scaleX(1);
      transform: scaleX(1)
  }
  10%,20% {
      -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
      transform: scale3d(.9,.9,.9) rotate(-3deg)
  }
  30%,50%,70%,90% {
      -webkit-transform: scale3d(1.1,1.1,1.1) rotate(3deg);
      transform: scale3d(1.1,1.1,1.1) rotate(3deg)
  }
  40%,60%,80% {
      -webkit-transform: scale3d(1.1,1.1,1.1) rotate(-3deg);
      transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
  }
  to {
      -webkit-transform: scaleX(1);
      transform: scaleX(1)
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}



}