@charset "utf-8";
/* CSS Document */
/*全ページ共通css*/
/*header css*/
.booking-box {
  position: fixed;
  top: 50%; /* 上から50%の位置に配置 */
  right: 0; /* 右端に密着 */
  transform: translateY(-50%); /* 要素自身の高さの半分だけ上にずらして中央合わせ */
  width: 45px;
  height: 120px;
  z-index: 2;
}
.booking-box img {
  width: 100%;
  height: auto;
}
/* --- 出し分け用基本クラス --- */
@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* --- ハンバーガーボタン --- */
.hamburger {
  position: relative;
  z-index: 1002; /* 最前面 */
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 5px;
  width: 30px;
  height: 2px;
  background-color: var(--main-color);
  transition: all 0.4s;
}
.hamburger span:nth-child(1) {
  top: 12px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 28px;
}
/* ボタンが押された時（×印） */
body.is-open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(-45deg);
}
body.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}
body.is-open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
}
/* --- スマホメニュー本体（上からスライド） --- */
.sp-menu {
  position: fixed;
  top: 71px;
  left: 0;
  width: 100%;
  height: calc(100vh - 98px);
  background-color: #f1ede1;
  /*z-index: 999;*/
  /* ★ここを調整：不透明度と表示状態の両方にアニメーションをかける */
  opacity: 0;
  visibility: hidden;
  /* visibilityの遅延を入れることで、透明度が0になるまでメニューを維持します */
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
  padding: 20px 30px 60px;
}
@media(max-width:767px) {
  .sp-menu {}
}
/* メニューが開いた状態 */
body.is-open .sp-menu {
  opacity: 1;
  visibility: visible;
  /* 開くときは遅延なしで即座に表示開始 */
  transition: opacity 0.4s ease;
}
body.is-open {
  overflow: hidden; /* 背景スクロール禁止 */
}
body.is-open {
  overflow: hidden; /* スクロール禁止 */
}
/* --- 内部デザイン詳細 --- */
.sp-menu-inner {
  max-width: 500px;
  margin: 0 auto;
  color: var(--main-color);
  text-align: center;
}
/* チェックイン情報 */
.sp-check-info {
  margin-bottom: 40px;
  display: inline-block;
  text-align: left;
}
.info-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}
/* 言語切替 */
.sp-lang-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 50px;
  font-size: 16px;
  gap: 10px;
}
.sp-lang-list li:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
}
.sp-lang-list a {
  text-decoration: none;
  color: inherit;
}
/* SNS */
.sp-sns-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}
.sp-sns-links img {
  width: 35px;
  height: auto;
}
/* 2列ナビゲーション */
.sp-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  padding: 0;
  margin-bottom: 60px;
  text-align: left;
  gap: 20px 10px;
}
.sp-nav-grid a {
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.sp-nav-grid a::before {
  content: "・";
  margin-right: 5px;
}
/* 運営・ホテル情報 */
.sp-company-info {
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
}
.company-name a {
  text-decoration: underline;
  color: inherit;
}
.hotel-list {
  margin: 15px 0;
}
.sp-privacy {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
  color: inherit;
}
/*footer*/
.banner-link {
  max-width: 1140px;
  width: 96%;
  margin: auto;
  padding-bottom: 10px;
}
/* 共通：最初は全員右側に隠しておく */
.fixed-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px; /* バナーの高さに合わせてください */
  display: flex;
  align-items: center;
  z-index: 1005;
  transform: translateX(100%); /* 右側外 */
  transition: transform 1.5s ease-in-out; /* ひゅん！の速度 */
  visibility: hidden;
}
/* 登場：真ん中に来る */
.fixed-banner.is-active {
  transform: translateX(0);
  visibility: visible;
}
/* 退場：左側へ消える */
.fixed-banner.is-exit {
  transform: translateX(-100%);
  visibility: visible;
}