/**
 * aceのスタイルを引き継ぐためにaceのスタイルを一部移植し、要素の基底となるスタイルを適用させています。
 */

*,
*:before,
*:after {
  box-sizing: border-box;
}

img{
  width: 100%;
  height: auto;
}

/* 入力要素の基底スタイル */
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  border-radius: 0 !important;
  color: #858585;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  padding: 8px 12px !important;
  font-size: 14px !important;
  /* height: auto !important; */
  font-family: inherit;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transition-duration: .1s;
  transition-duration: .1s;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #696969;
  border-color: #f59942;
  background-color: #fff;
  outline: none;
}

input::placeholder{
  color: #858585 !important;
}

/* スペーサー */
.space-12 {
  max-height: 1px;
  min-height: 1px;
  overflow: hidden;
  margin: 12px 0;
  margin: 12px 0 11px;
}

/* 幅 */
.width-20 {
  width: 20% !important
}

.width-25 {
  width: 25% !important
}

.width-30 {
  width: 30% !important
}

.width-35 {
  width: 35% !important
}

.width-40 {
  width: 40% !important
}

.width-45 {
  width: 45% !important
}

.width-50 {
  width: 50% !important
}

.width-55 {
  width: 55% !important
}

.width-60 {
  width: 60% !important
}

.width-65 {
  width: 65% !important
}

.width-70 {
  width: 70% !important
}

.width-75 {
  width: 75% !important
}

.width-80 {
  width: 80% !important
}

.width-85 {
  width: 85% !important
}

.width-90 {
  width: 90% !important
}

.width-95 {
  width: 95% !important
}

.width-100 {
  width: 100% !important
}

#breadcrumbs{
  display: flex;
  justify-content: space-between;
}

#breadcrumbs .breadcrumb{
  display: flex;
  align-items: center;
  margin-inline:1rem;
}

.btn{
  color: #fff;
}

.btn:hover{
  color: #fff;
}

.table>thead>tr{
  color: #707070 !important;
}

.badge{
  font-size: 12px;
}

/* pagination */
.pagination{
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination>li {
  display: inline;
}
.pagination>li.active>a,
.pagination>li.active>a:hover {
  background-color: #6faed9;
  border-color: #6faed9;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.pagination>li:first-child>a,
.pagination>li:first-child>span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
  z-index: 2;
  color: #fff;
  background-color: #428bca;
  border-color: #428bca;
  cursor: default;
}
.pagination>li>a,
.pager>li>a {
  border-width: 1px;
  border-color: #d4dfe3;
  border-radius: 0 !important;
  color: #2283c5;
  background-color: #fafafa;
  margin: 0 -1px 0 0;
  position: relative;
  z-index: auto;
}
.pagination>li>a,
.pagination>li>span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #428bca;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
/* patination おわり */

/* datepicker */
.input-group-addon {
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-group-text{
  border: 1px solid #d5d5d5;
  border-radius: 0 !important;
  background-color: #eee;
} 

.datepicker td,
.datepicker th{
  padding: 4px 5px;
}
/* datepicker おわり */

/* select2 */
.select2-container--default .select2-selection--single{
  border: 1px solid #d5d5d5;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center;
}

.select2-container--default .select2-selection--multiple{
  border: 1px solid #d5d5d5;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center;
}

.select2-container .select2-selection--single{
  height: auto !important;
  padding: 6px 8px !important;
  line-height: 1rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
  line-height: 1.5 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
  top: 0;
  bottom: 0;
  margin: auto 0;
}