.menu-intro {
  text-align: center;
  margin: 60px auto 40px;
  max-width: 600px;
}

.menu-intro h1 {
  font-size: 28px;
  color: #2e7d32;
  margin-bottom: 10px;
}

.menu-intro p {
  font-size: 16px;
  color: #555;
}

.menu-list h2 {
  font-size: 22px;
  color: #2e7d32;
  margin: 60px 0 30px;
  text-align: center;
  position: relative;
}

.menu-list h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #a5d6a7;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* 横並びの行 */
.menu-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
  width: 100%;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.menu-row.reverse {
  flex-direction: row-reverse;
}

/* テキストと画像の幅調整 */
.menu-text,
.menu-image {
  flex: 1 1 300px;
  max-width: 400px;
}

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

.menu-text h3 {
  font-size: 20px;
  color: #388e3c;
  margin-bottom: 8px;
}

.menu-text p {
  font-size: 16px;
  color: #555;
  margin: 4px 0;
}

.menu-text .price {
  font-weight: bold;
  color: #c2185b;
  font-size: 17px;
}

/* 画像スタイル */
.menu-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* アニメーション */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* オプションリスト */
.option-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  text-align: center;
}

.option-list li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #555;
}

/* 回数券カード */
.menu-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.menu-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #388e3c;
}

.menu-card .price {
  font-weight: bold;
  color: #c2185b;
  font-size: 16px;
}

.ticket-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.ticket-card {
  background-color: transparent;
   border: none; /* ← これで枠線を完全に消す */
  box-shadow: none; /* ← 影も消す */
  padding: 20px;
  width: 300px;
  text-align: center;
}

.ticket-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #388e3c;
}

.ticket-card p {
  font-size: 15px;
  color: #555;
  margin: 6px 0;
}

.ticket-card .price {
  font-weight: bold;
  color: #c2185b;
  font-size: 16px;
}

/* ----------------------------------------
   📱 メニューセクションのスマホ対応（768px以下）
---------------------------------------- */
@media (max-width: 768px) {
  .menu-intro {
    margin: 40px 20px;
    max-width: 100%;
  }

  .menu-intro h1 {
    font-size: 24px;
  }

  .menu-intro p {
    font-size: 15px;
  }

  .menu-list h2 {
    font-size: 20px;
    margin: 40px 0 20px;
  }

  .menu-list h2::after {
    width: 40px;
  }

  .menu-row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
  }

  .menu-row.reverse {
    flex-direction: column;
  }

  .menu-text,
  .menu-image {
    max-width: 100%;
    flex: 1 1 auto;
  }

  .menu-text h3 {
    font-size: 18px;
  }

  .menu-text p {
    font-size: 15px;
  }

  .menu-text .price {
    font-size: 16px;
  }

  .menu-image img {
    max-width: 100%;
  }

  .option-list li {
    font-size: 14px;
  }

  .menu-card {
    padding: 15px;
    margin: 20px;
  }

  .menu-card h3 {
    font-size: 17px;
  }

  .menu-card .price {
    font-size: 15px;
  }

  .ticket-row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .ticket-card {
    width: 100%;
    padding: 15px;
  }

  .ticket-card h3 {
    font-size: 17px;
  }

  .ticket-card p {
    font-size: 14px;
  }

  .ticket-card .price {
    font-size: 15px;
  }
}
