@media screen and (min-width: 752px) and (max-width: 980px) { 
  .shopinfo.hidden-phone {display:none;}
}

.container-yuna {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.item-yuna {
  width: 32%;
}
.item-yuna .comment {
	padding:20px;
}

@media screen and (max-width: 768px) {
  .container-yuna {
    flex-direction: column;
}

.item-yuna {
    width: 100%;
  text-align:center;
}
  
.item-yuna img {
    width: 92%;
}
  
.item-yuna .comment {
	padding:20px;
  text-align:left;
}
}


.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* スマホ：2列 */
  gap: 12px; /* マス目の余白（お好みで調整） */
  width: 92%;          /* ← スマホで左右に余白 */
  margin: 0 auto;
  max-width: 900px;
  margin-top:40px;
}
.insta-item {
  position: relative;
}

.insta-item img {
 
  aspect-ratio: 1 / 1; /* 正方形を維持 */
  object-fit: cover;
  display: block;
}

.insta-logo {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 8%;          /* 画像の8%で表示 */
  max-width: none;    /* ← これが重要！ */
  height: auto;       /* 縦横比を維持 */
  display: block;     /* ← これも重要！ */
  opacity: 0.6;
}

/* PC（幅768px以上）では3列 */
@media (min-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top:40px;
    width: 100%;
  }
}

