/* Scss Document */
.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;
  }
}
.text-subsby-banner {
  margin: 24px 0;
  box-sizing: border-box;
}
.text-subsby-banner__note {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.4;
}

.text-subsby-banner__link {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  min-height: 80px;
  padding: 16px 20px;
  box-sizing: border-box;
  background: #f8fafc;
  border: 1px solid #d8e1ea;
  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-subsby-banner__link:hover {
  background: #e3e8ee;
  border-color: #e3e8ee;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
  text-decoration: none;
}

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

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

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