
/* body {
  font-family: Arial, sans-serif;
  margin: 0px;
  color: #fff;
  background-color: #fff;
} */

.table-container {
  position: relative;
  top: 1rem;
  width: 100%;
  max-width: 80rem;
  min-width: 80rem;
  margin: 1rem auto 2rem 2rem;
}

.table-container2 {
  position: relative;
  top: 1rem;
  /* width: 50%; */
  max-width: 50rem;
  margin: 0 auto 2rem;
}

.table-container .inner {
  background-color: #3b414e;
  border-radius: .6em;
  overflow: hidden;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.inner2 {
  width: 40%;
  max-width: 50rem;
  min-width: 30rem;
  margin: 0 auto 2em;
}

.inner3 {
  width: 40%;
  max-width: 50rem;
  min-width: 30rem;
}

.inner4 {
  width: 50%;
  max-width: 50rem;
  min-width: 30rem;
}

.inner5 {
  width: 40%;
  max-width: 50rem;
  min-width: 30rem;
  margin: 0 10rem;
}

table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  background-color: #3b414e;
  overflow: hidden;
}

table tbody,
table thead {
  padding: 0 1em;
  border-bottom: 1px solid #8d96ac;
  
}

table tr:not(:last-child) {
  border-bottom: 1px solid #8d96ac;
}

table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.1);
  
}

table thead tr {
  border-bottom: 1px solid #8d96ac;
}

table thead th {
  padding: 1em;
  cursor: pointer;
  position: relative;
  color: #fff;
} 

/* table全体のコンテナー */
.business_container {
  position: relative;
  width: 100%;
  height: 100%;
  /* position: sticky; */
  margin-top: 100px;
  /* top: 10%; */
}


#skillSheetEditForm {
  position: relative;
  margin: 0 !important;
}

/* 編集ページの保存ボタン */
.floating_btn {
  position: fixed;
  bottom: 0;
  width: auto;
  height: 80px;
  right: 10%;
  /* background: #ccc; */
  text-align: center;
}

.edit_save_btn {
  display: block;
  margin: auto;
}

.edit_save_btn {
  background-color: #74809a;
  color: #ffffff;
  width: 12.5em;
  height: 3.9em;
  border: #3654ff 0.2em solid;
  border-radius: 11px;
  text-align: right;
  transition: all 0.3s ease;
  position: absolute;
  right: 10%;
}

.edit_save_btn:hover {
  background-color: #3654ff;
  cursor: pointer;
}

.edit_save_btn svg {
  width: 2.0em;
  margin: auto;
  position: absolute;
  display: flex;
  transition: all 0.6s ease;
}

.edit_save_btn:hover svg {
  transform: translateX(5px);
}

.text {
  text-align: center;
  padding-left: 10px;
  font-size: 1.5em;
}

.business_table_container {
  margin-top: 0 !important;
  position: sticky;
  top: 0;
}

/* 技術　テーブル */
.ex_table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  background-color: #3b414e;
  overflow: hidden;
}
.flex_container {
  display: flex;
  margin-top: 5px;
}

.select_OS {
  width: 100%;
}
.select_language {
  width: 100%;
}
.select_DB {
  width: 100%;
}

.familiar {
  width: 120px;
}

.removeRowButtonIndexOS {
  width: 50px;
  margin-left: 10px;
}
.removeRowButtonIndexGengo {
  width: 50px;
  margin-left: 10px;
}
.removeRowButtonIndexDB {
  width: 50px;
  margin-left: 10px;
}

/* tableの高さ等を決める */
#jobDescriptionTable {
  /* display: block; */
  overflow-x: auto;
  height: 1000px;
  border:1px solid;
  border-collapse: collapse;
}

/* table header */
.table_header {
  position: sticky;
  top: 0;
  z-index: 1;
  background: none;
  border-top: none;
  border-bottom: none;
}

/* table header 左上の角を丸くする */
#jobDescriptionTable thead th:first-child {
  border-top-left-radius: 10px; /* 必要に応じて調整 */
}
/* table header 右上の角を丸くする */
#jobDescriptionTable thead th:last-child {
  border-top-right-radius: 10px; /* 必要に応じて調整 */
}

/* tabel headerの各要素 */
#jobDescriptionTable thead th {
  position: sticky;
  top: 5%;
  z-index: 10;
  background: none;
  border-top: none;
  border-bottom: none;
  background: #3b414e;
  /* background: gold;
  border-top:#FFFFFF; */
}

#jobDescriptionTable thead th:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid white;
  /* border-top: 1px solid #f00;
  border-bottom: 1px solid #f00; */
  /* background: #ffeb3b; */
  z-index: -1;

}

.sort-icon {
  margin-left: 8px;
  border: solid #3b414e;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.sort-icon.asc {
  transform: rotate(-135deg);
}

th,
td {
  padding: .6em 1em;
  word-break: break-all;
  border-left: solid 1px #8d96ac;
}

.table-container.one tr:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.table-container.one thead tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.table__caption {
  position: relative;
  top: 0em;
  left: auto;
  right: auto;
  max-width: 100rem; 
  min-width: 80rem; 
  width: 110%;
  margin: 0em auto auto 3em;
  padding: .6em 1em;
  border-radius: .6em;
  background-color: #424959;
  box-shadow: 0 5px 13px rgba(0, 0, 0, .4);
  text-align: center;
}

.table__header {
  font-family: inherit;
  font-size: 1.5em;
  font-weight: 300;
}

.table__header--sub {
  font-size: .9em;
}


.grid-container{
  display: grid;
  grid-template-columns	:600px 600px;
  gap: 0 0 10px 10px;
}

.box-info {
  grid-column-start: 1;
  grid-row-start: 1;
  grid-row-end: 3;
}

.box-info2 {
  grid-column-start: 2;
  grid-row-start: 1;
  grid-row-end: 3;
}

.tableBack {
  color: #fff;
  background-color: rgba(19,85,137,0.2) ;
}

/* body {
  font-family: Arial, sans-serif;
  background-color: #f7fafc;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0;
} */

.main-menu {
  height: 160rem !important;
  z-index: 500;
}

.page_container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  min-width: 700px;
  min-height: 720px;
}

/* #page {
  background-color: #424959;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 2rem 2rem 0 2rem;
  max-width: 500px;
  min-height: 400px !important;
  max-height: 650px !important;
  width: 100%;
  height: 80%;
  margin: auto;
} */

.form_container {
  height: 80%;
  width: 100%;
}

.form-group {
  margin-bottom: 0.3rem;
}

form {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.select_container {
  display: flex;
  width: 100%;
}

.gender_form {
  width: 48%;
}

.auth_form {
  width: 48%;
  margin-left: auto;
}

label {
  color: white;
  display: block;
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="password"],
select {
  width: 80%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.25rem;
  outline: none;
}

/* select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 20 20' fill='%23353D48' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M14.879 7.293a1 1 0 0 1 1.414 1.414l-4 4a1 1 0 0 1-1.414 0l-4-4a1 1 0 1 1 1.414-1.414L10 9.586l4.879-4.879a1 1 0 0 1 1.414 0z' clip-rule='evenodd'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5em;
} */

/* button {
  background-color: #74809a;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  width: 50%;
  border-radius: 0.25rem;
  font-size: 1rem;
  cursor: pointer;
} */

.register_btn_container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20%;
  text-align: center;
}

.register_btn {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #74809a;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 0;
}

button:hover {
  background-color: #576074;
}

input[type="date"] {
  width: 80%;
  padding: 10px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="month"] {
  width: 80%;
  padding: 10px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="checkbox"] {
  width: 200%;
  padding: 0px;
  font-size: 2rem;
  border: 2px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus {
  border-color: #007BFF;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
  outline: none;
}

/* input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(50%);
} */