@charset "utf-8";
/* 2カラム */
.gray-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* 各要素 */
.gray-item {
  padding: 0px;
}

/* グレーオーバーレイ */
.gray-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none; /* ←クリックは通す */
  z-index: 10;
}
@media (max-width: 768px) {
.gray-wrap {
  gap: 0;
  padding: 0 10px;
}
}