.bl_shoplistMenuList {
  margin-top: 20px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bl_shoplistMenuItem {
  border: #c69d06 0.8px solid;
  padding: 20px;
}

.bl_shoplistMenuThumb {
  width: 100%;
  height: 167px;
  overflow: hidden;
}

.bl_shoplistMenuThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bl_shoplistMenuText {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px 20px;
}

.bl_shoplistMenuText .bl_ttlPrice {
  display: flex;
  justify-content: space-between;
  gap: 4px 20px;
  flex-direction: column;
}

.bl_shoplistMenuText .bl_ttlPrice .menu-price {
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.bl_shoplistMenuText a {
  color: #000;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: none;
  border: none;
}

.bl_shoplistMenuText a::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='4' viewBox='0 0 15 4' fill='none'%3E%3Cpath d='M0 3.5H14L10 1' stroke='%23C69D06' stroke-width='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.bl_shoplistMenuText a:hover {
  background-color: unset;
  color: #c69d06;
  transform: scale(1);
  box-shadow: unset;
}

@media screen and (min-width: 768px) {
  .bl_shoplistMenuList {
    margin-top: 0px;
    margin-inline: auto;
    gap: 0px;
    margin-top: 40px;
  }

  .bl_shoplistMenuItem {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-block: 24px 16px;
    border: none;
    border-bottom: 0.8px solid #dddcdc;
    /* padding: 20px 0; */
  }

  .bl_shoplistMenuItem:first-child {
    border-top: 0.8px solid #dddcdc;
  }

  .bl_shoplistMenuThumb {
    flex: 0 0 30%;
    max-width: 30%;
    height: 112px;
    overflow: hidden;
  }

  .bl_shoplistMenuText {
    margin-top: 0px;
    flex: 0 0 60%;
    max-width: 60%;
  }

  .bl_shoplistMenuText .bl_ttlPrice {
    flex-direction: row;
  }

  .bl_shoplistMenuText a {
    text-align: end;
    background: none;
    margin-inline: auto 54px;
  }

  .bl_shoplistMenuText a::after {
    scale: 1.6;
  }
}