/**
ies_Common.css(共通CSS：出光エナジーソリューションズ追加分）
Ninomiya Add
**/


/**
footer
**/
/**
footerお問い合わせボタンクリックでお問い合わせ項目選択ポップアップを表示
**/
.contact-btn {
  padding: 10px 20px;
  background: #005bac;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* モーダル背景 */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

/* モーダル本体 */
.modal-content {
  background: #fff;
  width: 90%;
  max-width: 400px;
  margin: 10% auto;
  padding: 30px 20px;
  position: relative;
  border-radius: 8px;
  text-align: center;
}

.modal-content h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

/* 閉じるボタン */
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

/* 選択ボタン */
.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-btn {
  display: block;
  padding: 12px;
  background: #f2f2f2;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.modal-btn:hover {
  background: #e0e0e0;
}
