@charset "UTF-8";



/* --------------------------------------------------
  item_wrap
-------------------------------------------------- */
.store_text {
  text-align: justify;
  font-size: 16px;
  line-height: 2;
}
/*short pc + tablet style*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
}
/*tablet style*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
}
/*sp style*/
@media screen and (max-width: 767px) {
  .store_item_wrap {
    padding-left: calc(60 / 375 * 100vw);
  }
  .store_text {
    font-size: calc(16 / 375 * 100vw);
  }
}



/* --------------------------------------------------
  768px〜 hover pc + tablet style
  touchデバイスでhoverを使うと2回クリックしないと
  いけないくなるので、.notouchを先頭につけてください
-------------------------------------------------- */
@media screen and (min-width: 768px) {
}


