/* 人気番組ブース（共通CSSの変数を利用） */

.spot-hero {
  position: relative;
  padding: 4rem 1.5rem 2.75rem;
  border-bottom: var(--kfb-border);
  box-shadow: 0 8px 0 var(--kfb-black);
  background: #fff;
  overflow: hidden;
}

.spot-hero-tiles {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 6px;
  padding: 10px;
  filter: saturate(1.05) contrast(1.02);
}

.spot-hero-tiles img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.65);
}

.spot-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.18) 45%,
    rgba(255, 248, 240, 0.42) 100%
  );
  pointer-events: none;
}

.spot-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 1.2rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: var(--kfb-border);
  box-shadow: var(--kfb-shadow);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .spot-hero-tiles {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 8px;
  }
}

.spot-hero-tag {
  display: inline-block;
  font-family: var(--font-pop);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 2px solid var(--kfb-black);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 2px 2px 0 var(--kfb-black);
  margin-bottom: 1.15rem;
}

.spot-hero-title {
  margin: 0 0 0.65rem;
}

.spot-hero-title-main {
  display: block;
}

.spot-hero-logo {
  display: block;
  max-width: min(280px, 70vw);
  height: auto;
  margin: 0 auto 0.5rem;
}

.spot-hero-title-text {
  display: block;
  font-family: var(--font-pop);
  font-weight: 800;
  font-size: clamp(1.55rem, 4.6vw, 2.1rem);
  color: var(--kfb-black);
  text-shadow: 3px 3px 0 #fff, 5px 5px 0 var(--kfb-black);
  line-height: 1.25;
}

.spot-hero-lead {
  margin: 0;
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  line-height: 1.7;
}

.spot-section {
  padding: 2.75rem 1.5rem;
  background: #fff;
}

/* グルメ・ステージ・シェア・ハイハイレースと同じパステル縦ストライプ */
.spot-section.spot-section--stripe {
  background-color: #e6f4ff;
  background-image: repeating-linear-gradient(90deg,
      #e6f4ff 0px,
      #e6f4ff 40px,
      #e8e0f2 40px,
      #e8e0f2 80px,
      #ffdde8 80px,
      #ffdde8 120px,
      #ffddc8 120px,
      #ffddc8 160px,
      #fff4c8 160px,
      #fff4c8 200px,
      #d8f0e8 200px,
      #d8f0e8 240px,
      #e6f4ff 240px,
      #e6f4ff 280px);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 280px 100%;
}

.spot-section--center {
  padding-top: 1.75rem;
  padding-bottom: 3.25rem;
  background: #fff;
}

.spot-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.spot-section-title {
  margin: 0 0 1.1rem;
  font-family: var(--font-pop);
  font-weight: 800;
  font-size: clamp(1.3rem, 3.2vw, 1.7rem);
  padding: 0.35rem 0.9rem;
  display: inline-block;
  background: #fff;
  border: 3px solid var(--kfb-black);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--kfb-black);
}

.spot-list-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spot-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1rem;
  background: #fff;
  border: var(--kfb-border);
  box-shadow: var(--kfb-shadow);
  border-radius: 14px;
  padding: 1.25rem 1.15rem;
}

.spot-card-body {
  flex: 1 1 auto;
  min-width: 0;
}

.spot-card-photo {
  flex: 0 0 clamp(140px, 32vw, 260px);
  margin: 0;
  align-self: stretch;
  display: flex;
}

.spot-card-photo-frame {
  width: 100%;
  flex: 1;
  min-height: 140px;
  border: 3px dashed rgba(26, 26, 26, 0.35);
  border-radius: 10px;
  background: #f5f5f5;
  box-sizing: border-box;
  overflow: hidden;
}

.spot-card-photo-frame--with-caption {
  display: flex;
  flex-direction: column;
}

.spot-card-photo-frame--with-caption img {
  flex: 1 1 auto;
  min-height: 0;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.65);
}

.spot-card-photo-caption {
  margin: 0;
  padding: 0.5rem 0.6rem 0.55rem;
  font-family: var(--font-pop);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--kfb-black);
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  text-align: center;
}

.spot-card-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-card-head {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
}

.spot-card-no {
  margin: 0;
  font-family: var(--font-pop);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem 0.6rem;
  background: #fff;
  border: 2px solid var(--kfb-black);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--kfb-black);
}

.spot-card-title {
  margin: 0;
  font-family: var(--font-pop);
  font-weight: 800;
  font-size: 1.2rem;
}

.spot-card-label {
  margin: 0.2rem 0 0.6rem;
  font-weight: 800;
}

.spot-card-text {
  margin: 0 0 0.75rem;
  line-height: 1.8;
}

.spot-list {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.85;
}

.spot-note {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  opacity: 0.84;
}

.spot-note--global {
  margin-top: 1.25rem;
}

.spot-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  text-decoration: none;
  font-weight: 800;
  font-family: var(--font-pop);
  color: #fff;
  background: #2f6585;
  border: 3px solid var(--kfb-black);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--kfb-black);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.spot-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--kfb-black);
  filter: brightness(1.04);
}

@media (max-width: 640px) {
  .spot-card {
    flex-direction: column;
  }

  .spot-card-photo {
    flex: 0 0 auto;
    width: 100%;
    order: 2;
  }

  .spot-card-body {
    order: 1;
  }

  .spot-card-photo-frame {
    min-height: 180px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .spot-hero {
    padding: 3.5rem 1rem 2.25rem;
  }

  .spot-section {
    padding: 2.25rem 1rem;
  }
}

