/**
 * Theme Name: grande
 * Template: blocksy
 */

/* logo font */
.logo-font {
  --theme-font-family: "Berkshire Swash", serif !important;
  font-weight: 400;
  font-style: normal;
}
.accordions-head {
    background: #eeeeee !important;
}
.accordions-head-title {
    color: #000 !important;
}

/* market */
.content-area {
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-container {
    width:1140px;
    padding:10px;
}
.shop-container {
  display: grid;
  /* デスクトップ：2カラム（左1:右1の割合など） */
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* カラム間の間隔 */
  margin-top:20px;
}
.thumb .thumb-area {
    text-align: center;
}

/* レスポンシブ対応：画面幅が768px以下の場合 */
@media (max-width: 768px) {
  .shop-container {
    /* 1カラムに切り替え */
    grid-template-columns: 1fr;
  }
}
.badges {
    margin-top:20px;
}
.bmm-badge {
    margin-top:10px;
}
.shop-container img {
  border-radius: 16px;
}
/* end market */