@charset "UTF-8";
/* 画面の高さが600px未満の場合-> small-height */
/* 画面の高さが600px以上の場合-> tall-height */
.gold-gradient {
  background: linear-gradient(to bottom, #ffd700 0%, #f8d053 50%, #e6b800 100%);
}

.silver-gradient {
  background: linear-gradient(to bottom, #f8f8f8 0%, #d1d1d1 50%, #a1a1a1 100%);
}

.bronze-gradient {
  background: linear-gradient(to bottom, #cd7f32 0%, #a0522d 50%, #804a00 100%);
}

.text-notice-banner {
  margin: 24px 0;
  box-sizing: border-box;
}

.text-notice-banner__link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 20px;
  box-sizing: border-box;
  background: #fff1f1;
  border: 1px solid #e53935;
  border-radius: 3px;
  color: #333;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.text-notice-banner__link:hover {
  background: #fff3cf;
  border-color: #d8bf79;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
  text-decoration: none;
}

.text-notice-banner__label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  padding: 6px 10px;
  background: #e53935;
  border-radius: 999px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
}

.text-notice-banner__text {
  flex: 1 1 auto;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #c62828;
  font-family: "Noto Sans JP", sans-serif;
}

@media only screen and (max-width: 640px) {
  .text-notice-banner__link {
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }
  .text-notice-banner__label {
    min-width: 70px;
    padding: 5px 9px;
    font-size: 0.75rem;
  }
  .text-notice-banner__text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}/*# sourceMappingURL=components_notice.css.map */