@charset "UTF-8";

/* --------------------------------------------------
 Menu shop
-------------------------------------------------- */
#menu-shop .list {
  display: flex;
  flex-wrap: wrap;
}

#menu-shop .list li:first-child {
  margin-top: 0;
}

#menu-shop .list li {
  display: flex;
  align-items: center;
  align-content: center;
  width: 100%;
  margin-top: 6rem;
}

#menu-shop .list li .txt {
  width: 40%;
  text-align: left;
}

#menu-shop .list li .img {
  width: 60%;
  box-sizing: border-box;
}

#menu-shop .list li .img figure img {
  transition: all ease-in-out 1000ms;
  transform: scale(1.2);
}

#menu-shop .list li .img.do-animate figure img {
  transform: scale(1);
}

#menu-shop .list li .txt .btn-common-blc .btn {
  margin-left: 0;
}

#menu-shop .list li .txt .contents {
  margin-top: 1rem;
}

#menu-shop .list li:nth-child(odd) .txt {
  order: 1;
}

#menu-shop .list li:nth-child(odd) .img {
  order: 2;
}

#menu-shop .list li:nth-child(odd) .txt+.img {
  padding-left: 4rem;
}

#menu-shop .list li:nth-child(even) .txt {
  order: 2;
}

#menu-shop .list li:nth-child(even) .img {
  order: 1;
}

#menu-shop .list li:nth-child(even) .txt+.img {
  padding-right: 4rem;
}

@media screen and (max-width:767px) {
  #menu-shop .list li {
    margin-top: 4rem;
  }
}

@media screen and (max-width:640px) {

  #menu-shop .list li {
    flex-wrap: wrap;
  }

  #menu-shop .list li:nth-child(odd) .txt, #menu-shop .list li:nth-child(even) .txt {
    order: 2;
    width: 100%;
  }

  #menu-shop .list li:nth-child(odd) .img, #menu-shop .list li:nth-child(even) .img {
    order: 1;
    width: 100%;
  }

  #menu-shop .list li:nth-child(odd) .txt+.img {
    padding-left: 0;
  }

  #menu-shop .list li:nth-child(even) .txt+.img {
    padding-right: 0;
  }

  #menu-shop .list li:nth-child(odd) .txt+.img, #menu-shop .list li:nth-child(even) .txt+.img {
    padding-bottom: 2rem;
    max-width: 250px;
    margin: auto;
  }

  #menu-shop .list li .txt .btn-common-blc {
    margin-top: 2rem;
  }

  #menu-shop .list li .txt .btn-common-blc .btn {
    margin: auto;
  }
}

@media screen and (max-width:480px) {
  #menu-shop .list li {
    margin-top: 20vw;
  }

  #menu-shop .list li:nth-child(odd) .txt+.img, #menu-shop .list li:nth-child(even) .txt+.img {
    padding-bottom: 2rem;
  }
}