/* ----------------------------
   おすすめアイテム（recommend）
---------------------------- */
.recommend-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.recommend-grid {
  display: flex;
  justify-content: center;
}


section.recommend-grid{
　margin-bottom: 30px !important;
}



.recommend-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px; /* 横3倍・縦2倍の余白 */
  list-style: none;
  padding: 0;
  margin: 0;
}

.recommend-list li {
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.recommend-list li:hover {
  transform: translateY(-3px);
}

.recommend-list .itemWrap img {
  max-width: 205px; /* 商品一覧と同じ比率 */
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}

.recommend-list .item-info {
  text-align: center;
  margin-top: 15px; /* 画像と商品名の間に余白追加 */
}

.recommend-list .itemName {
  font-size: 0.95em;
  margin: 5px 0;
}

.recommend-list .itemPrice {
  font-weight: bold;
  font-size: 0.9em;
  margin-bottom: 10px; /* 価格と商品名の間に余白追加 */
  color: #333; /* 赤から通常色に変更 */
}

/* スマホ：2列表示、幅固定しない */
@media (max-width: 768px) {
  .recommend-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
/* ----------------------------
   ランキング（ranking）
---------------------------- */
.ranking-wrapper {
  max-width: 1200px;
  margin: -40px auto 0;
  position: relative;
  padding: 0 40px;
  overflow: hidden; /* スマホ時の横スクロールバー非表示 */
}

.ranking-container {
  overflow: hidden;
}

.ranking-track {
  display: flex;
  transition: transform 0.3s ease;
  gap: 24px;
}

.ranking-column {
  flex: 0 0 calc((100% - 48px) / 3); /* 3列表示用、gap考慮 */
  min-width: 280px;
}

.ranking-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
  letter-spacing: 2px;
}

.ranking-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ranking-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.ranking-list li img {
  width: 80px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.ranking-list li .item-info {
  flex: 1;
}

.ranking-list .itemName {
  font-size: 14px;
  font-weight: 600;
  margin: 4px 0 2px;
}

.ranking-list .itemPrice {
  font-size: 14px;
  color: #555;
}

.ranking-more {
  display: inline-block;
  font-size: 13px;
  margin-top: 8px;
  color: #333;
  text-decoration: underline;
}

/* ----------------------------
   ナビボタン（＜＞）
---------------------------- */
/* PCでは非表示 */
.ranking-prev,
.ranking-next {
  display: none;
}

/* スマホのみ表示 */
@media screen and (max-width: 768px) {
  .ranking-prev,
  .ranking-next {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 28px;
    font-weight: bold;
  }

  .ranking-prev { left: 12px; }
  .ranking-next { right: 12px; }
}

/* ----------------------------
   スマホ対応レイアウト
---------------------------- */
@media screen and (max-width: 768px) {
  .ranking-column {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  }

  .ranking-title {
    font-size: 24px;
  }

　.ranking-wrapper {
  margin: -30px auto 0;
  }

}





.category-search {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 16px 0px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho,
               "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.category-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 8px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px; /* 最初24,次15px */
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-grid li {
  text-align: center;
}

.category-grid a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 12px;
}

.category-grid a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.icon-wrapper {
  margin-bottom: 8px;
}

.category-grid span {
  display: block;
  font-size: 1.1rem; /* → だいたい17&#12316;18px相当 */
  font-weight: 500;  /* 少し強調、不要なら外してOK */
  margin-top: 6px;   /* アイコンとの距離を確保 */
  text-align: center;
}


.news-container {
  max-width: 500px;
  margin: 0 auto;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  margin-bottom: 1em;
}

.news-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.news-date {
  width: 100px; /* 固定幅で左揃え */
  flex-shrink: 0;
  text-align: left;
  font-size: 0.9em;
  color: #666;
}

.news-text {
  flex: 1; /* 残りのスペースを使って表示 */
  font-size: 1em;
  color: #333;
}







javascript:void(0).tbl_calendar {
  border: none !important
  border-collapse: collapse !important;javascript:void(0)
  border-spacing: 0 !important;
}
.tbl_calendar th, .tbl_calendar td {
  padding: 4px !important;
  text-align: center !important;
  border-bottom: 1px solid #ccc !important;
}

.mainCalendar {
  display: flex;
  justify-content: space-between;
}

.mainCalendar table.tbl_calendar {
    max-width: calc(50% - 30px);
}
.mainCalendar table.tbl_calendar caption{
  font-weight: bold;
    margin: 0px auto 15px;
    font-size: 18px;
}
.top-information-title {
  text-align: center !important;
  font-size: 25px;
  margin-bottom :5px;
  border-bottom: solid 5px black;
}
.top-information {
  text-align: center !important;
  font-size: 16px;
  line-height: 22px;
}
.delivery_title {
 text-align: center !important;
  font-size: 24px;
  line-height: 40px;
  margin-bottom :5px;
}
.delivery_title_border {
 background: linear-gradient(transparent 70%, yellow 50%);
}
.delivery_news {
  margin-top :15px;
 text-align: center !important;
  font-size:14px;
  line-height: 26px;
}

@media (max-width: 991px) {
  .mainCalendar {
    display: block;
  }
  .mainCalendar table.tbl_calendar {
      max-width: 100%;
  }
}
.conceptC .button {
    border: 1px solid #f2f2f2;
    background-color: #f2f2f2;
    color: #1b1b1b;
    border-radius: 0px;
}
.conceptC .button:after{
    height: 6px;
    border-top: 1px solid #1b1b1b!important;
    border-right: 1px solid #1b1b1b!important;
}

.review_detail { height:350px; margin: 0; overflow-y:scroll; border: 1px solid #dfdfdf; }

.top-information-title {
  text-align: center !important;
  font-size: 25px;
  margin-bottom :5px
}
.top-information {
  text-align: center !important;
  font-size: 16px;
  line-height: 30px;
}

@media (max-width: 767px) {
.cateList--typeC figure {
    max-width: 200px !important;
}
.spSwiper .slick-prev, .spSwiper .slick-next {
    border-top: 1px solid #1b1b1b;
    border-right: 1px solid #1b1b1b;
    height: 20px!important;
    width: 20px!important;
}
  
.top-information-title {
  text-align: center !important;
  font-size: 20px;
  margin-bottom :5px;
}
.top-information {
  text-align: center !important;
  font-size: 14px;
  line-height: 30px;
}