@charset "UTF-8";

* {
  margin: 0px;
  padding: 0px;
}

body {
  font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.login-box-img {
  text-align: center;
}

.login-box-img img {
  height: 54px;
}

.login_card,
.login-card-body {
  background-color: #ffffff;
  padding: 30px;
}

/*トースト*/
.toast-suc {
  position: fixed;
  top: 50%;
  display: inline-block;
  background: rgba(60, 245, 53, 0.6);
  color: #333;
  border-radius: 10px;
  padding: 15px 30px;
  border: none;
  z-index: 2000000;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  font-weight: bold;
}

.toast-fail {
  position: fixed;
  top: 50%;
  display: inline-block;
  background: rgba(240, 88, 176, 0.6);
  color: #fff;
  border-radius: 10px;
  padding: 15px 30px;
  border: none;
  z-index: 20000000;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  font-weight: bold;
}

.context {
  /*width: 100%;*/
  position: absolute;
  /*top:50vh;*/
  z-index: 1;

}

.area {
  background: #006918;
  background: linear-gradient(#00c72e, #006918);
  width: 100%;
  height: 100vh;


}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;

}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}


.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

/*ページバックグラウンド*/
.content-wrapper {
  background: url(/img/main_bg.png);
}

/*========================
　smartphone　bottom menu
　========================*/
/*PC表示の際はボトムメニューは表示しない*/
@media(min-width: 768px) {
  .bottom-menu {
    display: none;
  }
}

.mini-text {
  font-size: 10px;
}

/*文字大きさ*/

ul.bottom-menu {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45px;
  /*高さ*/
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  /*背景色*/
  border-top: 2px solid #808080;
  /*バーの上の線*/
  border-bottom: 2px solid #808080;
  /*バーの下の線*/
  z-index: 30;
}

ul.bottom-menu li {
  float: left;
  width: 25%;
  background-color: #f5f5f5;
  /*背景色*/
  list-style-type: none;
  text-align: center;
  font-size: 13px;
  /*アイコンのサイズ*/
}

.bottom-menu li a {
  display: block;
  color: #808080;
  /*アイコン＆文字の色*/
  padding-top: 10px;
  padding-bottom: 5px;
  line-height: 10px;
  text-decoration: none;
}

.bottom-menu li a:hover {
  color: #a9a9a9;
  /*マウスオーバー時の色*/
}

/* === 展開メニュー === */

ul.menu-second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

ul.menu-second-level li a {
  border-top: 1px dashed #a9a9a9;
  /*展開の枠点線*/
  font-size: 15px;
  /*展開メニューの文字サイズ*/
  line-height: 30px;
  /*文字の縦幅*/
}

.menu-second-level li a:hover {
  height: 100%;
  background: lightgrey;
  /*マウスオーバーの色*/
}

li.menu-width-max ul.menu-second-level {
  position: absolute;
  bottom: 47px;
  /*高さ*/
  left: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 0;
}

li.menu-width-max:hover ul.menu-second-level {
  bottom: 47px;
  /*高さ*/
  visibility: visible;
  opacity: 1;
}

li.menu-width-max ul.menu-second-level li {
  float: left;
  width: 100%;
  border: none;
}

@keyframes animate {

  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }

}

ul {
  list-style-type: none;
}

.login-logo a {
  width: 100%;
  display: block;
}

.login-logo a img {
  width: 70%;
  display: block;
  margin: 0 auto;
}

input.inputname {
  background-color: #ffffff00;
  border: white;
  color: #007bff;
}

/*テーブル 装飾一覧*/
.endtable {
  border-left: 1px solid #dee2e6;
}

.rowpadding div {
  padding: 5px;
}

.topbord {
  border-top: 1px solid #dee2e6;
}

.midasibg {
  background-color: #f1f1f1;
}

.bottomsolid {
  border-bottom: 1px dotted #C0C0C0;
}

.row-border+.row-border {
  border-bottom: 1px solid #dee2e6;
}

/*チェックボックスがONになった時表示*/
.selecthide2 {
  display: none;
}

/*チェックボックスがONになった時表示*/
.selecthide3 {
  display: none;
}

.textarea-css p {
  background: url(../../img/line.png) repeat bottom left;
  font-size: 14px;
  line-height: 27px;
  word-wrap: break-word;
}

/*会員一覧ヘッダー部位置調整*/
.card-list-member .dataTables_length {
  width: 189px;
  display: block;
  float: left;
}

.card-list-member .dataTables_filter {
  float: left;
}

/*非会員、死亡一覧装飾*/
span.die {
  font-size: 17px;
  border-radius: 7px;
  padding: 2px 5px 5px 5px;
  background: #333;
  color: #fff;
  vertical-align: middle;
}

span.die_list {
  font-size: 12px;
  border-radius: 7px;
  padding: 1px 3px 2px 3px;
  background: #333;
  color: #fff;
}

span.nonmember {
  font-size: 17px;
  border-radius: 7px;
  padding: 2px 5px 5px 5px;
  background: #673AB7;
  color: #fff;
  vertical-align: middle;
}

span.nonmember_list {
  font-size: 12px;
  border-radius: 7px;
  padding: 1px 3px 2px 3px;
  background: #673AB7;
  color: #fff;
}

span.cancell {
  font-size: 17px;
  border-radius: 7px;
  padding: 2px 5px 5px 5px;
  background: #FF5722;
  color: #fff;
  vertical-align: middle;
}

span.cancell_list {
  font-size: 12px;
  border-radius: 7px;
  padding: 1px 3px 2px 3px;
  background: #FF5722;
  color: #fff;
}

h5 .nonmember,
.c_nonmember_flg .nonmember {
  background-color: #673AB7;
  color: white;
  font-size: 8px;
  border-radius: 5px;
  padding: 2px;
  margin-right: 4px;
}

h5 .die,
.c_die_flg .die {
  background-color: #383838;
  color: white;
  font-size: 8px;
  border-radius: 5px;
  padding: 2px;
}

h5 .cancell,
.c_cancell_flg .cancell {
  background-color: #FF5722;
  color: #fff;
  font-size: 8px;
  border-radius: 5px;
  padding: 2px;
}

h5 .die,
h5 .nonmember,
h5 .cancell {
  font-size: 17px;
  border-radius: 7px;
  padding: 5px;
}

/*非会員の場合装飾*/
.c_nonmember_flg {
  background-color: #dcbdff !important;
}

/*死亡の場合装飾*/
.c_die_flg {
  background-color: #8c8c8c !important;
}

/*解約の場合装飾*/
.c_cancell_flg {
  background-color: #ffc5b3 !important;
}

/*非会員、死亡どちらも場合装飾*/
.c_nonmember_flg.c_die_flg {
  background-color: #8c8c8c !important;
}

#submit_select2,
#submit_select {
  margin: 10px 5px;
}

/**************削除ボタン装飾***************/
.form_delete input {
  background-color: #ff3f3fc2;
  border-radius: 5px;
  border: none;
  position: absolute;
  top: -12px;
  right: 3px;
  color: white;
}

.form-line {
  width: 100%;
}

.form-line #submit_form {
  width: 200px;
  display: block;
  float: left;
}

.form-line #submit_form2 {
  float: left;
}

.form-line #submit_form3 {
  position: relative;
  float: left;
  top: 10px;
}

.form-line #submit_form3 .input-group {
  position: absolute;
  width: 300px;
  top: -8px;
  margin-left: 100px;
}

@media screen and (max-width: 768px) {

  .main-header .logo {
    height: 23px;
    font-size: 15px;
    line-height: 25px;
  }

  /*スマホの時、非表示*/
  .hidden-xs {
    display: none;
  }


  .font13 {
    font-size: 13px;
  }

  .font13 tr {
    font-size: 13px;
  }

  /*テーブル装飾ースマホボタンプルダウン押下時*/
  .nav-pills .nav-link:not(.active):hover {
    color: white;
  }

  /*データテーブル装飾*/
  .sorting_1 form {
    display: block;
    width: 150px;
    overflow: hidden;
  }

  .table td {
    padding: .25rem;
  }

  /*会員一覧ヘッダー部位置調整*/
  .card-list-member .dataTables_length {
    width: 50%;
  }

  .card-list-member .dataTables_filter {
    width: 50%;
  }

  .card-list-member .dataTables_info,
  .card-list-member .dataTables_paginate {
    float: left;
  }

  .card-list-member .dataTables_filter input {
    width: 75% !important;
  }

  h5 .die,
  h5 .nonmember {
    font-size: 13px;
    border-radius: 7px;
    padding: 3px;
  }

  /*ステータス*/
  span.cancell,
  span.nonmember,
  span.die {
    font-size: 14px;
    padding: 1px 3px 3px 3px;
  }

  .form-line #submit_form3 .input-group {
    position: relative;
    width: 260px;
    top: -41px;
    margin-left: 116px;
  }

  /*h1タイトルのモバイル*/
  .h1-title {
    font-size: 20px !important;
  }


}

/*データテーブル装飾 -- ヘッダー*/
.datatables-header {
  position: relative;
  height: 120px;
}

.datatables-header .dt-buttons {
  margin-bottom: 5px;
}

.datatables-header .dataTables_length {
  position: absolute;
}

.datatables-header #memberlist_filter {
  position: absolute;
  right: 0;
}

.datatables-header #memberlist_paginate {
  position: absolute;
  right: 0;
}

.datatables-header .dataTables_info {
  position: absolute;
  left: 0;
  bottom: 0;
}

.datatables-header .dataTables_paginate {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 650px) {

  /*データテーブル装飾*/
  .sorting_1 form {
    display: block;
    width: 101px;
    overflow: hidden;
  }

  .table td {
    padding: .25rem;
  }

  /*会員一覧ヘッダー部位置調整*/
  .card-list-member .dataTables_length {
    width: 50%;
  }

  .card-list-member .dataTables_filter {
    width: 50%;
  }

  .card-list-member .dataTables_info,
  .card-list-member .dataTables_paginate {
    float: left;
  }

  .card-list-member .dataTables_filter input {
    width: 75% !important;
  }

  .datatables-header {
    position: relative;
    height: 149px;
  }

  .datatables-header .dataTables_filter input {
    width: 120px !important;
  }

  .datatables-header #memberlist_paginate {
    bottom: 27px;
    font-size: 14px;
  }

  .datatables-footer .dataTables_paginate {
    font-size: 14px;
  }

  .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }


}

/*
スモールボード色再設定
*/
.bg-success,
.bg-success>a {
  color: white !important;
}

/*パンくずリスト*/
.breadcrumb i {
  padding: 0 5px;
  line-height: 33px;
}

.bold {
  font-weight: bold;
  font-weight: 700;
}

/***名前が長い場合の装飾***/
.strlen25 {
  font-size: 22px !important;
}

/*モバイルの場合*/
@media screen and (max-width: 768px) {
  .strlen25 {
    font-size: 19px !important;
  }

  /*パンくずリスト*/
  .breadcrumb {
    font-size: 13px;
  }

  .breadcrumb-item+.breadcrumb-item {
    padding-left: 0.2rem;
  }

  .breadcrumb-item+.breadcrumb-item::before {
    padding-right: 0.2rem;
  }

  .content-header {
    padding: 5px 0.5rem;
  }

  /*会員詳細電話番号*/
  .list-group-item .phone-box {
    color: #007bff;
  }

  /*会員一覧電話番号リンク色*/
  .tel-color {
    color: #007bff;
  }
}

/*会員詳細*/
.timeline-border {
  border-top: 1px dotted #c1c1c1;
}

/* ラベル印刷用のチェックボックス */
.insatsu .ECM_CheckboxInput {
  padding: 12px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.insatsu .ECM_CheckboxInput-DummyInput {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 32px;
  height: 32px;
  border: solid 2px transparent;
  background: rgba(0, 0, 0, .1);
  border-radius: 4px;
  border: 1px solid #333;
}

.insatsu .ECM_CheckboxInput-LabelText {
  margin-left: 12px;
  display: block;
  font-size: 18px;
  font-weight: bold;
}

.insatsu .ECM_CheckboxInput-Input:checked+.ECM_CheckboxInput-DummyInput {
  background: #ffffff;
}

.insatsu .ECM_CheckboxInput-Input:checked+.ECM_CheckboxInput-DummyInput::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-135deg);
  transform-origin: 2px 2px;
  background: #333;
}

.insatsu .ECM_CheckboxInput-Input:checked+.ECM_CheckboxInput-DummyInput::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-45deg);
  transform-origin: 2px 2px;
  background: #333;
}

.toast.bg-ori .toast-header {
  background-color: #00d1aa;
  color: #fff;
}

.btn-box-ori.choose-box a.btn--choose {
  color: #fff;
  background-color: #3DB262;
  padding: 3px 15px;
}

.choosevalue {
  padding-bottom: 9px;
  font-size: 1rem;
}