.flyer-wrapper {
    font-family: "Noto Serif JP", serif;
    color: #222;
}

/* セクション */
.section {
    max-width: 1080px;
    margin: 80px auto;
    padding: 0 20px;
}

/*********************** メニュー *****************************/
section.menu-catalog {
    display: flex;
    flex-direction: column;
    /* h2 と grid を縦に並べる */
    align-items: center;
    /* h2もGridも中央揃え */
    max-width: 1280px;
    /* 全体最大幅 */
    margin: 50px auto;
    /* 上下余白 + 中央 */
    padding: 0 15px;
}

/* メニュータイトル */
.menu-catalog h2 {
    font-family: "Noto Serif JP", serif;
    font-size: 2.4rem;
    color: #b3864a;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: 600;
}
/* スマホ */
@media (max-width: 768px) {
    .menu-catalog h2 {
        font-size: 28px;
    }
}

/* カードグリッド */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, max-content));
    gap: 30px;
    width: 100%;
    justify-items: center;
    /* カードを中央揃え */
    justify-content: center;
}

/* カード */
.menu-card {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.menu-card img {
    margin: 0 auto 20px;
    /* 上下余白 + 左右中央 */
    width: 100%;
    max-height: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.menu-card h3 {
    margin: 15px 0 10px;
    color: #b3864a;
}

.menu-card .desc {
    margin: 10px;
    font-weight: 500;
    color: #8c6740;
    line-height: 1.6;
}

.menu-card .size {
    font-weight: 600;
    color: #4a4a4a;
    margin-top: 5px;
}

.menu-card .price {
    font-weight: 700;
    color: #b3864a;
    margin-top: 10px;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* レスポンシブ調整 */
@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        /* タブレットで最大2列 */
    }
}

@media (max-width: 600px) {
    .catalog-grid {
        grid-template-columns: 1fr;
        /* スマホは1列 */
    }
}

/****** 本店の商品 ******/
.menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.text-bold{
    font-weight: 700;
}

.text-red{
    color: var(--accent);
}

.mb0 {
    margin-bottom: 0px;
}

.more-link.arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 18px;
    background: #c80000;
    color: #fff;

    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;

    margin-top: 16px;
    margin-bottom: 22px;

    transition: 0.25s;
}

.flyer {
  max-width: 900px;
  margin: 30px auto;
}

/* スライダー */
.flyer-slider .slide {
    min-width: 100%;
}

/* ボタン */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 50px;
  height: 50px;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);

  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 50%;
  cursor: pointer;

  font-size: 22px;
  font-weight: 300;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
  z-index: 10;
}

/* 左右位置 */
.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* ホバー */
.prev:hover,
.next:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

/* クリック感 */
.prev:active,
.next:active {
  transform: translateY(-50%) scale(0.95);
}

.prev svg,
.next svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.flyer-slider {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
}

.flyer-slider .slides {
  display: flex;
  transition: transform 0.4s ease;
}

.flyer-slider img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.flyer-img {
    cursor: pointer;
}