/* ============================================================
   NEWS DETAIL — news-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;
  color: #8E7173;
  letter-spacing: 0.08em;
}

@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
   ------------------------------------------------------------ */
.news-detail-section {
  position: relative;
  z-index: 1;
  padding: 36px 20px 64px;
}

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

/* ------------------------------------------------------------
   Breadcrumb
   ------------------------------------------------------------ */
.news-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.news-detail-breadcrumb::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--text-gray);
  flex-shrink: 0;
}

.news-detail-breadcrumb a {
  color: var(--text-gray);
  transition: color 0.2s;
}

.news-detail-breadcrumb a:hover {
  color: var(--pink-primary);
}

.news-detail-breadcrumb .sep {
  color: var(--text-gray);
}

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

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

/* ------------------------------------------------------------
   Title
   ------------------------------------------------------------ */
.news-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
   ------------------------------------------------------------ */
.news-detail-eyecatch {
  margin: 0 auto 24px;
  line-height: 0;
  width: 598px;
  max-width: 100%;
  aspect-ratio: 598 / 374;
  overflow: hidden;
}

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

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

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

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

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

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

/* ------------------------------------------------------------
   Share
   ------------------------------------------------------------ */
.news-detail-share {
  padding: 36px 0;
  text-align: center;
  border-top: 1px solid #EAE2E3;
  margin-bottom: 0;
}

.news-detail-share-title {
  font-family: 'minion-variable-concept', 'Minion Variable Concept', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #8E7173;
  margin-bottom: 20px;
}

.news-detail-share-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: opacity 0.2s;
}

.share-icon:hover {
  opacity: 0.7;
}

.share-icon--x        { color: #F9769F; }
.share-icon--instagram { color: #F9769F; }
.share-icon--line      { color: #F9769F; }

/* ------------------------------------------------------------
   Back link
   ------------------------------------------------------------ */
.news-detail-back {
  padding-top: 28px;
  text-align: center;
}

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

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

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

  .news-detail-breadcrumb {
    margin-bottom: 28px;
  }

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

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

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

  .news-detail-share {
    padding: 48px 0;
  }

  .share-icon {
    width: 48px;
    height: 48px;
  }

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