/* シェア！コラボブース */

.share-hero {
  position: relative;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden;
  border-bottom: var(--kfb-border);
  box-shadow: 0 8px 0 var(--kfb-black);
}

.share-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg,
      #fed400 0,
      #fed400 40px,
      #01b4ed 40px,
      #01b4ed 80px);
}

@keyframes share-hero-announcers-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.share-hero-bg-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.share-hero-bg-photo-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  will-change: transform;
  animation: share-hero-announcers-marquee 36s linear infinite;
}

.share-hero-bg-photo-img {
  flex: 0 0 auto;
  height: 100%;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.18));
}

@media (prefers-reduced-motion: reduce) {
  .share-hero-bg-photo-track {
    animation: none;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .share-hero-bg-photo-img:last-child {
    display: none;
  }
}

.share-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 1.35rem 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  border: var(--kfb-border);
  box-shadow: var(--kfb-shadow);
  border-radius: 12px;
}

.share-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: #fff;
  box-shadow: 2px 2px 0 var(--kfb-black);
  margin: 0 0 0.85rem;
}

.share-hero-logo-wrap {
  margin: 0 0 1rem;
}

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

.share-hero-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-pop);
  font-weight: 800;
  line-height: 1.25;
  color: var(--kfb-black);
}

.share-hero-title-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.6rem;
}

.share-hero-share-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(240px, 72vw);
  max-height: clamp(2.1rem, 9vw, 3.35rem);
}

.share-hero-title-text {
  font-size: clamp(1.45rem, 4.2vw, 2rem);
  text-shadow:
    2px 2px 0 #fff,
    3px 3px 0 rgba(0, 206, 209, 0.35);
}

.share-hero-dates {
  margin: 0 0 0.75rem;
  font-family: var(--font-pop);
  font-weight: 800;
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  color: var(--kfb-magenta);
}

.share-hero-note {
  margin: 0;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  color: var(--kfb-black);
  opacity: 0.85;
  line-height: 1.6;
}

.share-section {
  padding: 3rem 0;
  background: #fff;
}

/* グルメ・ステージページと同じ交互背景 */
.share-section:nth-of-type(2n) {
  background: #fdf7f0;
}

/* TOP・グルメ・ステージと同じパステル縦ストライプ */
.share-section.share-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%;
}

.share-section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.share-section-title {
  font-family: var(--font-pop);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin: 0 0 1.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--kfb-black);
}

.share-card {
  background: #fff;
  border: var(--kfb-border);
  box-shadow: var(--kfb-shadow);
  border-radius: 12px;
  padding: 1.5rem 1.35rem;
}

.share-lead {
  margin: 0 0 1rem;
  font-size: clamp(0.95rem, 2.4vw, 1.08rem);
  line-height: 1.85;
  color: var(--kfb-black);
}

.share-lead:last-child {
  margin-bottom: 0;
}

.share-sponsor {
  margin-top: 1rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.share-sponsor-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.25rem;
  text-align: center;
}

.share-sponsor-logo-wrap {
  flex: 0 0 auto;
  min-width: 0;
}

.share-sponsor-logo {
  display: block;
  max-width: min(220px, 65vw);
  width: auto;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.share-sponsor-presents {
  flex: 0 0 auto;
  margin: 0;
  font-family: var(--font-gothic);
  font-weight: 800;
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  color: var(--kfb-black);
}

.share-callout {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 2px dashed var(--kfb-black);
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  line-height: 1.65;
  background: rgba(255, 215, 0, 0.15);
}

.share-callout strong {
  font-family: var(--font-pop);
}

.share-callout--pending {
  background: rgba(0, 206, 209, 0.12);
}

/* トークショー開催時間（名前は伏せて時間帯を見やすく） */
.share-talk-times {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  border: 2px dashed var(--kfb-black);
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  line-height: 1.65;
  background: rgba(0, 206, 209, 0.12);
}

.share-talk-times-title {
  margin: 0 0 0.75rem;
}

.share-talk-times-title strong {
  font-family: var(--font-pop);
}

.share-talk-times-day+.share-talk-times-day {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.share-talk-times-day-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-pop);
  font-weight: 800;
}

.share-talk-times-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.share-talk-times-item {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: baseline;
}

.share-talk-times-time {
  font-family: var(--font-pop);
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.share-talk-times-label {
  min-width: 0;
}

@media (max-width: 520px) {
  .share-talk-times-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* 透過PNG用：トークショー出演者ビジュアル */
.share-announcers-figure {
  margin: 1.25rem 0 0;
  padding: clamp(0.75rem, 2vw, 1.15rem);
  border-radius: 10px;
  border: 2px solid rgba(26, 26, 26, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 251, 255, 0.98) 38%, rgba(255, 248, 252, 0.98) 72%, rgba(255, 253, 240, 0.96) 100%),
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(0, 206, 209, 0.12) 0%, transparent 55%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.share-announcers-figure img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
}

.share-day-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.share-day-block {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.share-day-block:first-of-type {
  padding-top: 0;
  border-top: none;
}

.share-day-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-pop);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 800;
  color: var(--kfb-cyan);
  text-shadow: 1px 1px 0 #fff;
}

.share-program-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-program-item {
  margin-bottom: 1.1rem;
  padding-left: 0.85rem;
  border-left: 4px solid var(--kfb-magenta);
}

.share-program-item:last-child {
  margin-bottom: 0;
}

.share-program-name {
  display: block;
  font-family: var(--font-pop);
  font-weight: 800;
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  color: var(--kfb-black);
  margin-bottom: 0.35rem;
}

.share-program-desc {
  display: block;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  line-height: 1.75;
  color: var(--kfb-black);
  opacity: 0.92;
}

.share-program-figure {
  margin: 0.9rem 0 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(26, 26, 26, 0.1);
  background: #f5f5f5;
}

.share-program-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.share-program-more {
  margin: 0.85rem 0 0;
}

.share-paint-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* おひるねアート：スマホは1列、PCは2列 */
.share-ohirune-art-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 769px) {
  .share-paint-photos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .share-ohirune-art-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.share-paint-figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(26, 26, 26, 0.1);
  background: #f5f5f5;
}

.share-paint-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 520px) {
  .share-paint-photos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .share-hero {
    padding: 3rem 1.25rem 2.5rem;
  }
}