/* ===== event-detail.css: イベント詳細ページ専用スタイル ===== */

/* フライヤー */
.ed-flyer-wrap {
  width: 100%;
  background: #000;
  min-height: 200px;
}
.ed-flyer-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* イベント情報エリア */
.ed-info {
  padding: 20px 18px 0;
}

/* メタバッジ */
.ed-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.ed-badge {
  font-size: 10px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.badge-hottest {
  background: #b82020;
  color: #fff;
  animation: badge-blink 1s infinite;
  box-shadow: 0 0 8px rgba(184,32,32,0.7);
}
.badge-popular {
  background: #c8a020;
  color: #fff;
  animation: badge-blink 1s infinite;
  box-shadow: 0 0 8px rgba(200,160,32,0.7);
}
.badge-sale {
  background: #1a8a50;
  color: #fff;
  animation: badge-blink 1s infinite;
  box-shadow: 0 0 8px rgba(26,138,80,0.7);
}
.badge-pickup {
  background: #c82070;
  color: #fff;
  animation: badge-blink 1s infinite;
  box-shadow: 0 0 8px rgba(200,32,112,0.7);
}
@keyframes badge-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.6; }
}
.badge-shop-kinshi {
  background: rgba(184,32,32,0.15);
  border: 1px solid rgba(184,32,32,0.4);
  color: #b82020;
}
.badge-shop-shinjuku {
  background: rgba(232,200,90,0.15);
  border: 1px solid rgba(232,200,90,0.4);
  color: #e8c85a;
}
.badge-part {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}
.ed-date-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* タイトル */
.ed-title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* 時間 */
.ed-time {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 説明文 */
.ed-desc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* 来店予告ボタン */
.ed-bbs-section {
  padding: 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ed-bbs-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.ed-bbs-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #8a1818, #b82020);
  border-radius: 10px;
  padding: 16px 20px;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 20px rgba(184,32,32,0.35);
  transition: opacity 0.15s;
}
.ed-bbs-cta:active { opacity: 0.8; }
.ed-bbs-cta span:first-child { font-size: 20px; }
.ed-bbs-cta-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-weight: normal;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 2px;
}

/* 来店予告リスト */
.ed-visit-section {
  padding: 0 18px 24px;
}
.ed-visit-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 14px;
}
.ed-visit-title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.ed-visit-count {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.ed-visit-count strong {
  color: #e8c85a;
  font-size: 16px;
}

/* 投稿カード */
.ed-visit-card {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ed-visit-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.ed-visit-body { flex: 1; }
.ed-visit-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.ed-visit-name {
  font-size: 13px;
  font-weight: bold;
}
.ed-visit-msg {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 6px;
}
.ed-visit-time {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}

/* スタッフ返信 */
.ed-staff-reply {
  margin-top: 8px;
  margin-left: 0;
  padding: 10px 12px;
  background: rgba(184,32,32,0.08);
  border-left: 2px solid #b82020;
  border-radius: 0 6px 6px 0;
}
.ed-staff-reply-name {
  font-size: 10px;
  color: #b82020;
  margin-bottom: 4px;
  font-weight: bold;
}
.ed-staff-reply-msg {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* 一覧に戻るボタン */
.ed-back-wrap {
  padding: 20px 18px 32px;
}
.ed-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.ed-back-btn:active { background: rgba(255,255,255,0.04); }
