body {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  margin: 0;
  color: #222;
  background-color: #faf9f7;
}

/* バナー */
.sushiday-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.sushiday-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.banner-text h1 {
  font-size: 3rem;
  letter-spacing: 0.1em;
}

.banner-text p {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

/* 説明文 */
.sushiday-description {
  max-width: 900px;
  margin: 4rem auto;
  text-align: center;
  line-height: 2;
}

.sushiday-description h2 {
  font-size: 2rem;
  border-bottom: 2px solid #cfa35b;
  display: inline-block;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}

/* 商品（大） */
.sushiday-featured {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
  flex-wrap: wrap; /* ← 追加：画面が狭いときに折り返す */
}


.sushiday-featured.visible {
  opacity: 1;
  transform: translateY(0);
}

.featured-image img {
  width: 100%;
  max-width: 500px; /* 画像サイズを明示 */
  height: auto;       /* 高さ自動 */
  border-radius: 10px;
  display: block;     /* ブロックにして画像が消えないように */
}

.featured-text {
  max-width: 500px;
}

.featured-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #444;
}

.buy-btn {
  background-color: #cfa35b;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.buy-btn:hover {
  background-color: #b08d4b;
}

/* 商品（小） */
.sushiday-items {
  text-align: center;
  padding: 3rem 1rem;
}

.sushiday-items h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #cfa35b;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PC表示は横3列 */
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* レスポンシブ：スマホは1列 */
@media (max-width: 768px) {
  .item-grid {
    grid-template-columns: 1fr; /* スマホでは1列 */
  }
}

.item-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
  text-align: center;
}

.item-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.item-card img {
  width: 100%;
  border-radius: 12px; /* 角丸 */
  object-fit: cover;
}

.item-name {
  font-weight: bold; /* 太字 */
  margin-top: 0.8rem;
  font-size: 1.5rem;
}

/* フッター */
.sushiday-footer {
  background-color: #cfa35b;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.item-price {
  font-size: 1.2rem; /* 商品名より少し小さく */
  color: #555;
  margin-top: 0.1rem;
}

.item-logos {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.item-logos img {
  width: 60px; /* ロゴサイズ */
  height: 30px;
  object-fit: contain;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .item-grid {
    grid-template-columns: 1fr; /* スマホは縦1列 */
  }
}

/* レスポンシブ */
@media (max-width: 768px) {
  .sushiday-featured {
    flex-direction: column;
  }

  .banner-text h1 {
    font-size: 2rem;
  }

  .featured-text {
    text-align: center;
  }
}
