/* Google font
-------------------------------------------------- */
body {
  font-family: 'Noto Sans JP', sans-serif;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 80px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  background-color: #9fa09e;
}


/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */

.container .text-muted {
  color: #fff;
  margin: 20px 0;
}


/* datepickerのpaddingをform_controlと同じにする
-------------------------------------------------- */
.datepicker {
    padding: .375rem .75rem;
}


/* home画面のメニューcard
-------------------------------------------------- */
.dashboard__card {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
}

.dashboard__card:hover {
    opacity: 0.1;
}

/* pタグのmargin-bottomを消す */
.list-group-item > p {
    margin-bottom: 0;
}

/* サイドバーを固定（スクロール追従）する
-------------------------------------------------- */
.sidebar_fixed {
    position: sticky;
    top: 20px;
}

/* checkboxのサイズを大きくする
-------------------------------------------------- */
input[type=checkbox] {
    transform: scale(1.3);
}
