@charset "UTF-8";

.login__modal {
  cursor: pointer;
}

.catalogue_list_edit_container #search_word-container textarea {
  height: 60px;
  /* width: 25vw; */
  width: 450px;
}

#empty-history-message {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.required1 {
  position: relative;
}

.required1::after {
  content: "任意";
  background-color: #f0ad4e;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  min-width: 10px;
  padding: 3px 7px;
  margin: 0px 5px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50px; /* 必要に応じて調整 */
}

.required2 {
  position: relative;
}

.required2::after {
  content: "任意";
  background-color: #f0ad4e;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  min-width: 10px;
  padding: 3px 7px;
  margin: 0px 5px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
  position: absolute;
  /* top: 70%; */
  bottom: -10%;
  transform: translateY(-50%);
  right: 0px; /* 必要に応じて調整 */
}

/* ダイアログ */
.mydialog {
  /* position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
  font-size: 15px;
  font-weight: bold;
  font-family: sans-serif;
  padding: 20px 20px;
  box-shadow: gray 2px 2px 5px 2px;
  border: none;
  border-radius: 20px;  
  font-family: Arial, Helvetica, sans-serif;
}

.message {
  margin-bottom: 15px;
}

/* ダイアログを開くボタン */
.open-button {
  margin: 10px;
  width: 120px;
  height: 30px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  background-color: #fcc891;
  cursor: pointer;
}

.open-button:hover {
  color: #ffffff;
  background-color: #ed7e07;
  box-shadow: 0 5px 5px #cccccc;
}
