@charset "utf-8";

.important-notice {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  margin: 0 auto 5px;
  max-width: 1200px;

  background-color: #fff3f3;
  border: 1px solid #e60012;
  border-radius: 4px;

  font-size: clamp(13px, 1.2vw, 14px);
  line-height: 1.6;
  text-align: center;
}

.important-notice a {
  color: #333;
  text-decoration: none;
  text-align: center;
}

.notice-label {
  color: #e60012;
  font-weight: bold;
}

.notice-date {
  color: #666;
}


.notice-label {
  color: #e60012;
  font-weight: bold;
  white-space: nowrap;
}

.important-notice a {
  color: #333;
  text-decoration: none;
}

.important-notice a:hover {
  text-decoration: underline;
}

.notice-date {
  color: #666;
}

@media screen and (max-width: 768px) {
  .important-notice {
    flex-direction: column;
    align-items: flex-start;
  }
}
