/* 新着情報セクションのスタイル */
.news-section {
  padding: 80px 0;
  position: relative;
  background-color: rgba(59, 17, 70, 1);
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;
}

.news-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(56, 0, 60, 1));
  z-index: -1;
}

.news-section .section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 0 10px rgba(251,213,120, 0.6);
  position: relative;
}

.news-section .section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, rgba(251,213,120,0.4), rgba(251,213,120,0.4));
  box-shadow: 0 0 10px rgba(251,213,120, 0.8);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.news-container {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(251,213,120, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 10px rgba(251,213,120, 0.1);
  max-width: 800px;
  margin: 60px auto 0;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.news-item:hover {
  transform: translateX(5px);
}

.news-link {
  display: flex;
  align-items: center;
  padding: 15px 5px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.news-link:hover {
  background-color: rgba(251,213,120, 0.1);
  border-radius: 6px;
}

.news-date {
  flex: 0 0 100px;
  color: #00c6ff;
  font-weight: 500;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}

.news-title {
  flex: 1;
  font-weight: 500;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-arrow {
  margin-left: 10px;
  color: #00c6ff;
  opacity: 0;
  transition: opacity 0.3s;
}

.news-link:hover .news-arrow {
  opacity: 1;
}

.news-more-btn-wrapper {
  text-align: center;
  margin-top: 25px;
}

.news-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-more-btn:hover {
  box-shadow: 0 8px 25px rgba(0, 114, 255, 0.5);
  transform: translateY(-2px);
  background: linear-gradient(90deg, #00c6ff, #0072ff);
}

.news-more-btn i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.news-more-btn:hover i {
  transform: translateX(3px);
}

.no-news {
  text-align: center;
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* デコレーション要素 */
.news-decoration {
  position: absolute;
  background: radial-gradient(circle, rgba(251,213,120, 0.15) 0%, rgba(251,213,120, 0) 70%);
  border-radius: 50%;
}

.news-decoration-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.news-decoration-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
}

.news-neon-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 198, 255, 0), rgba(0, 198, 255, 0.8), rgba(0, 198, 255, 0));
  box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.news-neon-line-1 {
  width: 200px;
  top: 50px;
  left: 10%;
  transform: rotate(-5deg);
}

.news-neon-line-2 {
  width: 150px;
  bottom: 70px;
  right: 15%;
  transform: rotate(10deg);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .news-section {
    padding: 60px 0;
  }
  
  .news-section .section-title {
    font-size: 28px;
  }
  
  .news-container {
    padding: 20px 15px;
  }
  
  .news-link {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 5px;
  }
  
  .news-date {
    margin-bottom: 5px;
  }
  
  .news-arrow {
    display: none;
  }
} 