.l-page {
  background: url(/images/shop/bg_shop.png) no-repeat center / cover;
}
.shop__section{
  padding: 80px 0 160px;
  background: url(/images/section__pattern.png)repeat;
}
  .main__contents{
    max-width: 1084px;
    margin: 0 auto;
  }
    .pege__ttl {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 60px;
    }
      .pege__ttl span {
        font-size: 64px;
        font-weight: 400;
        color: #E6217D;
        font-family: "DM Serif Display";
      }
    
    .shop__tab-list {
      display: flex;
      justify-content: center;
      max-width: 900px;
      margin: 0 auto;
      background: #FFF;
      box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.16);
      border-radius: 30px;
      overflow: hidden;
      margin-bottom: 40px;
      position: relative;
    }
    .shop__tab-back{
      height: 100%;
      position: absolute;
      background: #C6006F;
      border-radius: 30px;
      top: 0;
      transition: left 0.3s ease, width 0.3s ease, top 0.3s ease;
    }
      .shop__tab-item {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 48px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        color: #000000;
        position: relative;
        cursor: pointer;
      }
      .shop__tab-item.is-active {
        color: #FFF;
      }
    .shop__title {
      font-size: 24px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 60px;
    }
    .shop__wrap{
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: opacity .8s ease;
    }
    .shop__wrap.is-active{
      max-height: 9999px;
      opacity: 1;
      pointer-events: auto;
    }
    .shop__list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(338px, auto));
      justify-content: center;
      gap: 60px 20px;
      margin-bottom: 60px;
    }
    .shop__numbers-wrap {
      display: grid;
      grid-template-columns: repeat(3, max-content);
      justify-content: center;
      gap: 30px;
  }
  .shop__numbers-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(auto, 30px));
    grid-template-rows: 30px;
    gap: 10px;
}
.shop__numbers-el a {
  color: #707070;
  font-size: 16px;
  font-weight: 500;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.shop__numbers-el.is-active a {
  color: #fff;
  background: #C6006F;
  border-radius: 50%;
}
.shop__numbers-arrow--right {
  rotate: 180deg;
}
      .shop__item {
        display: flex;
        justify-content: space-between;
        width: 348px;
        padding-top: 10px;
        position: relative;
      }
        .shop__category {
          width: fit-content;
          height: fit-content;
          padding: 1px 8px 2px;
          font-size: 12px;
          font-weight: 400;
          background: #FFF;
          border: 1px solid #707070;
          border-radius: 4px;
          position: absolute;
          top: 0;
          left: 0;
        }
        .shop__name--en {
          font-size: 32px;
          margin-top: 20px;
          writing-mode: vertical-rl;
          font-family: "DM Serif Display";
        }
        .shop__box {
          max-width: 300px;
        }
          .shop__img {
            width: 100%;
            height: 200px;
            margin-bottom: 10px;
          }
            .shop__img img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              object-position: top;
            }
          .shop__name--ja {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 5px;
          }
          .shop__text {
            font-size: 16px;
            font-weight: 400;
            line-height: 2;
            display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 5; /* 行数を制限 */
  overflow: hidden; 
          }
          

    @media (max-width: 768px) {
      .shop__section{
        padding: 66px 0 80px;
      }
      .shop__section .section__title{
        margin: 0 auto 30px;
      }
      .shop__tab-list {
        display: block;
        margin-bottom: 30px;
      }
        .shop__tab-item {
          font-size: clamp(0.875rem, 0.756rem + 0.51vw, 1rem);
          font-weight: 600;
        }
      .shop__title {
        font-size: 20px;
        margin-bottom: 30px;
      }
      .shop__list {
        display: block;
      }
        .shop__item {
          width: 100%;
          gap: 10px;
        }
        .shop__item:not(:last-child) {
          margin-bottom: 40px;
        }
          .shop__box {
            max-width: unset;
            flex: 1;
          }
            .shop__img {
              width: 100%;
              height: clamp(12.063rem, -2.333rem + 61.42vw, 27.188rem);/*193~435*/
            }
            .shop__name--ja {
              font-size: 18px;
              font-weight: bold;
            }
            .shop__text {
              font-size: 16px;
              font-weight: 400;
              line-height: 2;
            }
    }