/* モーダルのオーバーレイ */
.modal-overlay {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 半透明の黒背景 */
    justify-content: center;
    align-items: center;
    z-index: 1050; /* 他の要素より手前に表示 */
}
#modalOverlay h2{  
  background:#333;
	color:#fff;
	font-size:18px;
	font-weight:bold;
	padding:10px;
  text-align: center;
}


/* モーダルのコンテンツ */
#modalOverlay .modal-content {
  background-color: white;
  position: relative;
  max-width: 500px;
}

#modalOverlay .modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}
#modalOverlay .close-button:before{
  content: '×';
  font-size: 24px;
  color: #fff;
  font-weight: bold;
}
#modalOverlay .close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  background: none;
  border: none;
  font-size: 0;
  cursor: pointer;  
  line-height: 1;
  opacity: 0.8;
}
#modalOverlay .close-button:hover {
  opacity: 0.5;
}
#modalOverlay .form-group {
  margin-bottom: 15px;
}
#modalOverlay .modal-content > form{
  padding: 0 20px 30px 20px;
}
#modalOverlay .form-group{
  display: flex;  
  align-items: center;
}
#modalOverlay .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 14px;
  width: 105px;
}
#modalOverlay .form-group input {
  width: calc(100% - 105px);
  padding: 10px;
  border: 1px solid #DBDBDB;
  border-radius: 4px;
  font-size: 15px;
}

#modalOverlay button[type="submit"]:before {
  content: '\f002';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  ffontsdisplay: 16px;
}
#modalOverlay button[type="submit"] {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 30px;
}

#modalOverlay button[type="submit"]:hover {
  opacity: 0.8;
}
.search-note{
  font-size: 13px;
}









.calendar-wrap {
  position: relative;
}
.datepicker-dropdown {
  z-index: 9999 !important;
}



















