/* ヒーロー部分 */
/* Hero */
.hero {
    position: relative;
    height: 472px;
}
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-title {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
    opacity: 0;
    animation: fadeTitle 1.2s ease-out 0s forwards;
}
@keyframes fadeTitle {
    0% {
        opacity: 0;
        transform: translateY(18px); /* 少し下から浮かび上がる */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 472px;
  background-color: rgba(0,0,0,0.4); /* 半透明黒 */
  opacity: 0;
  animation: fadeIn 0.75s forwards;
  animation-delay: 0.1s; /* 少し遅らせて演出 */
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.flyer {
  max-width: 900px;
  margin: 30px auto;
}

.flyer-empty {
  text-align: center;
  padding: 150px;
  color: #777;
  font-size: 18px;
}

/* モーダル */
.flyer-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.flyer-modal img {
    max-width: 90%;
    max-height: 90%;
}

.flyer-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.menu {
  max-width: 1600px;
  margin: 50px auto;
  padding: 20px;
}

.menu h2 {
  margin-bottom: 20px;
  font-size: 26px;
  text-align: center;
}

.sale-info {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
}

.sale-info h2 {
  margin-bottom: 20px;
  font-size: 26px;
  text-align: center;
}

/* グリッド化 */
.sale-list {
  display: grid;
  gap: 15px;
}

.flyer-item {
  margin-bottom: 25px;
  text-align: center;
}

.flyer-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.flyer-btn {
  display: inline-block;
  padding: 12px 20px;
  margin: 10px auto;
  background: #e60023;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* カード */
.sale-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sale-item:hover {
  transform: translateY(-3px);
  transition: 0.2s;
}

/* 上段 */
.sale-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.item-name {
  font-weight: bold;
  font-size: 16px;
}

/* バッジ */
.badge {
  background: #ff6b6b;
  color: white;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 20px;
}

/* 価格 */
.price {
  font-size: 18px;
  margin-bottom: 8px;
}

.original {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.sale {
  color: #e60023;
  font-weight: bold;
  font-size: 24px;
}

/* 期間 */
.period {
  font-size: 13px;
  color: #666;
}

.pdf-link {
  display: block;
  margin: 10px 0;
  text-align: center;
  color: #007bff;
}

/* スマホ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
}