html,

body {
  background-color: #f5f5f5;
  min-height:100vh;
}

*{
  font-family: 'Sawarabi Gothic', 'Noto Sans JP', sans-serif;
}

/* login */
.form-signin {
  width: 100%;
  max-width: 400px;
  padding: 60px 20px;
  margin: auto;
}
.form-signin .checkbox {
  font-weight: 400;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.login {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
padding-top: 40px;
padding-bottom: 40px;
background-color: #f5f5f5;
}
.bland-red{
  color: #cc0000;
}

/* DASHBOARD */
.header-menu{
  display: none;
}
.left-nav{
  float: left;
  width: 17rem;
  padding-top: 60px;
  height: 100%;
  position: fixed;
  top:0px;
  left:0px;
}
.left-nav .list-group-item.active{
  background-color: rgba(0,0,0,.02);
  border-color: rgba(0,0,0,.125);
  color: #212529;
  font-weight: bold;
  padding-left: 30px;
}
.contents{
  padding-top: 80px;
  padding-left: 280px;    /* 左に280px間を空けます（メニュー表示時） */
  padding-bottom: 50px;
}
main header{
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}
@media screen and (max-width:991px) {   /* 画面が991px以下になると反映されます。 */
  .header-menu{
      display: block;
  }
  /* コンテンツエリア用を追加します。 */
  .contents{
      padding-top: 80px;
      padding-left: 0px;  /* 左の間をなくします（メニュー非表示時） */
      padding-bottom: 50px;
  }
}

/* modal */
.modal-content{
  border: none !important;
}