@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
/* ここまでLP共通 */

.page-store-item-set {
    padding: 5vw 0!important;
}
.page-store__inner{
    width: 90%!important;
}

/* ここまで元データ変更部分 */


.page-store-item__head {
    margin-bottom: 10px;
  }

.page-store-item__body {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .page-store-item__time {
    display: inline-block;
    font-weight: bold;
    margin-top: 10px;
  }

.page-store-item__img {
    width: 200px;
    height: 200px;
    overflow: hidden;
  }
  
  .page-store-item__img img {
    width: 200px;
    height: 200px;
    object-fit: cover; 
    display: block;
  }


@media screen and (max-width: 767px)  {
    .page-store-item__body {
        flex-direction: column;
      }
  
      .page-store-item__img {
        margin: 0 auto;
      }
}