/* ============================================
   新着情報詳細 - news-detail.css
   ============================================ */

/* 共用 news header */
.header-news-inner {
  background: linear-gradient(90deg, #ffe2cf 10%, #fb5f00 65%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
.header-news-top .header-phone { color: #fff; }
.header-news-top .btn-login,
.header-news-top .btn-cart-nav {
  background: #000;
  color: #fff;
  padding: 7px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 17px;
}
.main-nav-news { background: #fff; border-bottom: 1px solid #ddd; }
.nav-list-news .nav-item a.active { border-bottom: 4px solid #fb5f00; }

/* Hero */
.news-detail-hero {
  position: relative;
  height: 418px;
  overflow: hidden;
  background: #c4c4c4;
}

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

/* Breadcrumb */
.breadcrumb-wrap { padding: 20px 0; background: #fff; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #000;
}
.breadcrumb a:hover { color: #fb5f00; }
.breadcrumb-sep { flex-shrink: 0; }

/* Main */
.news-detail-main {
  padding: 40px 0 60px;
  background: #fff;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news-detail-date {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.6px;
}

.news-detail-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  background: #0265c3;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.news-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  margin: 0 0 36px;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Article */
.news-detail-article {
  margin-bottom: 50px;
}

.news-detail-figure {
  margin: 0 0 28px;
  border-radius: 8px;
  overflow: hidden;
  background: #e8e8e8;
}

.news-detail-figure img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.news-detail-content {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.news-detail-content p {
  margin: 0 0 1em;
}

.news-detail-content p:last-child { margin-bottom: 0; }

/* Prev/Next - 横並び < 前のページへ | 次のページへ > */
.news-detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}

.news-detail-prev,
.news-detail-next {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
}

.news-detail-arrow {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.8;
}

.news-detail-prev { color: #888; }
.news-detail-prev:hover { color: #333; }
.news-detail-next:hover { color: #fb5f00; }

/* Responsive */
@media (max-width: 768px) {
  .news-detail-hero { height: 280px; }
  .news-detail-main { padding: 24px 0 40px; }
  .news-detail-meta { gap: 10px; margin-bottom: 12px; }
  .news-detail-date { font-size: 14px; }
  .news-detail-tag { padding: 4px 10px; font-size: 11px; }
  .news-detail-title { font-size: 20px; margin-bottom: 28px; }
  .news-detail-figure { margin-bottom: 20px; }
  .news-detail-content { font-size: 15px; line-height: 1.75; }
  .news-detail-nav { padding-top: 20px; gap: 12px; flex-direction: column; align-items: stretch; }
  .news-detail-prev,
  .news-detail-next { justify-content: center; padding: 12px; }
}
