/* CSS Document @h.takahashi */

/*--------------------------------------------------
  モーダル
---------------------------------------------------*/
.modal-overlay {
  display: none; /* 初期状態は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* 背景を少し暗くする */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* 表示用のクラス */
.modal-overlay.is-active {
  display: flex;
}

/* モーダル本体のコンテンツ枠 */
.modal-content {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  max-width: 1200px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.close-btn {
  margin-top: 20px;
  padding: 8px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}



