@charset "utf-8";
/* =========================================================
   event.css
   文章はHTML側そのまま／レイアウトと見た目だけ整える
========================================================= */

/* ===== Safety base (scoped) ===== */
.ev,
.ev *{
  box-sizing: border-box;
}

/* Page wrapper */
.ev{
  padding: 12px 10px 24px;
  clear: both;
}

/* Title */
.ev__title{
  margin: 0 0 14px;
  padding: 10px 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: #ff6fbd;
  border-radius: 14px;
  text-shadow: 1px 1px 1px rgba(0,0,0,.35);
}

/* Grid */
.evGrid{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Card */
.evCard{
  width: min(100%, 440px);
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e6e6e6;
}

/* Note area */
.evNote{
  margin-top: 16px;
  padding: 12px;
  border-radius: 16px;
  background: #f8fcff;
  border: 1px solid #aeeaff;
}

/* Badge */
.evBadge{
  margin: 0;
  padding: 10px 10px;
  text-align: center;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}



/* Text */
.evText{
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.evText--note{
  font-size: 18px;
  font-weight: 800;
  color: #f63da6;
}

.evText--warn{
  font-size: 18px;
  font-weight: 900;
  color: #e1252e;
}

/* Inline emphasis */
.evEm{
  font-weight: 900;
}

/* Responsive */
@media (max-width: 768px){
  .ev{ padding: 10px 8px 18px; }
  .ev__title{ font-size: 16px; }
  .evCard{ width: 100%; }
  .evBadge{ font-size: 16px; }
}
.discount-banner img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
}