/* テーマCSSへの補助（既存テーマに無いお問い合わせフォーム等のみ）。配色はブランド #7d0000 に合わせる。 */
.contact-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin: 24px 0 0;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 15px;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #7d0000;
  border-color: #7d0000;
}
.contact-form button {
  font: inherit;
  font-weight: bold;
  color: #fff;
  background: #7d0000;
  border: 0;
  border-radius: 2px;
  padding: 12px 32px;
  cursor: pointer;
  justify-self: start;
}
.contact-form button:hover {
  background: #5e0000;
}
.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-note {
  color: #6b6b6b;
  font-size: 13px;
}

/* フッター背景をブランドのマルーンに（白文字の法令リンク。元の額縁マルーンと一体化） */
#footer {
  background: #7d0000;
}

/* お知らせ詳細の日付 */
.the_content .inner article > time {
  display: block;
  color: #6b6b6b;
  margin-bottom: 1.2em;
}
