/* ============================================================
   NEWS DETAIL PAGE — お知らせ詳細
   ============================================================ */

/* Hero band */
.news-hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 200px 0 100px;
  overflow: hidden;
}
.news-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(155,123,85,0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(45,74,62,0.15) 0%, transparent 100%);
  pointer-events: none;
}
.news-hero-text {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.news-hero-text .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.news-hero-text .label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.news-hero h1 {
  font-family: var(--font-en);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
}
.news-hero p {
  font-family: var(--font-ja);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Article body */
.news-article {
  padding: var(--sp-xl) 0;
  background: var(--bg);
}
.news-article .container { max-width: var(--container-sm); }

.news-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 56px;
  padding: 12px 0;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.news-back::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.news-back:hover { color: var(--accent); gap: 18px; }

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.news-meta-date {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.news-meta-category {
  font-family: var(--font-ja);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 4px 12px;
  border: 1px solid var(--border-light);
  border-radius: 2px;
}

.news-article h1 {
  font-family: var(--font-ja);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0 0 48px;
}

.news-body {
  font-family: var(--font-ja);
  font-size: 0.95rem;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.news-body p {
  margin: 0 0 28px;
}
.news-body h2 {
  font-family: var(--font-ja);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 56px 0 20px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}
.news-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.news-body li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.news-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
.news-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: opacity 0.3s var(--ease);
}
.news-body a:hover { opacity: 0.7; }

.news-body-figure {
  margin: 40px 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-alt);
}
.news-body-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(8%);
  transition: filter 0.6s var(--ease);
}
.news-body-figure:hover img { filter: grayscale(0%); }

/* Footer nav (prev / next / back to list) */
.news-nav {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
  text-align: center;
}
.news-nav .btn {
  display: inline-block;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 36px;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r-xs);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.news-nav .btn:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .news-hero { padding: 140px 0 60px; }
  .news-article { padding: 80px 0; }
  .news-back { margin-bottom: 36px; }
  .news-article h1 { margin-bottom: 36px; }
  .news-body { font-size: 0.9rem; line-height: 2.0; }
  .news-body h2 { margin: 40px 0 16px; }
  .news-nav { margin-top: 56px; padding-top: 36px; }
}

/* ============================================================
   NEWS LIST PAGE — お知らせ一覧
   ============================================================ */
.news-list-section {
  padding: var(--sp-xl) 0 var(--sp-lg);
  background: var(--bg);
}
.news-list-section .container { max-width: var(--container-sm); }

.news-list-intro {
  margin-bottom: 80px;
  text-align: center;
}
.news-list-intro .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.news-list-intro .label::before,
.news-list-intro .label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.news-list-intro p {
  font-family: var(--font-ja);
  font-size: 0.9rem;
  line-height: 2;
  color: var(--text-muted);
  margin: 0;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border-light);
}
.news-list-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 8px;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.3s var(--ease), background 0.3s var(--ease);
}
.news-list-item:hover {
  padding-left: 20px;
  background: var(--bg-alt);
}
.news-list-date {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.news-list-body {
  min-width: 0;
}
.news-list-category {
  display: inline-block;
  font-family: var(--font-ja);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 3px 10px;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  margin-bottom: 10px;
}
.news-list-title {
  font-family: var(--font-ja);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.6;
}
.news-list-excerpt {
  font-family: var(--font-ja);
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-arrow {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.news-list-arrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.news-list-item:hover .news-list-arrow { color: var(--accent); gap: 14px; }
.news-list-item:hover .news-list-arrow::after { width: 32px; }

.news-list-back {
  margin-top: 80px;
  text-align: center;
}
.news-list-back .btn {
  display: inline-block;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 36px;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r-xs);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.news-list-back .btn:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .news-list-section { padding: 80px 0 60px; }
  .news-list-intro { margin-bottom: 48px; }
  .news-list-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }
  .news-list-item:hover { padding-left: 0; }
  .news-list-arrow { justify-self: end; }
}

