/* ============================================
   新着情報リスト - news.css
   ============================================ */

/* 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-hero {
  position: relative;
  height: 418px;
  overflow: hidden;
  background: #c4c4c4;
}

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

.news-hero-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 500;
  color: #333;
  margin: 0;
  white-space: nowrap;
}

/* 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-main {
  padding: 30px 0 60px;
  background: #fff;
}
.news-detail-title{
text-align: center;
margin-bottom: 70px;
}
/* Tabs */
.news-tabs {
  display: flex;
  align-items: center;
  background: #f2f2f2;
  border-radius: 40px;
  padding: 6px;
  margin-bottom: 40px;
  gap: 0;
  flex-wrap: wrap;
}

.news-tab {
  flex: 1;
  min-width: 80px;
  padding: 8px 16px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}

.news-tab:hover { background: rgba(0,0,0,0.05); }
.news-tab.active {
  background: #000;
  color: #fff;
}

/* Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  margin-bottom: 50px;
}

.news-card-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: inherit;
}

.news-card-link:hover .news-card-title { color: #fb5f00; }

.news-card-img {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: #e0e0e0;
}

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

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 9px;
}

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

.news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11px;
  color: #fff;
}

.news-tag-oshirase { background: #0265c3; border: 1px solid #0265c3; }
.news-tag-blog { background: #41a3ff; border: 1px solid #41a3ff; }
.news-tag-tour { background: #fc6d08; border: 1px solid #fc6d08; }
.news-tag-media { background: #ffae35; border: 1px solid #ffae35; }

.news-card-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.44;
  margin: 0;
  letter-spacing: 1.6px;
}

/* Pagination */
.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.news-pag-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.news-pag-btn:hover { color: #fb5f00; }

.news-pag-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 10px;
  border-radius: 99px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.news-pag-num:hover { background: #f5f5f5; }
.news-pag-num.active {
  background: #000;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-detail-title{
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .news-hero { height: 280px; }
  .news-hero-title { font-size: 24px; white-space: normal; text-align: center; }
  .news-tabs { flex-direction: column; }
  .news-tab { width: 100%; }
  .news-grid { grid-template-columns: 1fr; gap: 24px; }
  .news-pagination { flex-wrap: wrap; }
}
