/* ===== ショップ特徴メモ ===== */

.shop-memo-button {
  cursor: pointer;
  color: #191970;
  text-decoration: underline;
  font-size: 14px;
}

.shop-memo-button:hover {
  color: #ffffff;
}

#shopMemoContent {
  white-space: pre-line;
line-height: 1.6;
}

.shop-memo-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  max-height: 70vh;
  overflow-y: auto;
  max-width: 90%;
  background: #222;
  color: #eee;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  z-index: 9999;
}

.shop-memo-popup.active {
  display: block;
}

.shop-memo-close {
  float: right;
  cursor: pointer;
  font-weight: bold;
  font-size: 36px;
padding: 8px
}

.shop-memo-close:hover{
  background:#eee;
}

.shop-memo-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}

.shop-memo-overlay.active {
  display: block;
}