body {
  font-size: .875rem;
}


.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

.body-login {
  overflow: scroll;
  background-image: url('/html/images/keyVisual.jpg'); /* 画像のパスを指定 */
  background-color: #000000;
  background-size: cover; /* 画像をカバーするように調整 */
  background-position: center; /* 画像を中央に配置 */
  background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}

.body-login::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
  z-index: -1; /* オーバーレイを背景よりも後ろに配置 */
}
/*
 * Sidebar
 */

.sidebar {
  position: fixed;
  top: 0;
  /* rtl:raw:
  right: 0;
  */
  bottom: 0;
  /* rtl:remove */
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 54px 0 0; /* Height of navbar */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

@media (max-width: 767.98px) {
  .sidebar {
    top: 5rem;
  }
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

.sidebar .nav-link {
  font-weight: 500;
  color: #333;
  padding :10px 10px 10px 30px;
}

.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #727272;
}

.sidebar .nav-link.active {
  color: #528dda;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
}

.sidebar-content {
  background-color: #a0bee5;
  color:#404040;
  font-weight :bold;
  padding:10px 10px 10px 20px;

}

.nav-item-add{
  width:200px;
  padding-left: 15px;
}
/*
 * Navbar
 */
.navbar-content{
  background-color: #4e8ad9;
  
}
.navbar-brand {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1.2rem;
  font-weight: bold;
  /*box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);*/
  letter-spacing: 5px;
}

.navbar .navbar-toggler {
  top: .25rem;
  right: 1rem;
}

.navbar .form-control {
  padding: .75rem 1rem;
  border-width: 0;
  border-radius: 0;
}

.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

.error-message {
  display: none;
  color: red; /* エラーメッセージのテキストカラーを設定 */
  font-size: 12px; /* エラーメッセージのフォントサイズを設定 */
  margin-top: 5px; /* エラーメッセージと他の要素の間隔を設定 */
}


tr:hover td {
  background-color:#d4ebfd;
}

.form-label {
  font-weight: bold;
}

.groupRow {
  border-radius: 10px;
  padding : 5px;
}
.groupRow:hover {
  background-color: #e7e7e7;
}
.metadata_row:hover {
  font-weight: bold;
}

.schedule_list_item {
  cursor: pointer;
}

.scheduleDetail .groupRow:hover {
  background-color: #f0f0f0; 
}

.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single {
  border: 1px solid #dee2e6;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
/* + アイコン*/
.icon-plus{
  width:16px;
  height:16px;
}

/*　青ボタン　*/
.button-blue {
  background-color: #4e8ad9;
  color: #ffffff; /* ボタンのテキスト色を白に設定 */
  padding: 10px 10px; /* パディングを設定してボタンのサイズを調整 */
  border: none; /* ボーダーをなしに設定 */
  letter-spacing: 3px;
  cursor: pointer;
}
.button-blue:active{
  background-color: #4e8ad9;
  color: #ffffff; /* ボタンのテキスト色を白に設定 */
  padding: 10px 10px; /* パディングを設定してボタンのサイズを調整 */
  border: none; /* ボーダーをなしに設定 */
  letter-spacing: 3px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.button-blue:focus {
  background-color: #4e8ad9;
  color: #ffffff;
  padding: 10px 10px;
  border: none;
  letter-spacing: 3px;
  cursor: pointer;
  outline: none; /* フォーカス時のアウトラインを非表示にする */
}

/*　緑ボタン　*/
.button-green {
  background-color: #3bb387;
  color: #ffffff; /* ボタンのテキスト色を白に設定 */
  padding: 10px 10px; /* パディングを設定してボタンのサイズを調整 */
  border: none; /* ボーダーをなしに設定 */
  letter-spacing: 3px;
  cursor: pointer;
}
.button-green:active{
  background-color: #3bb387;
  color: #ffffff; /* ボタンのテキスト色を白に設定 */
  padding: 10px 10px; /* パディングを設定してボタンのサイズを調整 */
  border: none; /* ボーダーをなしに設定 */
  letter-spacing: 3px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);

}
.button-green:focus {
  background-color: #3bb387;
  color: #ffffff;
  padding: 10px 10px;
  border: none;
  letter-spacing: 3px;
  cursor: pointer;
  outline: none; /* フォーカス時のアウトラインを非表示にする */
}

/*　赤ボタン　*/
.button-red {
  background-color: #FF0000;
  color: #ffffff; /* ボタンのテキスト色を白に設定 */
  padding: 10px 10px; /* パディングを設定してボタンのサイズを調整 */
  border: none; /* ボーダーをなしに設定 */
  letter-spacing: 3px;
  cursor: pointer;
}
.button-red:active{
  background-color: #FF0000;
  color: #ffffff; /* ボタンのテキスト色を白に設定 */
  padding: 10px 10px; /* パディングを設定してボタンのサイズを調整 */
  border: none; /* ボーダーをなしに設定 */
  letter-spacing: 3px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);

}
.button-red:focus {
  background-color: #FF0000;
  color: #ffffff;
  padding: 10px 10px;
  border: none;
  letter-spacing: 3px;
  cursor: pointer;
  outline: none; /* フォーカス時のアウトラインを非表示にする */
}
/*　灰色ボタン　*/
.button-gray {
  background-color: #6c757d;
  color: #ffffff; /* ボタンのテキスト色を白に設定 */
  padding: 10px 10px; /* パディングを設定してボタンのサイズを調整 */
  border: none; /* ボーダーをなしに設定 */
  letter-spacing: 3px;
  cursor: pointer;
}
.button-gray:active{
  background-color: #6c757d;
  color: #ffffff; /* ボタンのテキスト色を白に設定 */
  padding: 10px 10px; /* パディングを設定してボタンのサイズを調整 */
  border: none; /* ボーダーをなしに設定 */
  letter-spacing: 3px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);

}
.button-gray:focus {
  background-color: #6c757d;
  color: #ffffff;
  padding: 10px 10px;
  border: none;
  letter-spacing: 3px;
  cursor: pointer;
  outline: none; /* フォーカス時のアウトラインを非表示にする */
}

/*　黄色ボタン　*/
.button-yellow {
  background-color: #ffc107;
  color: #ffffff; /* ボタンのテキスト色を白に設定 */
  padding: 10px 10px; /* パディングを設定してボタンのサイズを調整 */
  border: none; /* ボーダーをなしに設定 */
  letter-spacing: 3px;
  cursor: pointer;
}
.button-yellow:active{
  background-color: #ffc107;
  color: #ffffff; /* ボタンのテキスト色を白に設定 */
  padding: 10px 10px; /* パディングを設定してボタンのサイズを調整 */
  border: none; /* ボーダーをなしに設定 */
  letter-spacing: 3px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);

}
.button-yellow:focus {
  background-color: #ffc107;
  color: #ffffff;
  padding: 10px 10px;
  border: none;
  letter-spacing: 3px;
  cursor: pointer;
  outline: none; /* フォーカス時のアウトラインを非表示にする */
}

button:hover {
  font-weight: bold;
}

.title-underbar{
  margin-left:-24px;
  width:calc(100% + 48px);
  border-bottom: #e7e7e7 solid 3px;
  margin-bottom: 1rem;
}

 /* table-striped カスタムのストライプの背景色 */
.table-striped-custom tbody tr:nth-child(odd) {
  background-color: #f2f2f2; /* カスタムの背景色を指定 */
}
.table-striped-custom tbody tr:nth-child(odd) td {
  background-color: #f2f2f2; /* カスタムの背景色を指定 */
}
.table-striped-custom tbody tr:nth-child(even) {
  background-color: #e6e6e6; /* カスタムの背景色を指定 */
}
.table-striped-custom tbody tr:nth-child(even) td {
  background-color: #e6e6e6; /* カスタムの背景色を指定 */
}

#progress {
  float: right;
  font-size : 80%;
  font-weight: normal;
}

#defPages, 
#schedulePages {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: large;
  font-weight: bold;
}
#defPages a, 
#schedulePages a{
  text-decoration: none;
  padding: 5px;
  font-weight: normal;
}
#defPages a:hover,
#schedulePages a:hover
{
  background-color: #c7dfff;
}

.required_label::before  {
  color: red;
  content: " *";
  font-weight: bold;
}
.groupRow.notrequired {
  padding-left: 1rem;
  padding-right: 2rem;
}

.groupRow.notrequired .collapsible-label {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-left: 20px;
  transition: color 0.3s ease;
}

.groupRow.notrequired .collapsible-label:hover {
  color: #333;
}

.collapse-arrow {
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
  font-size: 0.8em;
  line-height: 1.8;
}

.collapsible-label.expanded .collapse-arrow {
  transform: rotate(90deg);
}

.collapsible-content {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 20px;
}

/* アニメーションをスムーズにするためのスタイル */
.collapsible-content.animating {
  transition: all 0.3s ease-out;
}

