@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: 65px;
}

.login_card,
.login-card-body {
  /*background-color: #ffffff47;*/
  background-color: #fff;
  padding: 40px;
}

/*ダッシュボード回り*/
.info-box-ori {
  margin-bottom: 10px;
}

.info-box-ori :last-child {
  margin-bottom: 0;
}

/*トースト*/
.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: 10;

}

.area {
  background-color: #05140a;
  width: 100%;
  width: 100%;
  height: 100vh;
}

/* グリッド背景 */
.grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(25, 85, 155, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 85, 155, 0.2) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
}

/* 横方向に流れるデータパネル */
.data-panel {
  position: absolute;
  background-color: rgba(8, 46, 99, 0.4);
  border: 1px solid rgba(254, 64, 255, 0.5);
  border-radius: 2px;
  color: rgba(64, 183, 255, 0.8);
  font-size: 10px;
  padding: 8px;
  box-shadow: 0 0 15px rgba(64, 153, 255, 0.2);
  animation: slideRight 20s linear infinite;
  z-index: 3;
  opacity: 0.9;
  text-shadow: 0 0 5px rgba(64, 183, 255, 0.5);
  overflow: hidden;
}

.data-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, 
    rgba(64, 153, 255, 0) 0%,
    rgba(64, 153, 255, 0.1) 25%,
    rgba(64, 153, 255, 0.1) 75%,
    rgba(64, 153, 255, 0) 100%
  );
  animation: scanline 2s linear infinite;
}

/* 縦方向に流れるデータストリーム */
.data-stream {
  position: absolute;
  width: 3px;
  background: linear-gradient(to bottom, 
    rgba(64, 183, 255, 0) 0%,
    rgba(254, 64, 255, 0.7) 50%,
    rgba(64, 183, 255, 0) 100%
  );
  animation: moveDown 8s linear infinite;
  z-index: 2;
}

/* 点滅する交差点 */
.node {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgba(254, 64, 255, 0.9);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  z-index: 4;
}

/* 光線効果 */
.light-beam {
  position: absolute;
  width: 150%;
  height: 2px;
  background: linear-gradient(to right, 
    rgba(64, 183, 255, 0) 0%,
    rgba(254, 64, 255, 0.8) 50%,
    rgba(64, 183, 255, 0) 100%
  );
  transform: rotate(-15deg);
  animation: moveBeam 10s linear infinite;
  z-index: 2;
}

/* フロートするグラフ */
.graph-panel {
  position: absolute;
  width: 150px;
  height: 80px;
  background-color: rgba(8, 46, 99, 0.3);
  border: 1px solid rgba(254, 64, 255, 0.5);
  border-radius: 2px;
  padding: 10px;
  z-index: 5;
  animation: float 15s ease-in-out infinite;
}
.graph-panel.p1 {
  position: absolute;
  top: 65%;
  left: 70%;
}
.graph-panel.p2 {
  position: absolute;
  top: 25%;
  left: 15%;
  animation-delay: -7s;
}

@media screen and (max-width: 768px) {
  .graph-panel.p1 {
    top: 85%;
    left: -5%;
  }

  .graph-panel.p2 {
    top: 75%;
    left: 65%;
    animation-delay: -7s;
  }
}

.graph-line {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 130px;
  height: 40px;
  overflow: hidden;
}

.graph-path {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, 
    rgba(185, 64, 255, 0.2) 0%,
    rgba(64, 183, 255, 0) 100%
  );
  clip-path: polygon(
    0% 100%,
    0% 60%,
    10% 70%,
    20% 40%,
    30% 50%,
    40% 20%,
    50% 40%,
    60% 30%,
    70% 60%,
    80% 40%,
    90% 50%,
    100% 30%,
    100% 100%
  );
}

.graph-title {
  color: rgba(64, 183, 255, 0.8);
  font-size: 10px;
  margin-bottom: 5px;
}

.graph-panel-2 {
  position: absolute;
  width: 200px;
  height: 100px;
  background-color: rgba(8, 46, 99, 0.3);
  border: 1px solid rgba(254, 64, 255, 0.5);
  border-radius: 2px;
  padding: 10px;
  z-index: 5;
  animation: float 15s ease-in-out infinite;
}

.graph-panel-2.p3 {
  position: absolute;
  top: 50%;
  left: 30%;
  animation-delay: -10s;
}

.graph-panel-2.p4 {
  position: absolute;
  top: 30%;
  left: 60%;
  animation-delay: -15s;
}

@media screen and (max-width: 768px) {
  .graph-panel-2.p3 {
    top: 10%;
    left: 10%;
    animation-delay: -10s;
  }
  
  .graph-panel-2.p4 {
    top: 20%;
    left: 50%;
    animation-delay: -15s;
  }
}

.graph-line-2 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 175px;
  height: 40px;
  overflow: hidden;
}

.graph-path-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, 
    rgba(185, 64, 255, 0.2) 0%,
    rgba(64, 183, 255, 0) 100%
  );
  clip-path: polygon(
    0% 100%,
    0% 60%,
    10% 60%,
    20% 30%,
    30% 50%,
    40% 80%,
    50% 30%,
    60% 30%,
    70% 60%,
    80% 20%,
    90% 80%,
    100% 20%,
    100% 100%
  );
}

/* アニメーション定義 */
@keyframes slideRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100vw);
  }
}

@keyframes moveDown {
  0% {
    height: 50px;
    top: -50px;
  }
  100% {
    height: 50px;
    top: 100vh;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
    box-shadow: 0 0 5px rgba(64, 183, 255, 0.8);
  }
}

@keyframes moveBeam {
  0% {
    top: -100px;
    left: -300px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100vh;
    left: 100vw;
    opacity: 0;
  }
}

@keyframes rotateHour {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotateMinute {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotateSecond {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5px, -5px);
  }
  50% {
    transform: translate(0, 5px);
  }
  75% {
    transform: translate(-5px, -5px);
  }
}

@keyframes scanline {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

/*ページバックグラウンド*/
.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;
}

/*非会員、死亡一覧装飾*/
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;
  }

  .form-line #submit_form3 .input-group {
    position: relative;
    width: 260px;
    top: -41px;
    margin-left: 116px;
  }

}

/*データテーブルオプション品装飾*/
.dataTables_wrapper .dataTables_filter {
  float: left;
}

.dataTables_wrapper .dataTables_length {
  width: 189px;
  display: block;
  float: left;
}

.dt-buttons.btn-group.flex-wrap {
  float: left;
  margin-left: 4%;
  max-width:340px;
}

/*チェックボックス*/
.ECM_CheckboxInput {
  padding: 12px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.ECM_CheckboxInput-Input {
  margin: 0;
  width: 0;
  opacity: 0;
}

.ECM_CheckboxInput:hover {
  /*background: rgba(0, 0, 0, .05) !important;*/
}

.ECM_CheckboxInput-Input:focus+.ECM_CheckboxInput-DummyInput {
  /*border: dashed 2px #333333;*/
}

.ECM_CheckboxInput-Input:checked+.ECM_CheckboxInput-DummyInput {
  background: #ffffff;
}

.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;
}

.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;
}

.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;
}

.ECM_CheckboxInput-LabelText {
  margin-left: 12px;
  display: block;
  font-size: 18px;
  font-weight: bold;
}

/*トースト装飾変更*/
.toast.bg-ori .toast-header {
  background-color: #00d1aa;
  color: #fff;
}

.toast.bg-ori {
  background-color: rgb(255 255 255 / 81%) !important;
}

.bg-ori,
.bg-ori>a {
  color: #000 !important;
}

@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;
  }

  /*テンプレート*/
  .p-sp5 {
    padding: 5px;
  }

  .p-sp5-10 {
    padding: 12px 9px;
  }

  /*カスタマーテーブル*/
  .w40 {
    width: 40px;
  }

  .none {
    display: none;
  }

  .tfoot_tr_set,
  .thead_tr_set,
  .tbody_set {
    font-size: 14px;
  }

  .tbody_set td {
    font-size: 13px;
  }

  .thead_tr_set th {
    padding: 5px;
    padding-right: 10px !important;
  }

  .thead_tr_set th:first-child {
    padding-right: 65px !important;
  }

  .thead_tr_set td {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .tbody_set td {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .tbody_set .memo_edit_btn a.btn {
    padding: 2px;
    width: 40px;
  }

  .tbody_set .memo_edit_btn a.btn--first {
    font-size: 13px;
  }

  .tbody_set .memo_edit_btn a.btn--gray {
    font-size: 13px;
    width: 75px;
  }

  /*データテーブルオプション品装飾*/
  .dataTables_wrapper .dataTables_filter {
    width: 50%;
  }

  .dataTables_wrapper .dataTables_length {
    width: 50%;
  }

  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: left;
  }

  .dataTables_wrapper .dataTables_filter input {
    width: 75% !important;
  }

  /*ボタン装飾スマホ版*/
  .ECM_CheckboxInput-Input:checked+.ECM_CheckboxInput-DummyInput::before {
    top: 40%;
  }
  
  .ECM_CheckboxInput-Input:checked+.ECM_CheckboxInput-DummyInput::after {
    top: 40%;
  }
  
  .ECM_CheckboxInput-DummyInput {
    width: 25px;
    height: 25px;
  }

  .dt-buttons.btn-group.flex-wrap {
    margin-left: 0;
  }
  .datatables-header .btn {
    padding: 2px;
    font-size: 15px;
  }

}


/*
スモールボード色再設定
*/
.bg-success,
.bg-success>a {
  color: white !important;
}

/*LN配信 プレビュー装飾*/
.freespace__innerbox_kanri {
  width: 100%;
  padding: 5px 5px 20px;
  box-sizing: border-box;
  overflow: hidden;
  background-color: rgb(255 255 255 / 65%);
  font-size: 93%;
}

/*
** 連携一覧メモ
*/
.list-btn-box .memo_edit_btn {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.list-btn-box textarea.input_text_1 {
  width: 100%;
  margin-right: 5px;
}

/* .memo_edit_btn a.js-btn_1 {
  width: 80%;
  display: block;
  text-align: center;
  margin: 0 auto;
} */

.list-btn-box a.btn--first {
  color: #fff;
  background-color: #3DB262;
  border-bottom: 5px solid #339552;
}

.list-btn-box a.btn--first:hover {
  margin-top: 3px;
  color: #fff;
  background: #3DB262;
  border-bottom: 2px solid #339552;
}

.list-btn-box a.btn--gray {
  color: #fff;
  background-color: #bdbdbd;
  border-bottom: 5px solid #a3a3a3;
  font-size: 15px;
}

.list-btn-box a.btn--gray:hover {
  margin-top: 3px;
  color: #fff;
  background: #bdbdbd;
  border-bottom: 2px solid #a3a3a3;
}

.list-btn-box .btn-top {
  margin-bottom: 5px;
}

/*ボタン装飾テンプレート*/
.btn-box-ori.choose-box a.btn--choose {
  color: #fff;
  background-color: #3DB262;
}

/*選んで配信装飾*/
.choosevalue {
  padding-bottom: 9px;
  font-size: 1rem;
}

#post-data-list span {
  border: 1px solid #ddd;
  border-radius: 3px;
  display: inline-block;
  padding: 3px;
  text-decoration: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin-right: 2px;
  margin-bottom: 2px;
}

@media screen and (max-width: 650px) {

  /*ボタン装飾テンプレート*/
  .btn-box-ori.choose-box a.btn--choose {
    padding: 4px;
    font-size: 13px;
  }

  .choosevalue {
    padding-bottom: 9px;
    font-size: 15px;
  }
}

/*LN配信履歴の送信者一覧装飾*/
#line-list-box span:after {
  content:"｜";
}

#line-list-box span:last-child::after {
  content:"";
}