@charset "UTF-8";
.bg-dark .nav-item.ttl {
  background: #FFF;
  padding: 8px;
  font-weight: bold;
}
.bg-dark .nav-link {
  color: white;
  background-color: rgba(255, 255, 255, 0.493);
  padding-left: 24px;
  z-index: 0;
  position: relative;
}
.bg-dark .nav-link::before, .bg-dark .nav-link::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.bg-dark .nav-link::before {
  left: 8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
}
.bg-dark .nav-link.active {
  opacity: 0.5;
}
.bg-dark .nav-link:hover {
  opacity: 0.6;
}
.bg-dark .nav-link.media_rental {
  background: #5b5bc8;
}
.bg-dark .nav-link.download {
  background: #5c7894;
}
.bg-dark .nav-link.coupon_schedule {
  background-color: rgb(153, 31, 31);
}
.bg-dark .nav-link.coupon {
  background-color: rgb(117, 153, 31);
}
.bg-dark .nav-link.coupon_category {
  background-color: rgb(31, 111, 153);
}
.bg-dark .nav-link.user {
  background: #9d896c;
}

._pager {
  display: flex;
  justify-content: center;
}
._pager .text-muted {
  display: none;
}

header {
  height: 50px;
  box-shadow: 0px 0px 5px 0px hsla(0, 0%, 7%, 0.3);
}
header .logout a {
  display: inline-block;
  background: #F66;
  color: #FFF !important;
  padding: 8px 16px !important;
}

/* ログイン関連 */
.login_body {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}
.login_body .logo_mark {
  font-size: 24px;
  font-weight: bold;
}
.login_body .form-signin {
  max-width: 330px;
  padding: 15px;
}
.login_body .form-signin .form-floating:focus-within {
  z-index: 2;
}
.login_body .form-signin input[type=email] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.login_body .form-signin input[type=password] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

footer .footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  background-color: #f5f5f5;
}
footer body > .container {
  padding: 60px 15px 0;
}
footer .container .text-muted {
  margin: 20px 0;
}
footer .footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

nav {
  width: 400px;
}

main {
  position: relative;
  z-index: 1;
  transition: 0.3s all ease;
  /*モーダル本体の指定 + モーダル外側の背景の指定*/
  /*モーダル本体の擬似要素の指定*/
  /*モーダル本体に「active」クラス付与した時のスタイル*/
  /*モーダル枠の指定*/
  /*モーダルを閉じるボタンの指定*/
  /*モーダル内のコンテンツの指定*/
}
main .w100 {
  width: 100px;
}
main .w150 {
  width: 150px;
}
main .w200 {
  width: 200px;
}
main .w250 {
  width: 250px;
}
main .w300 {
  width: 300px;
}
main .input1 {
  width: 3em;
  box-sizing: border-box;
  text-align: center;
}
main .form-label {
  font-weight: bold;
  font-size: 110%;
}
main .error_msg {
  background: #F66;
  color: #FFF;
  padding: 8px;
  box-sizing: border-box;
  margin-bottom: 40px;
}
main .error_msg ul {
  margin-bottom: 0;
}
main .table_tategaki {
  writing-mode: tb-rl;
  white-space: nowrap;
  text-align: left;
  vertical-align: middle;
}
main table.center tr th,
main table.center tr td,
main table tr.center th,
main table tr.center td {
  vertical-align: middle;
  text-align: center;
}
main table.border tr th,
main table.border tr td,
main table tr.border th,
main table tr.border td {
  border-width: 1px;
}
main .modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
}
main .modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
main .modal-container.active {
  opacity: 1;
  visibility: visible;
}
main .modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 90vw;
}
main .modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
main .modal-content {
  background: #fff;
  text-align: left;
  padding: 30px;
}

.flash_message {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #AAA;
  border-radius: 8px;
  margin-bottom: 32px;
  color: #F00;
  font-weight: bold;
}

#reserve_list_table th.week6 {
  color: blue;
}

#reserve_list_table th.week0 {
  color: red;
}

#dantai_select_box .caution {
  display: none;
}
#dantai_select_box.active .caution {
  display: block;
  background: #F00;
  color: #FFF;
  padding: 8px 16px;
  font-size: 2rem;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */