@charset "UTF-8";
.notice-board {
  width: 100%;
  height: 50vh;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #2582A1 0%, #035298 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.notice-board a {
  display: block;
}
.notice-board .notice-header {
  position: sticky;
  top: 0;
  background-color: #123f4e;
  color: white;
  text-align: center;
  padding: 10px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  z-index: 10;
}
.notice-board .notice-header::before {
  content: "⁘⁘⁘";
  margin-right: 20px;
}
.notice-board .notice-header::after {
  content: "⁘⁘⁘";
  margin-left: 20px;
}
.notice-board .notice-container {
  position: absolute;
  top: 40px;
  width: 100%;
  animation: scroll 15000ms linear infinite;
}
.notice-board .notice-item {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-family: "Arial", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 2px;
  transition: background 0.3s ease;
}
.notice-board .notice-item:hover {
  background: rgba(255, 255, 255, 0.2);
}
.notice-board .notice-item .title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  color: white;
}
.notice-board .notice-item .date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  float: right;
}
.notice-board .notice-item.with-attachment {
  cursor: pointer;
  text-decoration: none;
}
.notice-board:hover .notice-container {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@media (max-width: 480px) {
  .notice-board {
    width: 100%;
    max-width: 100%;
  }
}/*# sourceMappingURL=noticeboard.css.map */