/* ===== top.css: トップページ専用スタイル ===== */

/* ===== HERO ===== */
.hero {
  position: relative; width: 100%;
  height: 100svh; min-height: 600px;
  overflow: hidden; background: #111;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.polaroid-stage {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.polaroid {
  position: absolute; background: #f5f0e8;
  padding: 8px 8px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.7);
  opacity: 0; transition: opacity 1.2s ease;
  will-change: opacity, transform;
}
.polaroid.visible { opacity: 1; }
.polaroid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.polaroid-label {
  position: absolute; bottom: 5px; left: 0; right: 0;
  text-align: center;
  font-family: 'Hiragino Mincho ProN', serif;
  font-size: 10px; color: #555;
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 32px 36px;
}
.hero-content::before {
  content: ''; position: absolute; inset: -40px -60px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 45%, transparent 75%);
  pointer-events: none; z-index: -1;
}
.hero-catch {
  font-size: 14px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85); margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}
.hero-logo { margin-bottom: 8px; }
.hero-logo img {
  height: 80px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.8));
}
.hero-title {
  font-size: 36px; font-weight: bold;
  letter-spacing: 0.1em; color: #fff;
  text-shadow: 0 0 30px rgba(200,30,30,0.6), 0 2px 16px rgba(0,0,0,1);
  margin-bottom: 6px;
}
.hero-sub {
  font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.15em;
}

/* ===== いいね ===== */
.likes-section {
  position: relative; z-index: 10;
  padding: 16px 40px; text-align: center; margin-top: 28px;
}
.likes-section::before {
  content: ''; position: absolute; inset: -30px -60px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, transparent 80%);
  pointer-events: none; z-index: -1;
}
.likes-label {
  font-size: 12px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7); margin-bottom: 4px;
}
.likes-count {
  font-size: 52px; font-weight: bold; color: #e8c85a;
  text-shadow: 0 0 20px rgba(232,200,90,0.5);
  line-height: 1; margin-bottom: 8px;
}
.likes-unit { font-size: 18px; margin-left: 4px; }
.likes-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #980708, #c0392b);
  border: none; border-radius: 50px;
  padding: 12px 32px; min-height: 44px; color: #fff;
  font-size: 16px; letter-spacing: 0.15em;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(152,7,8,0.5);
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.likes-btn:active { transform: scale(0.96); }
.likes-btn .heart { font-size: 18px; }
.likes-btn.liked {
  background: linear-gradient(135deg, #555, #333);
  box-shadow: none;
}

/* スクロール促進 */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.scroll-hint {
  display: flex;
  position: absolute; bottom: 96px; left: 50%;
  transform: translateX(-50%); z-index: 5;
  flex-direction: column; align-items: center; gap: 4px;
  opacity: 0.55; animation: bounce 2s infinite;
  transition: opacity 0.4s;
  pointer-events: none;
}
.scroll-hint.hidden { opacity: 0; }
@media (min-width: 768px) {
  .scroll-hint { bottom: 24px; gap: 6px; }
}
.scroll-hint span { font-size: 10px; letter-spacing: 0.15em; color: #fff; }
.scroll-hint svg { width: 20px; height: 20px; fill: #fff; }

/* ===== NEWS ===== */
.news-section {
  background: #1a0a0a;
  border-top: 1px solid rgba(152,7,8,0.4);
  border-bottom: 1px solid rgba(152,7,8,0.4);
  padding: 14px 20px; display: flex; align-items: center; gap: 12px;
}
.news-badge {
  background: #980708; color: #fff; font-size: 11px;
  padding: 3px 10px; border-radius: 3px;
  white-space: nowrap; letter-spacing: 0.1em;
}
.news-text { font-size: 14px; color: #ffdddd; line-height: 1.5; }

/* ===== 本日のイベントスライダー ===== */
.event-slider-wrap { position: relative; overflow: hidden; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 44px; height: 44px;
  border: none; border-radius: 50%;
  background: rgba(10,0,0,0.65); color: #fff;
  font-size: 24px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.slider-arrow:active { background: rgba(184,32,32,0.8); }
.slider-prev { left: 4px; }
.slider-next { right: 4px; }
.event-slider-track { display: flex; gap: 12px; will-change: transform; }
.event-card {
  flex: 0 0 calc(46vw); max-width: 180px;
  text-decoration: none; display: block; cursor: pointer;
}
.event-card img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 8px; display: block;
}
.event-card-body { padding: 6px 4px 2px; }
.event-card-name {
  font-size: 12px; font-weight: bold; letter-spacing: 0.03em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: #fff;
}
.event-card-shop { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.event-none {
  color: rgba(255,255,255,0.4); font-size: 14px; padding: 16px 0;
}

/* ===== ブログリンク ===== */
.blog-link-section { padding: 0 20px 32px; }
.blog-link-btn {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  padding: 16px 20px; color: #fff; text-decoration: none;
  font-size: 14px; letter-spacing: 0.1em;
  background: rgba(255,255,255,0.03); transition: background 0.2s;
}
.blog-link-btn:active { background: rgba(255,255,255,0.08); }
.blog-link-btn span { color: rgba(255,255,255,0.4); font-size: 18px; }

/* ===== ABOUT ===== */
.about-section { padding: 0 20px 40px; }
.about-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 24px 20px;
}
.about-concept {
  font-size: 22px; font-weight: bold; text-align: center;
  letter-spacing: 0.1em; color: #e8c85a;
  margin-bottom: 16px; line-height: 1.5;
}
.about-text {
  font-size: 14px; line-height: 1.9;
  color: rgba(255,255,255,0.75); text-align: center;
}
.about-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-top: 20px;
}
.about-tag {
  border: 1px solid rgba(152,7,8,0.6); border-radius: 20px;
  padding: 5px 14px; font-size: 12px;
  color: rgba(255,255,255,0.7); letter-spacing: 0.1em;
}

/* ===== MAP ===== */
.map-section { padding: 0 20px 40px; }
.shop-tabs {
  display: flex; border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 20px;
}
.shop-tab {
  flex: 1; text-align: center; padding: 10px; font-size: 14px;
  color: rgba(255,255,255,0.4); cursor: pointer; letter-spacing: 0.1em;
  border-bottom: 2px solid transparent; transition: all 0.2s;
}
.shop-tab.active { color: #fff; border-bottom-color: #980708; }
.shop-info {
  font-size: 13px; color: rgba(255,255,255,0.7); line-height: 2;
}
.shop-info dt {
  color: rgba(255,255,255,0.4); font-size: 11px;
  letter-spacing: 0.15em; margin-top: 10px;
}

/* ===== メディア掲載 ===== */
.media-section { padding: 0 20px 40px; }
.media-youtube-scroll {
  display: flex; gap: 12px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px; margin-bottom: 24px;
}
.media-youtube-scroll::-webkit-scrollbar { display: none; }
.yt-card {
  flex: 0 0 220px; scroll-snap-align: start;
  border-radius: 10px; overflow: hidden; background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none; color: #fff; transition: opacity 0.15s;
}
.yt-card:active { opacity: 0.7; }
.yt-thumb {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #222; overflow: hidden;
}
.yt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
}
.yt-play svg { width: 40px; height: 40px; fill: rgba(255,255,255,0.9); filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8)); }
.yt-info { padding: 10px 12px 12px; }
.yt-channel { font-size: 11px; color: #980708; letter-spacing: 0.1em; margin-bottom: 4px; }
.yt-title {
  font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.media-list { display: flex; flex-direction: column; gap: 10px; }
.media-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 14px 16px;
  text-decoration: none; color: #fff; transition: background 0.15s;
}
.media-item:active { background: rgba(255,255,255,0.07); }
.media-badge {
  flex: 0 0 auto; font-size: 10px; letter-spacing: 0.1em;
  padding: 3px 8px; border-radius: 4px; font-weight: bold;
}
.badge-tv    { background: #1a3a6e; color: #7ab3ff; }
.badge-radio { background: #2d1a3a; color: #c87aff; }
.badge-web   { background: #1a3a2a; color: #7affc8; }
.media-item-body { flex: 1; min-width: 0; }
.media-name { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 3px; letter-spacing: 0.05em; }
.media-title { font-size: 13px; color: rgba(255,255,255,0.9); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.media-arrow { color: rgba(255,255,255,0.3); font-size: 16px; }

/* ===== SNS ===== */
.sns-section {
  display: flex; justify-content: center; gap: 20px;
  padding: 0 20px 32px;
}
.sns-btn {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
  padding: 10px 20px; color: rgba(255,255,255,0.7);
  font-size: 13px; text-decoration: none; letter-spacing: 0.1em;
  transition: all 0.2s; background: rgba(255,255,255,0.03);
}
.sns-btn:active { background: rgba(255,255,255,0.08); }
.sns-icon { font-size: 16px; }
