/* components.css */

/* ボタン */
.btn,
.btn-info,
.btn-primary {
  display: inline-block;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background-color: var(--color-accent);
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  width: 200px;
  margin: 75px auto;
}

/* お知らせ（ヘッダー下1行） */
.new-top {
  position: relative;
  width: 1208px;
  display: flex;
  align-items: center;
  margin: 30px auto 0;
  padding: 1rem;
  background: #fff;
  border-radius: 5px;
  z-index: 8;
}

.new-top h2 {
  font-size: 1rem;
  font-weight: normal;
  background: var(--color-accent);
  color: #fff;
  border-radius: 3px;
  margin-right: 1rem;
  padding: 0 1rem;
}

.new-top .text {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-top img {
  position: absolute;
  bottom: 0;
  right: 30px;
  width: 100px;
}

/* アラート等 */
.alert-danger {
  color: tomato;
}

.badge,
.contact .badge-danger {
  display: inline-block;
  background-color: tomato;
  color: #fff;
  padding: 3px 5px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-family: var(--font-base);
}
