/* reely-titles.css : 全ページのタイトル統一 */
:root {
  --title-size: 28px;    /* login.html と同じ */
  --title-color: #0b2c48;
}
h1.page-title{
  margin: 0 0 16px;
  font-size: var(--title-size);
  font-weight: 800;
  line-height: 1.25;
  color: var(--title-color);
  text-align: left;      /* 左寄せで統一 */
}
