@charset "utf-8";

/*----------------------------------------------------------------
日本酒
----------------------------------------------------------------*/

.sake-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

.sake-img-block {
    aspect-ratio: 400 / 300;
    background: #F0EEEC;
}

.sake-img-block img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.sake-price-box {
    padding: 0 0 30px;
    border-bottom: 1px solid #CC6F82;
}

.sake-text-box {
    padding: 30px 0 0;
    border-top: 1px solid #CC6F82;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:576px) {
  
/*----------------------------------------------------------------
日本酒
----------------------------------------------------------------*/

.sake-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

  
/* min-width: 576px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:768px) {
  
/*----------------------------------------------------------------
日本酒
----------------------------------------------------------------*/

.sake-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
}


}

/* min-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
  
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:1024px) {
  
/*----------------------------------------------------------------
日本酒
----------------------------------------------------------------*/

.sake-grid {
    gap: 60px 24px;
}


}

/* min-width: 1024px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */