[v-cloak] {
  display: none;
}

#app {
  position: relative;
}

#app .alert_box {
  width: 85%;
  /* position: absolute; */
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 10000;
}
#app .alert_box .alert {
  width: 100%;
  margin: 0 auto;
}
#app .alert_box .alert button {
  outline: none;
}

/* アニメーション中のスタイル */
.basic-leave-active,
.basic-enter-active {
  transition: opacity 1s;
}
/* 表示アニメーション */
.basic-enter {
  opacity: 0;
}
.basic-enter-to {
  opacity: 1;
}
/* 非表示アニメーション */
.basic-leave {
  opacity: 1;
}
.basic-leave-to {
  opacity: 0;
}

/* スライド用アニメーション */
.slide-enter-active {
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.slide-leave-active {
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -moz-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  -o-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.slide-enter-to, .slide-leave {
  max-height: 100px;
  overflow: hidden;
}
.slide-enter, .slide-leave-to {
  overflow: hidden;
  max-height: 0;
}

.top_link_box > div {
  margin-bottom: 1.5rem;
}
.top_link_box .jumbo_link {
  width: 100%;
  /* height: 100%; */
  position: relative;
  /* color: white; */
  color: #333;
  display: block;
}
.jumbo_link .bg-info,
.jumbo_link .bg-success,
.jumbo_link .bg-danger {
  color: white;
}
.jumbo_link .bg-warning {
  color: #1f2d3d;
}
.jumbo_link:hover {
  text-decoration: none;
}
.jumbotron {
  width: 100%;
  /* height: 100%; */
  margin: 0 !important;
  /* padding: 1.5rem 1rem 1rem 1rem !important; */
  padding: 0 !important;
  position: relative;
  background-color: #edf0f3;
}
.jumbotron_inner {
  padding: 1rem 1rem 1rem 1rem !important;
}
.jumbotron .title {
  margin-bottom: 0.8rem;
  margin-left: 0.5rem;
  font-size: 1.4rem;
}
.jumbotron .lead {
  margin-bottom: 0;
  margin-left: 0.5rem;
  font-size: 0.95rem;
}
.jumbotron .icon .material-icons {
  position: absolute;
  top: 40%;
  right: 25px;
  transform: translateY(-50%);
  font-size: 60px;
  color: rgba(0, 0, 0, .25);
  transition: all .3s ease 0s;
  z-index: 1;
}
.jumbo_link:hover .jumbotron .icon .material-icons {
  right: 20px;
  font-size: 70px;
}
.jumbo_footer {
  width: 100%;
  padding: 0.2rem 0;
  text-align: center;
  display: block;
  background-color: rgba(0, 0, 0, .05);
  border-radius: 0 0 0.3rem 0.3rem;
  color: #333;
  pointer-events: none;
  transition: all .3s ease 0s;
}
.jumbo_link:hover .jumbo_footer {
  background-color: rgba(0, 0, 0, .1);
}
.jumbo_footer .fa {
  margin-left: 5px;
}

/* #app .contents {
  padding: 20px 0 100px 0;
} */
#app .contents.row {
  margin-right: 0;
  margin-left: 0;
}
#app .main {
  margin-top: 80px;
  margin-left: auto;
  padding: 0 30px 65px 30px;
}
#app .side {
  margin-top: 30px;
}
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 48px 0 0;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}
.sidebar-sticky {
  position: fixed;
}
.sidebar_fixed {
  position: sticky;
  top: 10px;
}

.side {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.main {
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  max-width: 80%;
}

.menu-btn {
  display: none;
}
.close_btn {
  display: none;
}

@media (max-width: 1180px) {
  .side {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .main {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (max-width: 887px) {
  .side {
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
    transform: translateX(-50vw);
    transition: all .3s linear;
  }
  .side.is-active {
    transform: translateX(0);
  }
  .main {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .menu-btn {
    display: block;
  }
  .close_btn {
    display: block;
    margin-top: -10px;
    margin-right: 20px;
    text-align: right;
  }
  .close_btn .fa {
    cursor: pointer;
  }
}

@media (max-width: 707px) {
  .side {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }
}

.nav-link {
  color: #333;
}
.nav-link.router-link-active {
  color: #007bff;
}
.nav-item {
  margin-bottom: 0.25rem;
}

.vue-form-generator .hint {
  color: rgb(122, 122, 122);
  font-style: unset;
}
.vue-form-generator .hint,
.form-group.error .errors {
  margin-top: 7px;
}
.form-group.disabled>label {
  font-style: unset;
}

h1.title {
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-left: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgb(201, 201, 201);
}

.btn_box {
  margin-bottom: 25px;
}
.btn_box .btn {
  margin-right: 0.25rem;
}
a.btn-secondary,
a.btn-secondary:hover {
  color: white;
}
.form_box {
  margin-bottom: 20px;
}
.form_box .form-group:last-child {
  margin-bottom: 0.3rem;
}
.graph_box.show {
  margin: 20px 0;
}
.graph_box .js-plotly-plot .plotly {
  margin-bottom: 25px;
}

.simulate-btn:disabled,
.add-btn:disabled,
.save-btn:disabled {
  cursor: not-allowed;
}

body > .container {
  padding: 60px 15px 0;
}
.footer > .container {
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  /* height: 60px; */
  /* background-color: #f5f5f5; */
  background-color: #343a40;
  /* border-top: 1px solid #e7e8e8; */
  z-index: 1030;
}
.footer .text-muted {
  margin: 15px 0;
  color: white !important;
  text-align: center;
}

.asc::after {
  margin-left: 8px;
  content: "\f0d7";
  font-family: FontAwesome;
}
.desc::after {
  margin-left: 8px;
  content: "\f0d8";
  font-family: FontAwesome;
}

.main_table {
  width: 100%;
  max-height: 600px;
  margin: 35px auto 35px auto;
  overflow-x: auto;
  overflow-y: auto;
  border: 1px solid #dee2e6;
}
.main_table > .table {
  margin-bottom: 0;
}
.main_table > .table > thead > tr > th,
.main_table > .table > tbody > tr > td {
  text-align: center;
  white-space: nowrap;
  border-top: none;
}
.main_table .table-striped tbody tr:nth-of-type(odd),
.show_table.table-striped tbody tr:nth-of-type(odd),
.csv_help .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgb(247, 247, 247);
}
.main_table .table-hover tbody tr:hover,
.show_table.table-hover tbody tr:hover,
.csv_help .table-hover tbody tr:hover {
  color: #212529;
  background-color: rgb(229, 238, 247);
}

.list_table,
.show_table {
  margin: 2rem 0;
  border-bottom: 1px solid #dee2e6;
}
.list_table td .btn:not(:last-child) {
  margin-right: 0.2rem;
}
.show_table thead th:first-of-type {
  width: 330px;
}
.show_table thead th:last-of-type {
  width: 450px;
}
.show_table tbody td {
  word-break: break-all
}
.show_table .id_cell {
  font-weight: 700;
}

@media (max-width: 1180px) {
  .show_table thead th {
    width: 0.33333333% !important;
  }
}

.csv_nums {
  margin-top: 0.5rem;
  font-size: 14px;
  color: rgb(92, 92, 92);
}

#tab {
  width: 100%;
  /* max-width: 500px; */
  margin: 40px auto;
}
#tab .tabMenu {
  margin-bottom: 0;
  padding-left: 20px;
  display: flex;
  list-style: none;
}
#tab .tabMenu li {
  width: auto;
  padding: 10px 20px;
  color: #fff;
  border-right: 1px solid #fff;
  background-color: #007db9;
  cursor: pointer;
}
#tab .tabMenu li:last-child {
  border-right: none;
}
#tab .tabContents {
  width: 100%;
  padding: 20px;
  border: 1px solid #007db9;
}
#tab .tabContents h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: bolder;
}

input[type="number"][disabled],
input[type="text"][disabled]{
  background:#DCDCDC;
  cursor:not-allowed; /* 禁止カーソル */
}

.modal-header,
.modal-footer {
  padding: 5px 25px;
}
.modal-body {
  padding: 15px 25px 5px 25px;
}
.modal-header {
  border-bottom: 1px solid #ddd;
}
.modal-footer {
  border-top: 1px solid #ddd;
}
.modal-header .title {
  margin: 10px 0;
}
.modal-body p {
  margin-bottom: 10px;
}
.modal-body .button {
  margin-top: 10px;
}

.form_box .form-button {
  margin-top: 1rem;
  padding-top: 0.4rem;
}
.form_box .form-button:focus {
  box-shadow: none;
}
.form_box .form-text {
  margin-top: 0.75rem;
}
.form_link {
  cursor: pointer;
  color: #007db9;
}
.csv_help {
  width: 100%;
  margin: 0.1rem 0 0.5rem 0;
}
.csv_help .close {
  margin-right: 8px;
  margin-bottom: 8px;
  outline: none;
}
.csv_help .table {
  margin-bottom: 1.25rem;
}
.csv_help .table caption {
  padding-top: 1rem;
  padding-bottom: 0;
}
.csv_help .table thead th:first-of-type {
  width: 80px;
} 
