@charset "UTF-8";
/* モーダル基本スタイル */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}
.modal-content {
  background: #fff;
  max-width: 90%;
  width: 380px;
  margin: 15% auto;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.6;
}
.modal-content h2 {
  font-size: 18px;
	font-weight: bold;
}
.modal-content h3 {
  font-size: 16px;
  border-bottom: 1px #000 dotted;
	padding-bottom: 10px;
	margin-bottom: 30px;
}
.modal-content p {
  font-size: 16px;
  color: #333;
  text-align: center;
  margin-top: 20px;
}
.modal-content a.tel {
  display: inline-block;
  font-size: 38px;
  font-weight: bold;
  color: #d20000;
  text-decoration: none;
}
.modal-content a.tel:hover {
  text-decoration: underline;
}
.modal-close {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background: #ccc;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
.modal-close:hover {
  background: #bbb;
}

