/* ============================================================
   SCHEDULE DETAIL — schedule-detail.css
   ============================================================ */

/* ------------------------------------------------------------
   Page Hero
   ------------------------------------------------------------ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 20px 26px;
  text-align: center;
  background-image: url('../img/bg_sp.webp');
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}


.page-hero-title {
  position: relative;
  z-index: 1;
  font-family: 'minion-variable-concept', 'Minion Variable Concept', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #8E7173;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 156px 0 48px;
    overflow: visible;
    background: none;
  }

  .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background-image: url('../img/bg_pc.webp');
    background-size: 1400px 500px;
    background-repeat: repeat-x;
    background-position: top center;
    z-index: 0;
  }
  .page-hero-title {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 1.8rem;
    text-align: left;
  }
}

/* ------------------------------------------------------------
   Detail Section
   ------------------------------------------------------------ */
.schedule-detail-section {
  position: relative;
  z-index: 1;
  padding: 36px 20px 64px;
}

.schedule-detail-wrap {
  max-width: 680px;
  margin: 0 auto;
}

/* ------------------------------------------------------------
   Article meta (date + tag)
   ------------------------------------------------------------ */
.schedule-detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.schedule-detail-date {
  font-size: 0.85rem;
  color: #999293;
  letter-spacing: 0.04em;
}

/* ------------------------------------------------------------
   Title
   ------------------------------------------------------------ */
.schedule-detail-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #343434;
  line-height: 1.65;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #EAE2E3;
}

/* ------------------------------------------------------------
   Eyecatch
   ------------------------------------------------------------ */
.schedule-detail-eyecatch {
  margin: 0 auto 32px;
  line-height: 0;
  width: 598px;
  max-width: 100%;
  aspect-ratio: 598 / 374;
  overflow: hidden;
}

.schedule-detail-eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ------------------------------------------------------------
   Body
   ------------------------------------------------------------ */
.schedule-detail-body {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #343434;
  margin-bottom: 48px;
}

.schedule-detail-body p {
  margin-bottom: 0.3em;
}

.schedule-detail-body .body-spacer {
  display: block;
  height: 0.8em;
}

.schedule-detail-body a {
  color: var(--pink-primary);
  word-break: break-all;
}

.schedule-detail-body a:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------------
   Back link
   ------------------------------------------------------------ */
.schedule-detail-back {
  border-top: 1px solid #EAE2E3;
  padding-top: 28px;
  text-align: center;
}

.schedule-detail-back a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: #343434;
  transition: color 0.2s;
}

.schedule-detail-back a:hover {
  color: var(--pink-primary);
}

/* ------------------------------------------------------------
   PC
   ------------------------------------------------------------ */
@media (min-width: 768px) {
  .schedule-detail-section {
  position: relative;
  z-index: 1;
    padding: 56px 20px 80px;
  }

  .schedule-detail-title {
    font-size: 1.45rem;
    margin-bottom: 32px;
    border-bottom: 1px solid #EAE2E3;
  }

  .schedule-detail-eyecatch {
    margin-bottom: 40px;
  }

  .schedule-detail-body {
    font-size: 0.95rem;
    margin-bottom: 56px;
  }

  .schedule-detail-back {
    padding-top: 32px;
  }
}
