/* ▼グローバル共通レイアウト */
body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background: #fff;
}

/* ▼ヘッダー */
.2025renewal-header {
  background: rgba(255,255,255,0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}
.2025renewal-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.2025renewal-logo {
  font-size: 2em;
  font-weight: 700;
  color: #e32;
  text-decoration: none;
}
.2025renewal-nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #222;
  font-size: 1em;
  font-weight: 500;
  transition: color 0.3s;
}
.2025renewal-nav a:hover {
  color: #e32;
}
.renewal-header {
  height: 80px; /* 高さを抑える */
  padding: 0 60px;
}

.renewal-logo {
  width: 120px; /* ロゴをやや小さく */
}

/* ▼ファーストビュー動画セクション */
.2025renewal-hero-video {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.2025renewal-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.2025renewal-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.2025renewal-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.2025renewal-hero-content h1 span {
  color: #ffe54c;
}
.2025renewal-hero-event {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0,0,0,0.5);
  padding: 0.4em 1.2em;
  border-radius: 2rem;
  font-size: 1rem;
}
.2025renewal-event-date {
  color: #ffe54c;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
.2025renewal-event-title {
  color: #fff;
  font-weight: 500;
}

/* ▼新着記事セクション */
.2025renewal-new-articles {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}
.2025renewal-new-articles h2 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.2025renewal-article-list {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.2025renewal-article-card {
  min-width: 260px;
  max-width: 260px;
  text-decoration: none;
  color: #222;
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.2025renewal-article-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 20px rgba(227, 50, 34, 0.15);
}
.2025renewal-article-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.2025renewal-article-card p {
  margin: 16px;
  font-size: 1rem;
  font-weight: 500;
}

/* ▼フッター */
.2025renewal-footer {
  background: #222;
  color: #fff;
  padding: 40px 0 20px;
}
.2025renewal-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.2025renewal-footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e32;
  margin-bottom: 20px;
}
.2025renewal-footer-nav a {
  color: #fff;
  margin-right: 20px;
  text-decoration: underline;
}
.2025renewal-footer-nav a:hover {
  color: #e32;
}
.2025renewal-footer-copyright {
  font-size: 0.9rem;
  opacity: 0.5;
  margin-top: 24px;
}

/* ▼スマホ対応 */
@media (max-width: 768px) {
  .2025renewal-header-inner {
    flex-direction: column;
    gap: 12px;
  }
  .2025renewal-nav a {
    margin-left: 0;
    margin-right: 16px;
  }
  .2025renewal-article-card {
    min-width: 80vw;
  }
  .2025renewal-hero-video {
    height: 50vh;
  }
  .2025renewal-hero-content h1 {
    font-size: 1.5rem;
  }
}
/*CSS*/
.2025renewal-article-card {
  border: 3px dashed red !important;
  background: #ffe4e1 !important;
}
.2025renewal-article-list a.2025renewal-article-card {
  display: block !important;
  background: #fef3f3 !important;
  border-radius: 16px !important;
  border: 3px dashed red !important;
  padding: 1em !important;
  margin-bottom: 2em !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
  text-decoration: none !important;
}
.2025renewal-article-list a.2025renewal-article-card:hover {
  transform: scale(1.03) !important;
  box-shadow: 0 4px 24px rgba(227, 50, 34, 0.3) !important;
}
.2025renewal-article-card img {
  width: 100% !important;
  border-radius: 10px 10px 0 0 !important;
}

.2025renewal-article-card p {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #222 !important;
  padding: 0.5em 0 0.3em !important;
  text-align: center !important;
}

