/* ===========================
   Owl Stay House バナー共通スタイル
=========================== */
.banner-wrap {
  position: relative;
  display: inline-block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.banner-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.banner-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------------------------
   リンクエリア設定
--------------------------- */

/* 全体（ホームページリンク） */
.home-link {
  position: absolute;
  inset: 0; /* 画像全体を覆う */
}

/* 宿泊フォーム部分（右下） */
.stay-link {
  position: absolute;
  right: 5%; /* 右端からの距離 */
  bottom: 8%; /* 下端からの距離 */
  width: 22%; /* 横幅（調整可能） */
  height: 10%; /* 縦幅（調整可能） */
  cursor: pointer;
}

/* デバッグ時にクリック範囲を可視化する場合はONにする */
/*
.stay-link {
  background: rgba(255, 0, 0, 0.3);
}
*/
